pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/time/tdl Add tdl, the neat todo list manager. tdl allo...
details: https://anonhg.NetBSD.org/pkgsrc/rev/f79ce194328c
branches: trunk
changeset: 546534:f79ce194328c
user: tonnerre <tonnerre%pkgsrc.org@localhost>
date: Thu Sep 04 11:13:29 2008 +0000
description:
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:
time/tdl/DESCR | 5 +++++
time/tdl/Makefile | 21 +++++++++++++++++++++
time/tdl/PLIST | 11 +++++++++++
time/tdl/distinfo | 6 ++++++
time/tdl/patches/patch-aa | 21 +++++++++++++++++++++
5 files changed, 64 insertions(+), 0 deletions(-)
diffs (84 lines):
diff -r df47b519b892 -r f79ce194328c time/tdl/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/time/tdl/DESCR Thu Sep 04 11:13:29 2008 +0000
@@ -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 -r df47b519b892 -r f79ce194328c time/tdl/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/time/tdl/Makefile Thu Sep 04 11:13:29 2008 +0000
@@ -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@localhost
+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 -r df47b519b892 -r f79ce194328c time/tdl/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/time/tdl/PLIST Thu Sep 04 11:13:29 2008 +0000
@@ -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 -r df47b519b892 -r f79ce194328c time/tdl/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/time/tdl/distinfo Thu Sep 04 11:13:29 2008 +0000
@@ -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 -r df47b519b892 -r f79ce194328c time/tdl/patches/patch-aa
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/time/tdl/patches/patch-aa Thu Sep 04 11:13:29 2008 +0000
@@ -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 $<
Home |
Main Index |
Thread Index |
Old Index