View | Details | Raw Unified | Return to bug 91108
Collapse All | Expand All

(-)deskutils/gtimer/Makefile (-3 / +2 lines)
Lines 9-20 Link Here
9
PORTVERSION=	1.1.6
9
PORTVERSION=	1.1.6
10
PORTREVISION=	1
10
PORTREVISION=	1
11
CATEGORIES=	deskutils
11
CATEGORIES=	deskutils
12
MASTER_SITES=	http://www.cknudsen.com/gtimer/
12
MASTER_SITES=	http://www.k5n.us/files/ \
13
		http://www.cknudsen.com/gtimer/
13
14
14
MAINTAINER=	ports@FreeBSD.org
15
MAINTAINER=	ports@FreeBSD.org
15
COMMENT=	A timer for your personal activities
16
COMMENT=	A timer for your personal activities
16
17
BROKEN=		Size mismatch
18
17
19
USE_BZIP2=	yes
18
USE_BZIP2=	yes
20
USE_GMAKE=	yes
19
USE_GMAKE=	yes
(-)deskutils/gtimer/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (gtimer-1.1.6.tar.bz2) = 8acc1939abc5c3b25f400688f1d9b053
1
MD5 (gtimer-1.1.6.tar.bz2) = dd129daf0046ca4de05c67456989d226
2
SHA256 (gtimer-1.1.6.tar.bz2) = 24f41f3a2440aa375f87a770a1c32bbadcbabed80232af61d6c25086e2704f78
2
SHA256 (gtimer-1.1.6.tar.bz2) = 8e6738ddb02803a3af3af50ead427b7a08108fc3ff95cf8a4f8cf459a41e9727
3
SIZE (gtimer-1.1.6.tar.bz2) = 105135
3
SIZE (gtimer-1.1.6.tar.bz2) = 98953
(-)deskutils/gtimer/files/patch-ab (-10 lines)
Lines 1-10 Link Here
1
--- task.c.orig	Thu Mar  9 07:27:50 2000
2
+++ task.c	Sat Apr 29 14:35:16 2000
3
@@ -54,7 +54,6 @@
4
 #include <dirent.h>
5
 #endif
6
 #include <errno.h>
7
-#include <malloc.h>
8
 #include <string.h>
9
 #include <ctype.h>
10
 #include <sys/types.h>
(-)deskutils/gtimer/files/patch-annotation (+14 lines)
Line 0 Link Here
1
--- annotate.c.orig	Fri Dec 30 18:15:44 2005
2
+++ annotate.c	Fri Dec 30 18:15:57 2005
3
@@ -95,9 +95,9 @@
4
     len = GTK_TEXT ( td->text )->gap_position;
5
     str = (char *) malloc ( len + 1 );
6
 #if GTK_VERSION < 10100
7
-    strncpy ( str, (char *) GTK_TEXT ( td->text )->text, len );
8
+    strncpy ( str, (char *) &GTK_TEXT ( td->text )->text, len );
9
 #else
10
-    strncpy ( str, (char *) GTK_TEXT ( td->text )->text.wc, len );
11
+    strncpy ( str, (char *) &GTK_TEXT ( td->text )->text.wc, len );
12
 #endif
13
     str[len] = '\0';
14
     if ( strlen ( str ) )
(-)deskutils/gtimer/files/patch-fix-version (+11 lines)
Line 0 Link Here
1
--- configure.orig	Fri Dec 30 18:01:56 2005
2
+++ configure	Fri Dec 30 18:02:16 2005
3
@@ -701,7 +701,7 @@
4
 
5
 PACKAGE=gtimer
6
 
7
-VERSION=1.1.2
8
+VERSION=1.1.6
9
 
10
 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
11
   { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; }
(-)deskutils/gtimer/files/patch-gtk (+15 lines)
Line 0 Link Here
1
--- main.c.orig	Fri Dec 30 18:29:18 2005
2
+++ main.c	Fri Dec 30 18:30:02 2005
3
@@ -2455,10 +2455,12 @@
4
   task_list = create_list_column_def ( 4, task_list_columns );
5
   gtk_clist_set_selection_mode (GTK_CLIST (task_list), GTK_SELECTION_BROWSE);
6
   gtk_widget_set_usize (GTK_WIDGET (task_list), 350, 150);
7
+/*
8
 #if GTK_VERSION < 10100
9
   gtk_clist_set_policy (GTK_CLIST (task_list),
10
     GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
11
 #endif
12
+*/
13
   gtk_signal_connect (GTK_OBJECT (task_list), "click_column",
14
     GTK_SIGNAL_FUNC (column_selected_callback), NULL);
15
   gtk_signal_connect (GTK_OBJECT (task_list), "event",
(-)deskutils/gtimer/files/patch-malloc (+10 lines)
Line 0 Link Here
1
--- task.c.orig	Thu Mar  9 07:27:50 2000
2
+++ task.c	Sat Apr 29 14:35:16 2000
3
@@ -54,7 +54,6 @@
4
 #include <dirent.h>
5
 #endif
6
 #include <errno.h>
7
-#include <malloc.h>
8
 #include <string.h>
9
 #include <ctype.h>
10
 #include <sys/types.h>
(-)deskutils/gtimer/pkg-descr (-2 / +2 lines)
Lines 1-6 Link Here
1
gtimer is an application built with GTK that keeps track of all
1
gtimer is an application built with GTK that keeps track of all
2
your activities and the amount of time spent on those activities.
2
your activities and the amount of time spent on those activities.
3
3
4
Author: Craig Knudsen <cknudsen@radix.net>
4
Author: Craig Knudsen <cknudsen@cknudsen.com>
5
5
6
WWW: http://www.cknudsen.com/gtimer/
6
WWW: http://www.k5n.us/gtimer.php

Return to bug 91108