diff options
author | dinoex <dinoex@FreeBSD.org> | 2001-06-09 12:38:27 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2001-06-09 12:38:27 +0000 |
commit | 5da69c4c58c947bfabf1724be9ebae3291fe47a0 (patch) | |
tree | 2f333f46223fa583fefbb57691d978d96adb3600 | |
parent | 0c4b94916949241aec70fa8fefb92494a224d71a (diff) | |
download | FreeBSD-ports-5da69c4c58c947bfabf1724be9ebae3291fe47a0.zip FreeBSD-ports-5da69c4c58c947bfabf1724be9ebae3291fe47a0.tar.gz |
devtodo is a program to assist developers (or anybody who uses a
terminal) in maintaining a list of outstanding tasks in a heirarchical,
prioritised, list. Additionally, it can automatically list outstanding
items when you change into a directory (see example shell configurations
in ${PREFIX}/share/examples/devtodo).
WWW: http://www.sourceforge.net/projects/devtodo/
PR: 27659
Submitted by: petef@databits.net
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/devtodo/Makefile | 31 | ||||
-rw-r--r-- | devel/devtodo/distinfo | 1 | ||||
-rw-r--r-- | devel/devtodo/pkg-comment | 1 | ||||
-rw-r--r-- | devel/devtodo/pkg-descr | 10 | ||||
-rw-r--r-- | devel/devtodo/pkg-plist | 11 |
6 files changed, 55 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 6dc1bba..6d64beb 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -90,6 +90,7 @@ SUBDIR += cweb SUBDIR += cxref SUBDIR += ddd + SUBDIR += devtodo SUBDIR += dia2code SUBDIR += diffconvert SUBDIR += dmake diff --git a/devel/devtodo/Makefile b/devel/devtodo/Makefile new file mode 100644 index 0000000..823372f --- /dev/null +++ b/devel/devtodo/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: devtodo +# Date Created: 26 May 2001 +# Whom: Pete Fritchman <petef@databits.net> +# +# $FreeBSD$ +# + +PORTNAME= devtodo +PORTVERSION= 0.1.6.1 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= ${PORTNAME}-0.1.6-1 + +MAINTAINER= petef@databits.net + +WRKSRC= ${WRKDIR}/devtodo-0.1.6 + +GNU_CONFIGURE= Yes + +MAN1= devtodo.1 +MLINKS= devtodo.1 tda.1 devtodo.1 tdd.1 devtodo.1 tde.1 devtodo.1 tdr.1 \ + devtodo.1 todo.1 + +post-install: + @${MKDIR} ${PREFIX}/share/examples/devtodo +.for file in doc/scripts.sh doc/scripts.tcsh doc/todorc.example + ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/examples/devtodo +.endfor + +.include <bsd.port.mk> diff --git a/devel/devtodo/distinfo b/devel/devtodo/distinfo new file mode 100644 index 0000000..15b376e --- /dev/null +++ b/devel/devtodo/distinfo @@ -0,0 +1 @@ +MD5 (devtodo-0.1.6-1.tar.gz) = 7c96b5401cc64a3dc9a8b57083273c6f diff --git a/devel/devtodo/pkg-comment b/devel/devtodo/pkg-comment new file mode 100644 index 0000000..0f702d9 --- /dev/null +++ b/devel/devtodo/pkg-comment @@ -0,0 +1 @@ +Tool to effectively maintain todo lists aimed at developers diff --git a/devel/devtodo/pkg-descr b/devel/devtodo/pkg-descr new file mode 100644 index 0000000..3f76195 --- /dev/null +++ b/devel/devtodo/pkg-descr @@ -0,0 +1,10 @@ +devtodo is a program to assist developers (or anybody who uses a +terminal) in maintaining a list of outstanding tasks in a heirarchical, +prioritised, list. Additionally, it can automatically list outstanding +items when you change into a directory (see example shell configurations +in ${PREFIX}/share/examples/devtodo). + +WWW: http://www.sourceforge.net/projects/devtodo/ + +- Pete +petef@databits.net diff --git a/devel/devtodo/pkg-plist b/devel/devtodo/pkg-plist new file mode 100644 index 0000000..d8b6fa6 --- /dev/null +++ b/devel/devtodo/pkg-plist @@ -0,0 +1,11 @@ +bin/devtodo +bin/tda +bin/tdd +bin/tde +bin/tdr +bin/todo +etc/todorc +share/examples/devtodo/scripts.sh +share/examples/devtodo/scripts.tcsh +share/examples/devtodo/todorc.example +@dirrm share/examples/devtodo |