diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2004-06-21 01:34:16 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2004-06-21 01:34:16 +0000 |
commit | 784133fe95b853bf2fcfe7635805a78199c0e8cd (patch) | |
tree | febce7037d94595ef286fc5fc6ca2188ec2e8f6f /www/websvn/Makefile | |
parent | b25918641051f00f46cadc795918517cf9e15300 (diff) | |
download | pkgsrc-784133fe95b853bf2fcfe7635805a78199c0e8cd.tar.gz |
Update www/websvn to 1.40, and honour CONF_FILES and PKG_SYSCONFDIR.
Changes:
ADD: RSS feed support (thanks to Lübbe Onken for his work on this)
ADD: Translatations for French and Portuguese
ADD: .exe is recognised by default as having content-type
application/x-msdownload
ADD: Recognised links are now 'linkified' in the log messages
ADD: Tabs in file/diff listings are now expanded by a user
configurable number of spaces.
ADD: WebSVN URLs now access the repository by name rather than number.
This means that bookmarks will stay the same when new projects
are added. The old behaviour can be configure in config.inc.
FIX: Removed the revision 0 that has appeared in the previous version
FIX: Repositories were not sorted alphabetically when using ParentPath
FIX: The PNG support script needed for IE (and the BlueGrey scheme) is
now only loaded with IE
Diffstat (limited to 'www/websvn/Makefile')
-rw-r--r-- | www/websvn/Makefile | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/www/websvn/Makefile b/www/websvn/Makefile index b2c8f57b057..473377a94a5 100644 --- a/www/websvn/Makefile +++ b/www/websvn/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.1.1.1 2004/06/20 19:36:55 xtraeme Exp $ +# $NetBSD: Makefile,v 1.2 2004/06/21 01:34:16 xtraeme Exp $ # -DISTNAME= WebSVN_139 -PKGNAME= websvn-1.39 +DISTNAME= WebSVN_140 +PKGNAME= websvn-1.40 CATEGORIES= www MASTER_SITES= http://websvn.tigris.org/files/documents/1380/10659/ @@ -15,6 +15,9 @@ BUILD_DEPENDS+= ap-php-[0-9]*:../../www/ap-php4 WRKSRC= ${WRKDIR}/WebSVN NO_BUILD= yes +USE_PKGINSTALL= yes + +PKG_SYSCONFDIR.websvn= ${PREFIX}/${HTTPD_ROOT}/websvn/include MESSAGE_SUBST+= PKGBASE=${PKGBASE} MESSAGE_SUBST+= HTTPD_ROOT=${HTTPD_ROOT} @@ -24,8 +27,17 @@ HTTPD_ROOT?= share/httpd/htdocs BUILD_DEFS+= HTTPD_ROOT +EGDIR= ${PREFIX}/share/examples/${PKGBASE} +MAKE_DIRS= ${PREFIX}/${HTTPD_ROOT}/websvn/include +CONF_FILES= ${EGDIR}/distconfig.inc ${PKG_SYSCONFDIR}/config.inc + +INSTALLATION_DIRS= ${HTTPD_ROOT}/websvn share/examples/${PKGBASE} + do-install: - ${INSTALL_DATA_DIR} ${PREFIX}/${HTTPD_ROOT}/websvn + ${INSTALL_DATA} ${WRKSRC}/include/distconfig.inc ${EGDIR} cd ${WRKSRC} && ${PAX} -rwppm . ${PREFIX}/${HTTPD_ROOT}/websvn +post-install: + ${RM} ${PREFIX}/${HTTPD_ROOT}/websvn/include/distconfig.inc + .include "../../mk/bsd.pkg.mk" |