diff options
author | agc <agc> | 2001-12-05 15:00:44 +0000 |
---|---|---|
committer | agc <agc> | 2001-12-05 15:00:44 +0000 |
commit | 1478be8dd6988d5af30bc8667d4e7a74a61adc8c (patch) | |
tree | 724e606740f3a6533da580088062080cdc00e030 /net | |
parent | 8a2eb76e854b6c83897fa06104aa2436a874bd16 (diff) | |
download | pkgsrc-1478be8dd6988d5af30bc8667d4e7a74a61adc8c.tar.gz |
s/root/${ROOT_USER}/g, now that the definition appears in the
defs.${OPSYS}.mk files.
Diffstat (limited to 'net')
-rw-r--r-- | net/arla/Makefile | 4 | ||||
-rw-r--r-- | net/dhisd/Makefile | 4 | ||||
-rw-r--r-- | net/mtr-gtk/Makefile | 4 | ||||
-rw-r--r-- | net/mtr/Makefile | 4 | ||||
-rw-r--r-- | net/radiusd-cistron/Makefile | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/net/arla/Makefile b/net/arla/Makefile index 67cf5cc8c04..68eafa0a2a3 100644 --- a/net/arla/Makefile +++ b/net/arla/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2001/09/27 23:18:26 jlam Exp $ +# $NetBSD: Makefile,v 1.19 2001/12/05 15:00:47 agc Exp $ # DISTNAME= arla-0.35.5 @@ -57,7 +57,7 @@ post-install: ${ECHO} "Creating arla cache directory ${CACHEDIR}"; \ ${INSTALL_DATA_DIR} ${CACHEDIR}; \ ${CHMOD} 700 ${CACHEDIR}; \ - ${CHOWN} root ${CACHEDIR}; \ + ${CHOWN} ${ROOT_USER} ${CACHEDIR}; \ fi @if [ -e /sbin/mount_xfs ]; then \ ${ECHO} "/sbin/mount_xfs already exists"; \ diff --git a/net/dhisd/Makefile b/net/dhisd/Makefile index 3a55c76471a..5fbd3b7206a 100644 --- a/net/dhisd/Makefile +++ b/net/dhisd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2001/06/05 23:39:27 hubertf Exp $ +# $NetBSD: Makefile,v 1.2 2001/12/05 15:00:47 agc Exp $ # DISTNAME= dhisd-5.0 @@ -30,7 +30,7 @@ do-install: ${INSTALL_PROGRAM} \ ${WRKSRC}/genkeys \ ${PREFIX}/bin/dhisd-genkeys - ${CHOWN} root \ + ${CHOWN} ${ROOT_USER} \ ${PREFIX}/bin/dhisd-genkeys \ ${PREFIX}/bin/dhisd ${CHMOD} 700 \ diff --git a/net/mtr-gtk/Makefile b/net/mtr-gtk/Makefile index 6ab79cbafbe..6adeff2d480 100644 --- a/net/mtr-gtk/Makefile +++ b/net/mtr-gtk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/11/29 01:12:42 hubertf Exp $ +# $NetBSD: Makefile,v 1.4 2001/12/05 15:00:48 agc Exp $ # DISTNAME= mtr-0.42 @@ -18,7 +18,7 @@ USE_BUILDLINK_ONLY= yes do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mtr-gtk - ${INSTALL} -c -s -m 4755 -o root -g wheel ${WRKSRC}/mtr ${PREFIX}/sbin/mtr-gtk + ${INSTALL} -c -s -m 4755 -o ${ROOT_USER} -g ${ROOT_GROUP} ${WRKSRC}/mtr ${PREFIX}/sbin/mtr-gtk ${INSTALL_DATA} ${WRKSRC}/mtr.8 ${PREFIX}/man/man8/mtr-gtk.8 ${INSTALL_DATA} ${WRKSRC}/SECURITY ${PREFIX}/share/doc/mtr-gtk diff --git a/net/mtr/Makefile b/net/mtr/Makefile index d10aa3156e9..1e1dc916d2a 100644 --- a/net/mtr/Makefile +++ b/net/mtr/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2001/12/04 06:15:00 jlam Exp $ +# $NetBSD: Makefile,v 1.23 2001/12/05 15:00:48 agc Exp $ # DISTNAME= mtr-0.42 @@ -17,7 +17,7 @@ USE_BUILDLINK_ONLY= YES do-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mtr - ${INSTALL} -c -s -m 4755 -o root -g wheel ${WRKSRC}/mtr ${PREFIX}/sbin + ${INSTALL} -c -s -m 4755 -o ${ROOT_USER} -g ${ROOT_GROUP} ${WRKSRC}/mtr ${PREFIX}/sbin ${INSTALL_DATA} ${WRKSRC}/mtr.8 ${PREFIX}/man/man8 ${INSTALL_DATA} ${WRKSRC}/SECURITY ${PREFIX}/share/doc/mtr diff --git a/net/radiusd-cistron/Makefile b/net/radiusd-cistron/Makefile index 324a6ec645f..960807dbcb6 100644 --- a/net/radiusd-cistron/Makefile +++ b/net/radiusd-cistron/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2001/10/11 09:57:20 martti Exp $ +# $NetBSD: Makefile,v 1.2 2001/12/05 15:00:48 agc Exp $ DISTNAME= radiusd-cistron-1.6.4 CATEGORIES= net @@ -43,6 +43,6 @@ post-install: @${SED} -e "s=!!PREFIX!!=${PREFIX}=g" ${FILESDIR}/radiusd.sh.tmpl \ > ${PREFIX}/etc/rc.d/radiusd.sh @${CHMOD} 555 ${PREFIX}/etc/rc.d/radiusd.sh - @${CHOWN} root:wheel ${PREFIX}/etc/rc.d/radiusd.sh + @${CHOWN} ${ROOT_USER}:${ROOT_GROUP} ${PREFIX}/etc/rc.d/radiusd.sh .include "../../mk/bsd.pkg.mk" |