diff options
author | rillig <rillig@pkgsrc.org> | 2006-10-15 19:37:26 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-10-15 19:37:26 +0000 |
commit | 7dafb469cbece0c1550f7a509b1d5d29a2307f32 (patch) | |
tree | 1fa1c9425512cc39ec661fd9cc4c433d2afa5e08 /www/websvn | |
parent | f90cdc172dc9114cc9f6e8fac2bbfb77d9bd6918 (diff) | |
download | pkgsrc-7dafb469cbece0c1550f7a509b1d5d29a2307f32.tar.gz |
Fixed file permissions. We don't want to have world-writable files at all.
Diffstat (limited to 'www/websvn')
-rw-r--r-- | www/websvn/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/www/websvn/Makefile b/www/websvn/Makefile index 50ee4eba1ba..2dc639d51bc 100644 --- a/www/websvn/Makefile +++ b/www/websvn/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.14 2006/06/02 18:28:01 joerg Exp $ +# $NetBSD: Makefile,v 1.15 2006/10/15 19:37:26 rillig Exp $ # DISTNAME= WebSVN_161 PKGNAME= websvn-1.61 -PKGREVISION= 6 +PKGREVISION= 7 CATEGORIES= www MASTER_SITES= http://websvn.tigris.org/files/documents/1380/14334/ @@ -33,6 +33,9 @@ CONF_FILES= ${EGDIR}/distconfig.inc ${PKG_SYSCONFDIR}/config.inc INSTALLATION_DIRS= ${HTTPD_ROOT}/websvn share/examples/${PKGBASE} +post-extract: + chmod -R go-w ${WRKSRC} + do-install: ${INSTALL_DATA} ${WRKSRC}/include/distconfig.inc ${EGDIR} cd ${WRKSRC} && ${PAX} -rwppm . ${PREFIX}/${HTTPD_ROOT}/websvn |