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/mimp/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 'mail/mimp/Makefile')
-rw-r--r-- | mail/mimp/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/mimp/Makefile b/mail/mimp/Makefile index 017cb6e8601..2f2a4613863 100644 --- a/mail/mimp/Makefile +++ b/mail/mimp/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.3 2015/12/19 14:27:14 taca Exp $ +# $NetBSD: Makefile,v 1.4 2016/05/17 10:32:07 fhajny Exp $ DISTNAME= mimp-h3-${MIMPVER} PKGNAME= mimp-${MIMPVER} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= mail www MASTER_SITES= http://ftp.horde.org/pub/mimp/ \ ftp://ftp.horde.org/pub/mimp/ @@ -39,16 +39,16 @@ PKG_SYSCONFSUBDIR?= httpd CONF_FILES= ${EGDIR}/mimp.conf ${PKG_SYSCONFDIR}/mimp.conf CONF_FILES_PERMS+= ${MIMPDIR}/config/conf.xml.dist \ ${MIMPDIR}/config/conf.xml \ - ${APACHE_USER} ${ROOT_GROUP} 0440 + ${APACHE_USER} ${REAL_ROOT_GROUP} 0440 CONF_FILES_PERMS+= ${MIMPDIR}/config/menu.php.dist \ ${MIMPDIR}/config/menu.php \ - ${APACHE_USER} ${ROOT_GROUP} 0440 + ${APACHE_USER} ${REAL_ROOT_GROUP} 0440 CONF_FILES_PERMS+= ${MIMPDIR}/config/mime_drivers.php.dist \ ${MIMPDIR}/config/mime_drivers.php \ - ${APACHE_USER} ${ROOT_GROUP} 0440 + ${APACHE_USER} ${REAL_ROOT_GROUP} 0440 CONF_FILES_PERMS+= ${MIMPDIR}/config/prefs.php.dist \ ${MIMPDIR}/config/prefs.php \ - ${APACHE_USER} ${ROOT_GROUP} 0440 + ${APACHE_USER} ${REAL_ROOT_GROUP} 0440 SUBST_CLASSES+= files SUBST_STAGE.files= post-build |