diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2004-06-20 19:36:55 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2004-06-20 19:36:55 +0000 |
commit | 6fb19322bd075985b86493b777a556b129928aef (patch) | |
tree | 34be506305cdc6f6e540d9435ed5ccf9d9bfc383 /www/websvn/Makefile | |
parent | ab16764e1e49543bc809b630ee7b85bd261cc2f1 (diff) | |
download | pkgsrc-6fb19322bd075985b86493b777a556b129928aef.tar.gz |
Initial import of websvn-1.39 from pkgsrc-wip.
WebSVN offers a view onto your subversion repositories that's been designed to
reflect the Subversion methodology. You can view the log of any file or
directory and see a list of all the files changed, added or deleted in any
given revision. You can also view the differences between 2 versions of a
file so as to see exactly what was changed in a particular revision.
WebSVN offers the following features:
* Easy to use interface
* Highly customisable templating system
* Log message searching
* Colourisation of file listings
* Fast browsing thanks to internal caching feature
* Apache MultiViews support
Since it's written using PHP, WebSVN is also very portable and easy to
install.
Diffstat (limited to 'www/websvn/Makefile')
-rw-r--r-- | www/websvn/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/www/websvn/Makefile b/www/websvn/Makefile new file mode 100644 index 00000000000..b2c8f57b057 --- /dev/null +++ b/www/websvn/Makefile @@ -0,0 +1,31 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/06/20 19:36:55 xtraeme Exp $ +# + +DISTNAME= WebSVN_139 +PKGNAME= websvn-1.39 +CATEGORIES= www +MASTER_SITES= http://websvn.tigris.org/files/documents/1380/10659/ + +MAINTAINER= tech-pkg@NetBSD.org +HOMEPAGE= http://websvn.tigris.org/ +COMMENT= Subversion repository web frontend + +BUILD_DEPENDS+= {apache-[0-9]*,apache6-[0-9]*,apache2-[0-9]*}:../../www/apache2 +BUILD_DEPENDS+= ap-php-[0-9]*:../../www/ap-php4 + +WRKSRC= ${WRKDIR}/WebSVN +NO_BUILD= yes + +MESSAGE_SUBST+= PKGBASE=${PKGBASE} +MESSAGE_SUBST+= HTTPD_ROOT=${HTTPD_ROOT} +PLIST_SUBST+= HTTPD_ROOT=${HTTPD_ROOT} + +HTTPD_ROOT?= share/httpd/htdocs + +BUILD_DEFS+= HTTPD_ROOT + +do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/${HTTPD_ROOT}/websvn + cd ${WRKSRC} && ${PAX} -rwppm . ${PREFIX}/${HTTPD_ROOT}/websvn + +.include "../../mk/bsd.pkg.mk" |