diff options
author | edwin <edwin@FreeBSD.org> | 2003-04-01 16:07:44 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-04-01 16:07:44 +0800 |
commit | 148a78d21ad0ac5516810d947579c851fa9c49de (patch) | |
tree | 4498acea1b6a8b9424f78bb74b8bc38604e59f23 /www/twiki/Makefile | |
parent | a614b7b37ca616db2f711cd7bc27a226a90d5e5f (diff) | |
download | freebsd-ports-gnome-148a78d21ad0ac5516810d947579c851fa9c49de.tar.gz freebsd-ports-gnome-148a78d21ad0ac5516810d947579c851fa9c49de.tar.zst freebsd-ports-gnome-148a78d21ad0ac5516810d947579c851fa9c49de.zip |
FreeBSD port of TWiki
TWiki is a flexible, powerful, and easy to use Web-based
collaboration platform.
PR: ports/49000
Submitted by: Justin Hawkins <justin@hawkins.id.au>
Diffstat (limited to 'www/twiki/Makefile')
-rw-r--r-- | www/twiki/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/www/twiki/Makefile b/www/twiki/Makefile new file mode 100644 index 000000000000..d3a66af03e00 --- /dev/null +++ b/www/twiki/Makefile @@ -0,0 +1,38 @@ +# Ports collection makefile for: TWiki +# Date created: Fri Mar 7 14:36:05 CST 2003 +# Whom: Justin Hawkins <justin@hawkins.id.au> +# +# $FreeBSD$ +# + +PORTNAME= twiki +PORTVERSION= 20030201 +PORTREVISION= 0 +CATEGORIES= www +MASTER_SITES= http://twiki.org/swd/ http://www.thoeny.com/peter/twiki/ +DISTNAME= TWiki${PORTVERSION} + +MAINTAINER= justin@hawkins.id.au +COMMENT= A flexible, powerful, and easy to use Web-based collaboration platform + +NO_WRKSUBDIR= yes +NO_BUILD= yes + +USE_ZIP= yes + +LTWIKIDIR= www/twiki + +TWIKIDIR= ${PREFIX}/${LTWIKIDIR} + +pre-configure: +# move config file to sample + @${MV} ${WRKSRC}/lib/TWiki.cfg ${WRKSRC}/lib/TWiki.cfg.sample + +do-install: + ${MKDIR} ${TWIKIDIR} + ${CP} -R ${WRKSRC}/* ${TWIKIDIR}/ + +post-install: + PKG_PREFIX=${PREFIX} ${SH} pkg-install ${PKGNAME} POST-INSTALL + +.include <bsd.port.mk> |