diff options
-rw-r--r-- | deskutils/Makefile | 1 | ||||
-rw-r--r-- | deskutils/gkrellm-gtodo/Makefile | 33 | ||||
-rw-r--r-- | deskutils/gkrellm-gtodo/distinfo | 2 | ||||
-rw-r--r-- | deskutils/gkrellm-gtodo/files/patch-Makefile | 30 | ||||
-rw-r--r-- | deskutils/gkrellm-gtodo/pkg-descr | 6 |
5 files changed, 72 insertions, 0 deletions
diff --git a/deskutils/Makefile b/deskutils/Makefile index 367a03fab556..dd9eac54950b 100644 --- a/deskutils/Makefile +++ b/deskutils/Makefile @@ -35,6 +35,7 @@ SUBDIR += gdesklets-starterbar SUBDIR += gemcal SUBDIR += genius + SUBDIR += gkrellm-gtodo SUBDIR += glabels SUBDIR += gmcal SUBDIR += gnomeblog diff --git a/deskutils/gkrellm-gtodo/Makefile b/deskutils/gkrellm-gtodo/Makefile new file mode 100644 index 000000000000..c3408e8cf95d --- /dev/null +++ b/deskutils/gkrellm-gtodo/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: gkrellm-gtodo +# Date created: Wed Apr 28 08:31:22 CEST 2004 +# Whom: Tobias Roth <ports@fsck.ch> +# +# $FreeBSD$ +# + +PORTNAME= gtodo +PORTVERSION= 0.2.5.a +CATEGORIES= deskutils +MASTER_SITES= http://voidtrance.home.comcast.net/software/files/gtodo/ \ + http://depot.fsck.ch/mirror/distfiles/ +PKGNAMEPREFIX= gkrellm- +DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-0.2.5a + +MAINTAINER= ports@fsck.ch +COMMENT= GKrellM2 plugin that tracks tasks and to-do items + +BUILD_DEPENDS= ${X11BASE}/include/gkrellm2/gkrellm.h:${PORTSDIR}/sysutils/gkrellm2 +RUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm2 + +USE_GMAKE= yes +USE_X_PREFIX= yes +USE_GNOME= gtk20 + +PLIST_FILES= libexec/gkrellm2/plugins/gkrellm-gtodo.so +WRKSRC= ${WRKDIR}/${PKGNAMEPREFIX}${PORTNAME} + +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/${PKGNAMEPREFIX}${PORTNAME}.so \ + ${PREFIX}/libexec/gkrellm2/plugins/ + +.include <bsd.port.mk> diff --git a/deskutils/gkrellm-gtodo/distinfo b/deskutils/gkrellm-gtodo/distinfo new file mode 100644 index 000000000000..a7bd2eed8deb --- /dev/null +++ b/deskutils/gkrellm-gtodo/distinfo @@ -0,0 +1,2 @@ +MD5 (gkrellm-gtodo-0.2.5a.tar.gz) = 6d00732619d2b0cc1191cc8f3979d644 +SIZE (gkrellm-gtodo-0.2.5a.tar.gz) = 58891 diff --git a/deskutils/gkrellm-gtodo/files/patch-Makefile b/deskutils/gkrellm-gtodo/files/patch-Makefile new file mode 100644 index 000000000000..3377ba0fbeeb --- /dev/null +++ b/deskutils/gkrellm-gtodo/files/patch-Makefile @@ -0,0 +1,30 @@ +--- Makefile.orig Wed Apr 28 08:51:42 2004 ++++ Makefile Wed Apr 28 09:15:38 2004 +@@ -11,15 +11,15 @@ + USER_INSTALL_PATH ?= $(HOME)/.gkrellm2/plugins + + ## executables +-CC = gcc ++CC ?= gcc + RM = rm -f + INSTALL ?= install -m 755 + + ## Compiler and Linker flags + ## Theoretically, you should not need to change these + ## but if the make does not work look into it +-CFLAGS = -fPIC -Wall -I. $(shell pkg-config gtk+-2.0 --cflags) +-LIBFLAGS = -shared $(shell pkg-config gtk+-2.0 --libs) ++CFLAGS += -fPIC -Wall -I. `pkg-config gtk+-2.0 --cflags` ++LIBFLAGS = -shared `pkg-config gtk+-2.0 --libs` + + ## Set all the locale converstion stuff + ## if necessary +@@ -29,7 +29,7 @@ + CFLAGS += -DENABLE_NLS -DLOCALEDIR=\"$(LOCALEDIR)\" + export enable_nls + endif +-CFLAGS += -DPACKAGE="\"$(PACKAGE)\"" ++#CFLAGS += -DPACKAGE="\"$(PACKAGE)\"" + export PACKAGE LOCALEDIR + + ## File name and target definitions diff --git a/deskutils/gkrellm-gtodo/pkg-descr b/deskutils/gkrellm-gtodo/pkg-descr new file mode 100644 index 000000000000..33d264d11ad2 --- /dev/null +++ b/deskutils/gkrellm-gtodo/pkg-descr @@ -0,0 +1,6 @@ +This is a GkrellM2 plugin that tracks tasks and to-do items. It also +supports deadline reminder alarms, tracking of time spent on individual +tasks, and task-diary (sort of) through task comments. + +Author: Dimitar Haralanov <fulcrumusa@netscape.net> +WWW: http://voidtrance.home.comcast.net/software/ |