summaryrefslogtreecommitdiff
path: root/time/tdl
diff options
context:
space:
mode:
authortonnerre <tonnerre@pkgsrc.org>2008-09-04 11:13:29 +0000
committertonnerre <tonnerre@pkgsrc.org>2008-09-04 11:13:29 +0000
commit79c18c75135d4dcb3f2cfa5a388df4c0e8fb4bc1 (patch)
tree213eb17e8e5164496ad6dd3e2fc220b3d19f12ca /time/tdl
parent3f2f8eae77b77a167b040f25d57965e231de39eb (diff)
downloadpkgsrc-79c18c75135d4dcb3f2cfa5a388df4c0e8fb4bc1.tar.gz
Add tdl, the neat todo list manager. tdl allows you to create and manage
TODO lists, in the local directory or elsewhere, to assign priorities and start/end dates, to send nag mails for todos or to generate reports of done items by date.
Diffstat (limited to 'time/tdl')
-rw-r--r--time/tdl/DESCR5
-rw-r--r--time/tdl/Makefile21
-rw-r--r--time/tdl/PLIST11
-rw-r--r--time/tdl/distinfo6
-rw-r--r--time/tdl/patches/patch-aa21
5 files changed, 64 insertions, 0 deletions
diff --git a/time/tdl/DESCR b/time/tdl/DESCR
new file mode 100644
index 00000000000..8d6a44aa43e
--- /dev/null
+++ b/time/tdl/DESCR
@@ -0,0 +1,5 @@
+tdl is a to-do list manager. You can use it for keeping track of
+tasks you have to do, check them off as they get done, organise them
+into a project hierarchy, and generate reports of what you've
+completed over a period of time. It's often used for tracking
+programming tasks, but has also found various other uses.
diff --git a/time/tdl/Makefile b/time/tdl/Makefile
new file mode 100644
index 00000000000..de1421f86a1
--- /dev/null
+++ b/time/tdl/Makefile
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.1.1.1 2008/09/04 11:13:29 tonnerre Exp $
+
+DISTNAME= tdl-1.5.2
+CATEGORIES= time
+MASTER_SITES= http://www.rpcurnow.force9.co.uk/tdl/
+
+MAINTAINER= tonnerre@NetBSD.org
+HOMEPAGE= http://www.rpcurnow.force9.co.uk/tdl/
+COMMENT= Todo list manager with tons of features
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+HAS_CONFIGURE= YES
+USE_GNU_READLINE= YES
+CONFIGURE_ARGS= --prefix=${PREFIX}
+
+.include "../../mk/bsd.prefs.mk"
+.include "../../mk/compiler.mk"
+.include "../../devel/readline/buildlink3.mk"
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/time/tdl/PLIST b/time/tdl/PLIST
new file mode 100644
index 00000000000..34bc4aa5098
--- /dev/null
+++ b/time/tdl/PLIST
@@ -0,0 +1,11 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2008/09/04 11:13:29 tonnerre Exp $
+bin/tdl
+bin/tdla
+bin/tdld
+bin/tdlg
+bin/tdll
+man/man1/tdl.1.gz
+man/man1/tdla.1.gz
+man/man1/tdld.1.gz
+man/man1/tdlg.1.gz
+man/man1/tdll.1.gz
diff --git a/time/tdl/distinfo b/time/tdl/distinfo
new file mode 100644
index 00000000000..6900c864896
--- /dev/null
+++ b/time/tdl/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2008/09/04 11:13:29 tonnerre Exp $
+
+SHA1 (tdl-1.5.2.tar.gz) = 273c15eafa0a856532865ac4ccfee6685f88e1ad
+RMD160 (tdl-1.5.2.tar.gz) = 5bf21e214faa208c85e72b67b2f0d21bd279a4fe
+Size (tdl-1.5.2.tar.gz) = 66057 bytes
+SHA1 (patch-aa) = 1b0243f02526905ad74643d817aca6b117bfd03c
diff --git a/time/tdl/patches/patch-aa b/time/tdl/patches/patch-aa
new file mode 100644
index 00000000000..0b6d58ef3c0
--- /dev/null
+++ b/time/tdl/patches/patch-aa
@@ -0,0 +1,21 @@
+$NetBSD: patch-aa,v 1.1.1.1 2008/09/04 11:13:29 tonnerre Exp $
+
+--- Makefile.in.orig 2004-01-07 01:09:05.000000000 +0100
++++ Makefile.in
+@@ -24,6 +24,7 @@
+ # Select C compiler and compile options
+ CC=@cc@
+ CFLAGS=@cflags@ @defines@
++LDFLAGS=-Wl,-rpath -Wl,@prefix@/lib
+ READLINE_DEFINE=@readline_define@
+ INC_READLINE=@inc_readline@
+ LIB_READLINE=@lib_readline@
+@@ -52,7 +53,7 @@ OBJ = main.o io.o add.o done.o remove.o
+ all : tdl
+
+ tdl : $(OBJ)
+- $(CC) $(CFLAGS) -o tdl $(OBJ) $(LIB_READLINE)
++ $(CC) $(LDFLAGS) -o tdl $(OBJ) $(LIB_READLINE)
+
+ %.o : %.c
+ $(CC) $(CFLAGS) -c $<