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 /www/gallery/Makefile | |
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 'www/gallery/Makefile')
-rw-r--r-- | www/gallery/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/gallery/Makefile b/www/gallery/Makefile index 6893bd61728..aa0fe5f9e39 100644 --- a/www/gallery/Makefile +++ b/www/gallery/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.12 2015/06/12 10:51:49 wiz Exp $ +# $NetBSD: Makefile,v 1.13 2016/05/17 10:32:09 fhajny Exp $ # DISTNAME= gallery-1.5.10 -PKGREVISION= 7 +PKGREVISION= 8 CATEGORIES= www graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gallery/} @@ -30,9 +30,9 @@ EGDIR= ${PREFIX}/share/examples/gallery G1DIR= ${PREFIX}/share/gallery CONF_FILES_PERMS= ${EGDIR}/config.php ${G1DIR}/config.php \ - ${ROOT_USER} ${ROOT_GROUP} 0666 + ${REAL_ROOT_USER} ${REAL_ROOT_GROUP} 0666 CONF_FILES_PERMS+= ${EGDIR}/.htaccess ${G1DIR}/.htaccess \ - ${ROOT_USER} ${ROOT_GROUP} 0666 + ${REAL_ROOT_USER} ${REAL_ROOT_GROUP} 0666 MESSAGE_SUBST+= G1DIR=${G1DIR} FILES_SUBST+= G1DIR=${G1DIR} |