summaryrefslogtreecommitdiff
path: root/devel/roundup
diff options
context:
space:
mode:
authorlukem <lukem@pkgsrc.org>2003-02-11 12:30:28 +0000
committerlukem <lukem@pkgsrc.org>2003-02-11 12:30:28 +0000
commit03b574c33ca99e875562cc5f244f082ea5b61e16 (patch)
tree8749c3e24f236d79e68a5f2844785ae1c9431481 /devel/roundup
parent5a36b99e452938e09ce0a38783a95c85d2d62aa3 (diff)
downloadpkgsrc-03b574c33ca99e875562cc5f244f082ea5b61e16.tar.gz
Roundup is a simple-to-use and -install issue-tracking system with
command-line, web and e-mail interfaces. It is based on the winning design from Ka-Ping Yee in the Software Carpentry "Track" design competition.
Diffstat (limited to 'devel/roundup')
-rw-r--r--devel/roundup/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/devel/roundup/Makefile b/devel/roundup/Makefile
new file mode 100644
index 00000000000..6245814c24c
--- /dev/null
+++ b/devel/roundup/Makefile
@@ -0,0 +1,28 @@
+# $NetBSD: Makefile,v 1.1.1.1 2003/02/11 12:30:28 lukem Exp $
+
+DISTNAME= roundup-0.5.5
+CATEGORIES= devel
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=roundup/}
+
+MAINTAINER= lukem@netbsd.org
+HOMEPAGE= http://roundup.sf.net/
+COMMENT= Issue tracking system with command-line, web and email clients
+
+PYDISTUTILSPKG= yes
+
+PYTHON_PATCH_SCRIPTS= roundup/admin.py roundup/backends/locking.py \
+ roundup/version_check.py cgi-bin/roundup.cgi
+
+ROUNDUPDOCDIR= ${LOCALBASE}/share/doc/roundup
+
+post-install:
+ ${INSTALL_DATA_DIR} ${ROUNDUPDOCDIR}
+ cd ${WRKSRC} && ${INSTALL_DATA} CHANGES.txt COPYING.txt README.txt \
+ ${ROUNDUPDOCDIR}
+ cd ${WRKSRC}/doc && ${INSTALL_DATA} *.txt *.html *.css ${ROUNDUPDOCDIR}
+ ${INSTALL_DATA_DIR} ${ROUNDUPDOCDIR}/images
+ cd ${WRKSRC}/doc/images && ${INSTALL_DATA} *.png ${ROUNDUPDOCDIR}/images
+
+.include "../../lang/python/extension.mk"
+.include "../../lang/python/application.mk"
+.include "../../mk/bsd.pkg.mk"