summaryrefslogtreecommitdiff
path: root/time/tdl/patches
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/patches
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/patches')
-rw-r--r--time/tdl/patches/patch-aa21
1 files changed, 21 insertions, 0 deletions
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 $<