diff options
author | fhajny <fhajny@pkgsrc.org> | 2016-05-17 10:32:06 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2016-05-17 10:32:06 +0000 |
commit | 3c581072bdf4170a88e004c862f36c3e5826040c (patch) | |
tree | bb4a8c9947c804084004863ea06af206d79d402b /mail/turba | |
parent | 1b4694d98df4656434a6840b4e7c1c2d4bf07e94 (diff) | |
download | pkgsrc-3c581072bdf4170a88e004c862f36c3e5826040c.tar.gz |
Use REAL_ROOT_USER/REAL_ROOT_GROUP instead of ROOT_USER/ROOT_GROUP
for all pkgsrc dir/file ownership rules. Fixes unprivileged
user/group names from leaking into binary packages, manifest as
non-fatal chown/chgrp failure messages at pkg_add time.
Bump respective packages' PKGREVISION.
Diffstat (limited to 'mail/turba')
-rw-r--r-- | mail/turba/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/turba/Makefile b/mail/turba/Makefile index babb50615b8..b3d3c0e6eba 100644 --- a/mail/turba/Makefile +++ b/mail/turba/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.41 2015/06/12 10:50:27 wiz Exp $ +# $NetBSD: Makefile,v 1.42 2016/05/17 10:32:08 fhajny Exp $ DISTNAME= turba-h3-${TURBAVER} PKGNAME= turba-${TURBAVER} -PKGREVISION= 5 +PKGREVISION= 6 CATEGORIES= mail www MASTER_SITES= http://ftp.horde.org/pub/turba/ \ ftp://ftp.horde.org/pub/turba/ @@ -55,18 +55,18 @@ REPLACE_FILES.php= scripts/import_vcards.php \ CONF_FILES= ${EGDIR}/turba.conf ${PKG_SYSCONFDIR}/turba.conf CONF_FILES_PERMS+= ${TURBADIR}/config/sources.php.dist \ ${TURBADIR}/config/sources.php \ - ${APACHE_USER} ${ROOT_GROUP} 0440 + ${APACHE_USER} ${REAL_ROOT_GROUP} 0440 CONF_FILES+= ${TURBADIR}/config/attributes.php.dist \ ${TURBADIR}/config/attributes.php CONF_FILES_PERMS+= ${TURBADIR}/config/conf.xml.dist \ ${TURBADIR}/config/conf.xml \ - ${APACHE_USER} ${ROOT_GROUP} 0440 + ${APACHE_USER} ${REAL_ROOT_GROUP} 0440 CONF_FILES_PERMS+= ${TURBADIR}/config/menu.php.dist \ ${TURBADIR}/config/menu.php \ - ${APACHE_USER} ${ROOT_GROUP} 0440 + ${APACHE_USER} ${REAL_ROOT_GROUP} 0440 CONF_FILES_PERMS+= ${TURBADIR}/config/prefs.php.dist \ ${TURBADIR}/config/prefs.php \ - ${APACHE_USER} ${ROOT_GROUP} 0440 + ${APACHE_USER} ${REAL_ROOT_GROUP} 0440 .include "options.mk" |