From 5281212be38447df70380d4e9e8cd0ef1cf11517 Mon Sep 17 00:00:00 2001 From: Michael Haro Date: Sun, 22 Aug 1999 19:01:07 +0000 Subject: chmod -> ${CHMOD} chown -> ${CHOWN} --- net/arpwatch-devel/Makefile | 8 ++++---- net/arpwatch/Makefile | 8 ++++---- net/ascend-radius/Makefile | 10 +++++----- net/binkd/Makefile | 4 ++-- net/dgd-net/Makefile | 4 ++-- net/dgd/Makefile | 4 ++-- net/gaim-snapshot/Makefile | 4 ++-- net/gaim/Makefile | 4 ++-- net/generic-nqs/Makefile | 4 ++-- net/icmpinfo/Makefile | 6 +++--- net/icmpquery/Makefile | 4 ++-- net/licq-devel/Makefile | 6 +++--- net/licq/Makefile | 6 +++--- net/net-snmp/Makefile | 4 ++-- net/net-snmp4/Makefile | 4 ++-- net/netcat/Makefile | 4 ++-- net/pmf/Makefile | 6 +++--- net/radiusd-cistron/Makefile | 6 +++--- net/rwhois/Makefile | 4 ++-- net/rwhoisd/Makefile | 4 ++-- net/samba-devel/Makefile | 16 ++++++++-------- net/samba/Makefile | 16 ++++++++-------- net/samba3/Makefile | 16 ++++++++-------- net/sdr/Makefile | 4 ++-- net/tac_plus4/Makefile | 4 ++-- net/tdetect/Makefile | 4 ++-- net/ucd-snmp/Makefile | 4 ++-- net/vnc/Makefile | 4 ++-- net/wide-dhcp/Makefile | 6 +++--- net/zebra-devel/Makefile | 4 ++-- net/zebra-pj/Makefile | 4 ++-- net/zebra/Makefile | 4 ++-- 32 files changed, 95 insertions(+), 95 deletions(-) (limited to 'net') diff --git a/net/arpwatch-devel/Makefile b/net/arpwatch-devel/Makefile index f47bd6a1f320..3651b220e851 100644 --- a/net/arpwatch-devel/Makefile +++ b/net/arpwatch-devel/Makefile @@ -3,7 +3,7 @@ # Date created: March 24 1997 # Whom: Brian Somers # -# $Id: Makefile,v 1.9 1998/08/21 18:09:19 brian Exp $ +# $Id: Makefile,v 1.10 1998/08/22 02:13:51 brian Exp $ # DISTNAME= arpwatch-2.1a4 @@ -23,11 +23,11 @@ MAN8= arpwatch.8 arpsnmp.8 post-install: if [ ! -d ${PREFIX}/arpwatch ]; then \ ${MKDIR} ${PREFIX}/arpwatch; \ - chmod 775 ${PREFIX}/arpwatch; \ - chown root.operator ${PREFIX}/arpwatch; \ + ${CHMOD} 775 ${PREFIX}/arpwatch; \ + ${CHOWN} root.operator ${PREFIX}/arpwatch; \ fi ${TOUCH} ${PREFIX}/arpwatch/arp.dat - chmod 644 ${PREFIX}/arpwatch/arp.dat + ${CHMOD} 644 ${PREFIX}/arpwatch/arp.dat for file in ethercodes.dat d.awk e.awk p.awk; do \ ${INSTALL_DATA} ${WRKSRC}/$$file ${PREFIX}/arpwatch/.; \ done diff --git a/net/arpwatch/Makefile b/net/arpwatch/Makefile index f47bd6a1f320..3651b220e851 100644 --- a/net/arpwatch/Makefile +++ b/net/arpwatch/Makefile @@ -3,7 +3,7 @@ # Date created: March 24 1997 # Whom: Brian Somers # -# $Id: Makefile,v 1.9 1998/08/21 18:09:19 brian Exp $ +# $Id: Makefile,v 1.10 1998/08/22 02:13:51 brian Exp $ # DISTNAME= arpwatch-2.1a4 @@ -23,11 +23,11 @@ MAN8= arpwatch.8 arpsnmp.8 post-install: if [ ! -d ${PREFIX}/arpwatch ]; then \ ${MKDIR} ${PREFIX}/arpwatch; \ - chmod 775 ${PREFIX}/arpwatch; \ - chown root.operator ${PREFIX}/arpwatch; \ + ${CHMOD} 775 ${PREFIX}/arpwatch; \ + ${CHOWN} root.operator ${PREFIX}/arpwatch; \ fi ${TOUCH} ${PREFIX}/arpwatch/arp.dat - chmod 644 ${PREFIX}/arpwatch/arp.dat + ${CHMOD} 644 ${PREFIX}/arpwatch/arp.dat for file in ethercodes.dat d.awk e.awk p.awk; do \ ${INSTALL_DATA} ${WRKSRC}/$$file ${PREFIX}/arpwatch/.; \ done diff --git a/net/ascend-radius/Makefile b/net/ascend-radius/Makefile index ace54e3cf754..fe22a65b11f3 100644 --- a/net/ascend-radius/Makefile +++ b/net/ascend-radius/Makefile @@ -3,7 +3,7 @@ # Date created: August 28th 96 # Whom: James FitzGibbon # -# $Id: Makefile,v 1.9 1997/06/27 02:26:43 jfitz Exp $ +# $Id: Makefile,v 1.10 1999/01/04 04:56:44 steve Exp $ # #DISTNAME= radius-980618 @@ -48,13 +48,13 @@ do-install: ${INSTALL_DATA} ${DISTDIR}/980618.pdf ${PREFIX}/share/doc/ascend-radius .endif @ ${MKDIR} ${PREFIX}/etc/raddb - @ chown root.wheel ${PREFIX}/etc/raddb - @ chmod 700 ${PREFIX}/etc/raddb + @ ${CHOWN} root.wheel ${PREFIX}/etc/raddb + @ ${CHMOD} 700 ${PREFIX}/etc/raddb for file in clients.example dictionary users.example; do \ ${INSTALL} -c -o root -g wheel -m 0400 ${WRKDIR}/${WRKPREFIX}/raddb/$$file ${PREFIX}/etc/raddb; \ done @ ${MKDIR} /var/log/radacct - @ chown root.wheel /var/log/radacct - @ chmod 700 /var/log/radacct + @ ${CHOWN} root.wheel /var/log/radacct + @ ${CHMOD} 700 /var/log/radacct .include diff --git a/net/binkd/Makefile b/net/binkd/Makefile index a5f7032fd405..7f729e0a316c 100644 --- a/net/binkd/Makefile +++ b/net/binkd/Makefile @@ -3,7 +3,7 @@ # Date created: 19 August 1998 # Whom: Andrey Zakhvatov # -# $Id: Makefile,v 1.3 1999/03/20 14:44:50 flathill Exp $ +# $Id: Makefile,v 1.4 1999/05/07 02:30:21 jseger Exp $ # DISTNAME= binkd092 @@ -22,7 +22,7 @@ MAN8= binkd.8 post-extract: @ ${CP} ${WRKSRC}/mkfls/unix/* ${WRKSRC} - @ chmod a+x ${WRKSRC}/configure + @ ${CHMOD} a+x ${WRKSRC}/configure do-install: @ ${INSTALL_PROGRAM} ${WRKSRC}/binkd ${PREFIX}/sbin diff --git a/net/dgd-net/Makefile b/net/dgd-net/Makefile index eb314c95c547..fb5538bf91b4 100644 --- a/net/dgd-net/Makefile +++ b/net/dgd-net/Makefile @@ -3,7 +3,7 @@ # Date created: 17 June 1996 # Whom: adam # -# $Id: Makefile,v 1.29 1998/03/21 08:43:22 adam Exp $ +# $Id: Makefile,v 1.30 1998/07/20 16:30:13 adam Exp $ # DISTNAME= dgd-net-1.1p6 @@ -49,7 +49,7 @@ post-build: @mv ${WRKDIR}/dgd/bin/precomp ${WRKDIR}/dgd/bin/precomp.net @mv ${WRKDIR}/dgd/doc/Introduction ${WRKDIR}/dgd/doc/Introduction.NET @mv ${WRKDIR}/dgd/doc/kfun/send_message ${WRKDIR}/dgd/doc/kfun/send_message.NET - @chmod o+r ${WRKDIR}/dgd/doc/kfun/* + @${CHMOD} o+r ${WRKDIR}/dgd/doc/kfun/* do-install: @-mv ${PREFIX}/dgd/bin/driver.net ${PREFIX}/dgd/bin/driver.net.old diff --git a/net/dgd/Makefile b/net/dgd/Makefile index 0abd328c3087..0f6f55dd65a0 100644 --- a/net/dgd/Makefile +++ b/net/dgd/Makefile @@ -3,7 +3,7 @@ # Date created: 23 August 1994 # Whom: adam # -# $Id: Makefile,v 1.76 1998/03/21 04:10:46 adam Exp $ +# $Id: Makefile,v 1.77 1998/07/20 15:01:52 adam Exp $ # DISTNAME= dgd-1.1p6 @@ -40,7 +40,7 @@ PATCH_DIST_ARGS= -d ${WRKDIR} --forward --quiet -E ${PATCH_DIST_STRIP} post-build: @cd ${WRKSRC}; ${MAKE} install - @chmod o+r ${WRKDIR}/dgd/doc/kfun/* + @${CHMOD} o+r ${WRKDIR}/dgd/doc/kfun/* do-install: @-mv ${PREFIX}/dgd/bin/driver ${PREFIX}/dgd/bin/driver.old diff --git a/net/gaim-snapshot/Makefile b/net/gaim-snapshot/Makefile index 7e89e882c605..48aacb2d1abc 100644 --- a/net/gaim-snapshot/Makefile +++ b/net/gaim-snapshot/Makefile @@ -3,7 +3,7 @@ # Date created: 26 Mar 1999 # Whom: Jim Mock # -# $Id: Makefile,v 1.6 1999/08/07 09:31:45 cpiazza Exp $ +# $Id: Makefile,v 1.7 1999/08/12 09:20:43 jim Exp $ # DISTNAME= gaim-0.9.7 @@ -26,7 +26,7 @@ CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" \ do-install: @${INSTALL_PROGRAM} ${WRKSRC}/src/gaim ${PREFIX}/bin - @${MKDIR} ${PREFIX}/share/gaim/pixmaps && chmod a+rx ${PREFIX}/share/gaim/pixmaps + @${MKDIR} ${PREFIX}/share/gaim/pixmaps && ${CHMOD} a+rx ${PREFIX}/share/gaim/pixmaps @${ECHO} "===> Installing pixmaps" @${INSTALL_DATA} ${WRKSRC}/pixmaps/*.xpm ${PREFIX}/share/gaim/pixmaps diff --git a/net/gaim/Makefile b/net/gaim/Makefile index 7e89e882c605..48aacb2d1abc 100644 --- a/net/gaim/Makefile +++ b/net/gaim/Makefile @@ -3,7 +3,7 @@ # Date created: 26 Mar 1999 # Whom: Jim Mock # -# $Id: Makefile,v 1.6 1999/08/07 09:31:45 cpiazza Exp $ +# $Id: Makefile,v 1.7 1999/08/12 09:20:43 jim Exp $ # DISTNAME= gaim-0.9.7 @@ -26,7 +26,7 @@ CONFIGURE_ENV= GTK_CONFIG="${GTK_CONFIG}" \ do-install: @${INSTALL_PROGRAM} ${WRKSRC}/src/gaim ${PREFIX}/bin - @${MKDIR} ${PREFIX}/share/gaim/pixmaps && chmod a+rx ${PREFIX}/share/gaim/pixmaps + @${MKDIR} ${PREFIX}/share/gaim/pixmaps && ${CHMOD} a+rx ${PREFIX}/share/gaim/pixmaps @${ECHO} "===> Installing pixmaps" @${INSTALL_DATA} ${WRKSRC}/pixmaps/*.xpm ${PREFIX}/share/gaim/pixmaps diff --git a/net/generic-nqs/Makefile b/net/generic-nqs/Makefile index 5117a197d073..26ebb21bff56 100644 --- a/net/generic-nqs/Makefile +++ b/net/generic-nqs/Makefile @@ -3,7 +3,7 @@ # Date created: 01 May 1998 # Whom: tonym # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1999/06/28 07:07:25 cpiazza Exp $ # DISTNAME= Generic-NQS-3.50.4 @@ -89,7 +89,7 @@ MAN1= nqs.1 nqsconfig.1 nqsgs.1 nqsrn.1\ pre-configure: @ ${CP} ${FILESDIR}/${TEMPLATE} ${PLATFORMDIR}/${PLATFORM}; \ ${CP} ${FILESDIR}/${DUMMYMAKE} ${WRKSRC}; \ - chmod 555 ${WRKDIR}/${DISTNAME}/Source-Tree/SETUP/all-systems/* + ${CHMOD} 555 ${WRKDIR}/${DISTNAME}/Source-Tree/SETUP/all-systems/* # # Install system boot startup file but need to find out exactly where diff --git a/net/icmpinfo/Makefile b/net/icmpinfo/Makefile index 0ed1d6fbb0a3..f308b0a02588 100644 --- a/net/icmpinfo/Makefile +++ b/net/icmpinfo/Makefile @@ -4,7 +4,7 @@ # Date created: Mon June 23, 1997 # Whom: David O'Brien (obrien@FreeBSD.org) # -# $Id: Makefile,v 1.4 1997/08/04 20:47:58 obrien Exp $ +# $Id: Makefile,v 1.5 1998/12/09 20:19:18 billf Exp $ # DISTNAME= icmpinfo-1.11 @@ -20,8 +20,8 @@ MAN1= icmpinfo.1 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/icmpinfo ${PREFIX}/bin - /usr/sbin/chown root ${PREFIX}/bin/icmpinfo - /bin/chmod 4555 ${PREFIX}/bin/icmpinfo + ${CHOWN} root ${PREFIX}/bin/icmpinfo + ${CHMOD} 4555 ${PREFIX}/bin/icmpinfo ${INSTALL_MAN} ${WRKSRC}/icmpinfo.man ${PREFIX}/man/man1/${MAN1} .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/icmpinfo diff --git a/net/icmpquery/Makefile b/net/icmpquery/Makefile index 8937490c1b58..ded8c9128ae8 100644 --- a/net/icmpquery/Makefile +++ b/net/icmpquery/Makefile @@ -3,7 +3,7 @@ # Date created: Jan 7 1999 # Whom: dom@myrddin.demon.co.uk # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1999/03/30 17:26:38 taoka Exp $ # DISTNAME= icmpquery @@ -24,6 +24,6 @@ do-extract: do-install: @${INSTALL_PROGRAM} ${WRKDIR}/icmpquery ${PREFIX}/bin - @chmod u+s ${PREFIX}/bin/icmpquery + @${CHMOD} u+s ${PREFIX}/bin/icmpquery .include diff --git a/net/licq-devel/Makefile b/net/licq-devel/Makefile index d9d490bae04b..f200108de39b 100644 --- a/net/licq-devel/Makefile +++ b/net/licq-devel/Makefile @@ -3,7 +3,7 @@ # Date created: 2 July 1998 # Whom: Brian Feldman # -# $Id: Makefile,v 1.6 1999/05/02 20:21:28 mharo Exp $ +# $Id: Makefile,v 1.7 1999/05/03 01:56:26 steve Exp $ # DISTNAME= licq-0.61 @@ -27,7 +27,7 @@ post-install: @${MKDIR} ${PREFIX}/share/licq @${CP} ${WRKSRC}/contrib/licq.* ${WRKSRC}/contrib/viewurl* \ ${PREFIX}/share/licq - @chmod 555 ${PREFIX}/share/licq/* - @chown bin.bin ${PREFIX}/share/licq/* + @${CHMOD} 555 ${PREFIX}/share/licq/* + @${CHOWN} bin.bin ${PREFIX}/share/licq/* .include diff --git a/net/licq/Makefile b/net/licq/Makefile index d9d490bae04b..f200108de39b 100644 --- a/net/licq/Makefile +++ b/net/licq/Makefile @@ -3,7 +3,7 @@ # Date created: 2 July 1998 # Whom: Brian Feldman # -# $Id: Makefile,v 1.6 1999/05/02 20:21:28 mharo Exp $ +# $Id: Makefile,v 1.7 1999/05/03 01:56:26 steve Exp $ # DISTNAME= licq-0.61 @@ -27,7 +27,7 @@ post-install: @${MKDIR} ${PREFIX}/share/licq @${CP} ${WRKSRC}/contrib/licq.* ${WRKSRC}/contrib/viewurl* \ ${PREFIX}/share/licq - @chmod 555 ${PREFIX}/share/licq/* - @chown bin.bin ${PREFIX}/share/licq/* + @${CHMOD} 555 ${PREFIX}/share/licq/* + @${CHOWN} bin.bin ${PREFIX}/share/licq/* .include diff --git a/net/net-snmp/Makefile b/net/net-snmp/Makefile index f2fb134f9826..0402cdee8f39 100644 --- a/net/net-snmp/Makefile +++ b/net/net-snmp/Makefile @@ -3,7 +3,7 @@ # Date created: 26 June 1996 # Whom: gpalmer # -# $Id: Makefile,v 1.27 1999/04/18 19:14:44 nectar Exp $ +# $Id: Makefile,v 1.28 1999/04/30 12:59:50 kris Exp $ # DISTNAME= ucd-snmp-3.6.1 @@ -60,7 +60,7 @@ post-install: ${ECHO} "Creating ${PREFIX}/etc/rc.d/snmpd.sh startup file."; \ ${ECHO} "#!/bin/sh" > ${STARTUP_FILE}; \ ${ECHO} "[ -x ${PREFIX}/sbin/snmpd ] && ${PREFIX}/sbin/snmpd && ${ECHO} -n ' snmpd'" >> ${STARTUP_FILE}; \ - chmod 751 ${STARTUP_FILE}; \ + ${CHMOD} 751 ${STARTUP_FILE}; \ fi ${SETENV} OBJFORMAT="${PORTOBJFORMAT}" ${LDCONFIG} -m ${PREFIX}/lib diff --git a/net/net-snmp4/Makefile b/net/net-snmp4/Makefile index f2fb134f9826..0402cdee8f39 100644 --- a/net/net-snmp4/Makefile +++ b/net/net-snmp4/Makefile @@ -3,7 +3,7 @@ # Date created: 26 June 1996 # Whom: gpalmer # -# $Id: Makefile,v 1.27 1999/04/18 19:14:44 nectar Exp $ +# $Id: Makefile,v 1.28 1999/04/30 12:59:50 kris Exp $ # DISTNAME= ucd-snmp-3.6.1 @@ -60,7 +60,7 @@ post-install: ${ECHO} "Creating ${PREFIX}/etc/rc.d/snmpd.sh startup file."; \ ${ECHO} "#!/bin/sh" > ${STARTUP_FILE}; \ ${ECHO} "[ -x ${PREFIX}/sbin/snmpd ] && ${PREFIX}/sbin/snmpd && ${ECHO} -n ' snmpd'" >> ${STARTUP_FILE}; \ - chmod 751 ${STARTUP_FILE}; \ + ${CHMOD} 751 ${STARTUP_FILE}; \ fi ${SETENV} OBJFORMAT="${PORTOBJFORMAT}" ${LDCONFIG} -m ${PREFIX}/lib diff --git a/net/netcat/Makefile b/net/netcat/Makefile index eb4530ab9b4f..af1805b820a0 100644 --- a/net/netcat/Makefile +++ b/net/netcat/Makefile @@ -4,7 +4,7 @@ # Date created: Thur Nov 21, 1996 # Whom: David O'Brien (obrien@cs.ucdavis.edu) # -# $Id: Makefile,v 1.1.1.1 1996/11/22 08:16:48 obrien Exp $ +# $Id: Makefile,v 1.2 1997/10/10 06:53:33 obrien Exp $ # DISTNAME= nc110 @@ -26,7 +26,7 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/nc ${PREFIX}/bin .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/netcat \ - && chmod a+rx ${PREFIX}/share/doc/netcat + && ${CHMOD} a+rx ${PREFIX}/share/doc/netcat ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/netcat .endif diff --git a/net/pmf/Makefile b/net/pmf/Makefile index e98fbd4ebcde..bde4a38d9d8d 100644 --- a/net/pmf/Makefile +++ b/net/pmf/Makefile @@ -3,7 +3,7 @@ # Date created: 24 Sep 1994 # Whom: adam # -# $Id: Makefile,v 1.10 1998/10/13 23:46:16 jseger Exp $ +# $Id: Makefile,v 1.11 1999/06/06 12:51:53 jseger Exp $ # DISTNAME= pmf-1.13.1 @@ -21,7 +21,7 @@ pre-install: @-mv ${WRKSRC}/../doc/pmf.doc ${WRKSRC}/../system_dir @tar -C ${WRKSRC}/../system_dir -cf - . \ | tar -C ${PREFIX}/lib/pmf -xf - - @chown -R bin.bin ${PREFIX}/lib/pmf - @chmod -R a-w ${PREFIX}/lib/pmf + @${CHOWN} -R bin.bin ${PREFIX}/lib/pmf + @${CHMOD} -R a-w ${PREFIX}/lib/pmf .include diff --git a/net/radiusd-cistron/Makefile b/net/radiusd-cistron/Makefile index 474522647bd3..f4446bc8a897 100644 --- a/net/radiusd-cistron/Makefile +++ b/net/radiusd-cistron/Makefile @@ -3,7 +3,7 @@ # Date created: 15 Jan 1999 # Whom: john@nlc.net.au # -# $Id: Makefile,v 1.5 1999/07/22 23:25:07 billf Exp $ +# $Id: Makefile,v 1.6 1999/08/01 04:07:50 steve Exp $ # DISTNAME= radiusd-cistron-1.5.4.3 @@ -70,7 +70,7 @@ do-install: 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 + @${CHMOD} 555 ${PREFIX}/etc/rc.d/radiusd.sh + @${CHOWN} root.wheel ${PREFIX}/etc/rc.d/radiusd.sh .include diff --git a/net/rwhois/Makefile b/net/rwhois/Makefile index 827473d32be7..ed5c57e1b0c8 100644 --- a/net/rwhois/Makefile +++ b/net/rwhois/Makefile @@ -3,7 +3,7 @@ # Date created: May 9th 1997 # Whom: James FitzGibbon # -# $Id: Makefile,v 1.5 1998/10/16 03:10:09 jseger Exp $ +# $Id: Makefile,v 1.6 1999/06/26 22:58:41 mharo Exp $ # DISTNAME= rwhois-1.0B9.2 @@ -36,6 +36,6 @@ post-install: @ echo "# configured your server's data" >> ${PREFIX}/etc/rc.d/rwhoisd.sh @ echo "echo \"rwhoisd not started; sample data still in place. See ${PREFIX}/share/doc/rwhois for details.\"" >> ${PREFIX}/etc/rc.d/rwhoisd.sh @ echo "#[ -x ${PREFIX}/lib/rwhois/sbin/rwhoisd ] && ${PREFIX}/lib/rwhois/sbin/rwhoisd -c ${PREFIX}/lib/rwhois/rwhois.conf & && echo -n ' rwhoisd'" >> ${PREFIX}/etc/rc.d/rwhoisd.sh - chmod 751 ${PREFIX}/etc/rc.d/rwhoisd.sh + ${CHMOD} 751 ${PREFIX}/etc/rc.d/rwhoisd.sh .include diff --git a/net/rwhoisd/Makefile b/net/rwhoisd/Makefile index 827473d32be7..ed5c57e1b0c8 100644 --- a/net/rwhoisd/Makefile +++ b/net/rwhoisd/Makefile @@ -3,7 +3,7 @@ # Date created: May 9th 1997 # Whom: James FitzGibbon # -# $Id: Makefile,v 1.5 1998/10/16 03:10:09 jseger Exp $ +# $Id: Makefile,v 1.6 1999/06/26 22:58:41 mharo Exp $ # DISTNAME= rwhois-1.0B9.2 @@ -36,6 +36,6 @@ post-install: @ echo "# configured your server's data" >> ${PREFIX}/etc/rc.d/rwhoisd.sh @ echo "echo \"rwhoisd not started; sample data still in place. See ${PREFIX}/share/doc/rwhois for details.\"" >> ${PREFIX}/etc/rc.d/rwhoisd.sh @ echo "#[ -x ${PREFIX}/lib/rwhois/sbin/rwhoisd ] && ${PREFIX}/lib/rwhois/sbin/rwhoisd -c ${PREFIX}/lib/rwhois/rwhois.conf & && echo -n ' rwhoisd'" >> ${PREFIX}/etc/rc.d/rwhoisd.sh - chmod 751 ${PREFIX}/etc/rc.d/rwhoisd.sh + ${CHMOD} 751 ${PREFIX}/etc/rc.d/rwhoisd.sh .include diff --git a/net/samba-devel/Makefile b/net/samba-devel/Makefile index bec851d6c0b2..8240dba0e28c 100644 --- a/net/samba-devel/Makefile +++ b/net/samba-devel/Makefile @@ -3,7 +3,7 @@ # Date created: 11th Feb 1995 # Whom: gpalmer # -# $Id: Makefile,v 1.39 1999/07/23 06:41:41 hosokawa Exp $ +# $Id: Makefile,v 1.40 1999/07/24 00:53:52 hosokawa Exp $ # DISTNAME= samba-2.0.5a @@ -56,7 +56,7 @@ post-install: ${INSTALL_SCRIPT} ${FILESDIR}/samba.sh.sample \ ${STARTUP_SCRIPT} ; \ fi - @test -d ${SAMBA_SPOOL} || ${MKDIR} ${SAMBA_SPOOL} && chmod 1777 ${SAMBA_SPOOL} + @test -d ${SAMBA_SPOOL} || ${MKDIR} ${SAMBA_SPOOL} && ${CHMOD} 1777 ${SAMBA_SPOOL} @if [ ! -f ${SAMPLE_CONFIG} ]; then \ ${SED} -e 's!%%SAMBA_SPOOL%%!${SAMBA_SPOOL}!' \ -e 's!%%SAMBA_LOGDIR%%!${SAMBA_LOGDIR}!' \ @@ -67,16 +67,16 @@ post-install: ${INSTALL_SCRIPT} ${WRKDIR}/${DISTNAME}/source/script/mksmbpasswd.sh ${PREFIX}/bin/make_smbpasswd if [ ! -d ${SAMBA_PRIVATE} ] ; then \ ${MKDIR} ${SAMBA_PRIVATE} ; \ - chown root.wheel ${SAMBA_PRIVATE} ; \ + ${CHOWN} root.wheel ${SAMBA_PRIVATE} ; \ fi - chmod 700 ${SAMBA_PRIVATE} + ${CHMOD} 700 ${SAMBA_PRIVATE} if [ ! -f ${SAMBA_PRIVATE}/smbpasswd ] ; then \ ${CAT} /etc/passwd | ${PREFIX}/bin/make_smbpasswd > ${SAMBA_PRIVATE}/smbpasswd ; \ - chmod 600 ${SAMBA_PRIVATE}/smbpasswd ; \ + ${CHMOD} 600 ${SAMBA_PRIVATE}/smbpasswd ; \ fi - chmod 500 ${SAMBA_PRIVATE} - chown root.wheel ${PREFIX}/bin/smbpasswd - chmod 111 ${PREFIX}/bin/smbpasswd + ${CHMOD} 500 ${SAMBA_PRIVATE} + ${CHOWN} root.wheel ${PREFIX}/bin/smbpasswd + ${CHMOD} 111 ${PREFIX}/bin/smbpasswd .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/samba diff --git a/net/samba/Makefile b/net/samba/Makefile index bec851d6c0b2..8240dba0e28c 100644 --- a/net/samba/Makefile +++ b/net/samba/Makefile @@ -3,7 +3,7 @@ # Date created: 11th Feb 1995 # Whom: gpalmer # -# $Id: Makefile,v 1.39 1999/07/23 06:41:41 hosokawa Exp $ +# $Id: Makefile,v 1.40 1999/07/24 00:53:52 hosokawa Exp $ # DISTNAME= samba-2.0.5a @@ -56,7 +56,7 @@ post-install: ${INSTALL_SCRIPT} ${FILESDIR}/samba.sh.sample \ ${STARTUP_SCRIPT} ; \ fi - @test -d ${SAMBA_SPOOL} || ${MKDIR} ${SAMBA_SPOOL} && chmod 1777 ${SAMBA_SPOOL} + @test -d ${SAMBA_SPOOL} || ${MKDIR} ${SAMBA_SPOOL} && ${CHMOD} 1777 ${SAMBA_SPOOL} @if [ ! -f ${SAMPLE_CONFIG} ]; then \ ${SED} -e 's!%%SAMBA_SPOOL%%!${SAMBA_SPOOL}!' \ -e 's!%%SAMBA_LOGDIR%%!${SAMBA_LOGDIR}!' \ @@ -67,16 +67,16 @@ post-install: ${INSTALL_SCRIPT} ${WRKDIR}/${DISTNAME}/source/script/mksmbpasswd.sh ${PREFIX}/bin/make_smbpasswd if [ ! -d ${SAMBA_PRIVATE} ] ; then \ ${MKDIR} ${SAMBA_PRIVATE} ; \ - chown root.wheel ${SAMBA_PRIVATE} ; \ + ${CHOWN} root.wheel ${SAMBA_PRIVATE} ; \ fi - chmod 700 ${SAMBA_PRIVATE} + ${CHMOD} 700 ${SAMBA_PRIVATE} if [ ! -f ${SAMBA_PRIVATE}/smbpasswd ] ; then \ ${CAT} /etc/passwd | ${PREFIX}/bin/make_smbpasswd > ${SAMBA_PRIVATE}/smbpasswd ; \ - chmod 600 ${SAMBA_PRIVATE}/smbpasswd ; \ + ${CHMOD} 600 ${SAMBA_PRIVATE}/smbpasswd ; \ fi - chmod 500 ${SAMBA_PRIVATE} - chown root.wheel ${PREFIX}/bin/smbpasswd - chmod 111 ${PREFIX}/bin/smbpasswd + ${CHMOD} 500 ${SAMBA_PRIVATE} + ${CHOWN} root.wheel ${PREFIX}/bin/smbpasswd + ${CHMOD} 111 ${PREFIX}/bin/smbpasswd .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/samba diff --git a/net/samba3/Makefile b/net/samba3/Makefile index bec851d6c0b2..8240dba0e28c 100644 --- a/net/samba3/Makefile +++ b/net/samba3/Makefile @@ -3,7 +3,7 @@ # Date created: 11th Feb 1995 # Whom: gpalmer # -# $Id: Makefile,v 1.39 1999/07/23 06:41:41 hosokawa Exp $ +# $Id: Makefile,v 1.40 1999/07/24 00:53:52 hosokawa Exp $ # DISTNAME= samba-2.0.5a @@ -56,7 +56,7 @@ post-install: ${INSTALL_SCRIPT} ${FILESDIR}/samba.sh.sample \ ${STARTUP_SCRIPT} ; \ fi - @test -d ${SAMBA_SPOOL} || ${MKDIR} ${SAMBA_SPOOL} && chmod 1777 ${SAMBA_SPOOL} + @test -d ${SAMBA_SPOOL} || ${MKDIR} ${SAMBA_SPOOL} && ${CHMOD} 1777 ${SAMBA_SPOOL} @if [ ! -f ${SAMPLE_CONFIG} ]; then \ ${SED} -e 's!%%SAMBA_SPOOL%%!${SAMBA_SPOOL}!' \ -e 's!%%SAMBA_LOGDIR%%!${SAMBA_LOGDIR}!' \ @@ -67,16 +67,16 @@ post-install: ${INSTALL_SCRIPT} ${WRKDIR}/${DISTNAME}/source/script/mksmbpasswd.sh ${PREFIX}/bin/make_smbpasswd if [ ! -d ${SAMBA_PRIVATE} ] ; then \ ${MKDIR} ${SAMBA_PRIVATE} ; \ - chown root.wheel ${SAMBA_PRIVATE} ; \ + ${CHOWN} root.wheel ${SAMBA_PRIVATE} ; \ fi - chmod 700 ${SAMBA_PRIVATE} + ${CHMOD} 700 ${SAMBA_PRIVATE} if [ ! -f ${SAMBA_PRIVATE}/smbpasswd ] ; then \ ${CAT} /etc/passwd | ${PREFIX}/bin/make_smbpasswd > ${SAMBA_PRIVATE}/smbpasswd ; \ - chmod 600 ${SAMBA_PRIVATE}/smbpasswd ; \ + ${CHMOD} 600 ${SAMBA_PRIVATE}/smbpasswd ; \ fi - chmod 500 ${SAMBA_PRIVATE} - chown root.wheel ${PREFIX}/bin/smbpasswd - chmod 111 ${PREFIX}/bin/smbpasswd + ${CHMOD} 500 ${SAMBA_PRIVATE} + ${CHOWN} root.wheel ${PREFIX}/bin/smbpasswd + ${CHMOD} 111 ${PREFIX}/bin/smbpasswd .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/samba diff --git a/net/sdr/Makefile b/net/sdr/Makefile index 9e509ec55db2..1896f7304a50 100644 --- a/net/sdr/Makefile +++ b/net/sdr/Makefile @@ -3,7 +3,7 @@ # Date created: 5 September 1996 # Whom: Bill Fenner # -# $Id: Makefile,v 1.10 1998/09/25 10:05:11 asami Exp $ +# $Id: Makefile,v 1.11 1999/03/30 00:20:39 fenner Exp $ # DISTNAME= sdr-2.4a7n @@ -28,6 +28,6 @@ post-extract: @${RM} -f ${WRKSRC}/src/libs.tcl @${CP} ${FILESDIR}/Makefile.work ${WRKSRC}/Makefile @${CP} ${FILESDIR}/configure ${WRKSRC} - @chmod 755 ${WRKSRC}/configure + @${CHMOD} 755 ${WRKSRC}/configure .include diff --git a/net/tac_plus4/Makefile b/net/tac_plus4/Makefile index 8a602a60e43c..5edf6af460b6 100644 --- a/net/tac_plus4/Makefile +++ b/net/tac_plus4/Makefile @@ -3,7 +3,7 @@ # Date created: 4 Mar 1997 # Whom: Igor Vinokurov # -# $Id: Makefile,v 1.3 1998/01/16 04:06:17 jseger Exp $ +# $Id: Makefile,v 1.4 1999/02/03 11:11:56 asami Exp $ # DISTNAME= tac_plus.2.1 @@ -36,7 +36,7 @@ do-install: ${ECHO} "Installing ${PREFIX}/etc/rc.d/tac_plus.sh startup file."; \ echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/tac_plus.sh; \ echo "[ -x ${PREFIX}/sbin/tac_plus -a -f ${PREFIX}/etc/tac_plus.conf ] && ${PREFIX}/sbin/tac_plus -C ${PREFIX}/etc/tac_plus.conf && echo -n ' tac_plus'" >> ${PREFIX}/etc/rc.d/tac_plus.sh; \ - chmod 751 ${PREFIX}/etc/rc.d/tac_plus.sh; \ + ${CHMOD} 751 ${PREFIX}/etc/rc.d/tac_plus.sh; \ fi .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/tac_plus diff --git a/net/tdetect/Makefile b/net/tdetect/Makefile index 0f6e767c9578..56d530125368 100644 --- a/net/tdetect/Makefile +++ b/net/tdetect/Makefile @@ -4,7 +4,7 @@ # Date created: Sun Jan 31, 1997 # Whom: shipley@dis.org # -# $Id: Makefile,v 1.1.1.1 1999/05/03 02:49:34 steve Exp $ +# $Id: Makefile,v 1.2 1999/07/04 19:18:49 obrien Exp $ # DISTNAME= tdetect-0.2 @@ -28,7 +28,7 @@ post-install: ${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/tdetect.sh; \ ${ECHO} "ETHERNETDEV=ed0" >> ${PREFIX}/etc/rc.d/tdetect.sh; \ ${ECHO} '[ -x ${PREFIX}/sbin/tdetect ] && ${PREFIX}/sbin/tdetect \$ETHERNETDEV && echo -n " tdetect"' >> ${PREFIX}/etc/rc.d/tdetect.sh; \ - chmod 750 ${PREFIX}/etc/rc.d/tdetect.sh; \ + ${CHMOD} 750 ${PREFIX}/etc/rc.d/tdetect.sh; \ ${ECHO} ''; \ ${ECHO} 'IMPORTANT edit ${PREFIX}/etc/rc.d/tdetect.sh and set "ETHERNETDEV" to'; \ ${ECHO} "the name of the ethernetdev you wish to monitor"; \ diff --git a/net/ucd-snmp/Makefile b/net/ucd-snmp/Makefile index f2fb134f9826..0402cdee8f39 100644 --- a/net/ucd-snmp/Makefile +++ b/net/ucd-snmp/Makefile @@ -3,7 +3,7 @@ # Date created: 26 June 1996 # Whom: gpalmer # -# $Id: Makefile,v 1.27 1999/04/18 19:14:44 nectar Exp $ +# $Id: Makefile,v 1.28 1999/04/30 12:59:50 kris Exp $ # DISTNAME= ucd-snmp-3.6.1 @@ -60,7 +60,7 @@ post-install: ${ECHO} "Creating ${PREFIX}/etc/rc.d/snmpd.sh startup file."; \ ${ECHO} "#!/bin/sh" > ${STARTUP_FILE}; \ ${ECHO} "[ -x ${PREFIX}/sbin/snmpd ] && ${PREFIX}/sbin/snmpd && ${ECHO} -n ' snmpd'" >> ${STARTUP_FILE}; \ - chmod 751 ${STARTUP_FILE}; \ + ${CHMOD} 751 ${STARTUP_FILE}; \ fi ${SETENV} OBJFORMAT="${PORTOBJFORMAT}" ${LDCONFIG} -m ${PREFIX}/lib diff --git a/net/vnc/Makefile b/net/vnc/Makefile index 3371448440d4..2e00e1b0649a 100644 --- a/net/vnc/Makefile +++ b/net/vnc/Makefile @@ -3,7 +3,7 @@ # Date created: 24 February 1998 # Whom: msmith # -# $Id: Makefile,v 1.9 1999/01/07 06:35:14 steve Exp $ +# $Id: Makefile,v 1.10 1999/02/18 16:05:47 steve Exp $ # DISTNAME= vnc-3.3.2r3_unixsrc @@ -41,7 +41,7 @@ post-install: # The documentation comes with bogus ownerships; this is a little leaky security-wise ${MKDIR} ${PREFIX}/share/doc/vnc tar -C ${PREFIX}/share/doc/vnc -xzf ${DISTDIR}/vnc-3.3.2_doc.tgz - chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/vnc + ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/vnc # Go install Java classes ${MKDIR} ${PREFIX}/share/vnc ${CP} -R ${WRKSRC}/classes ${PREFIX}/share/vnc diff --git a/net/wide-dhcp/Makefile b/net/wide-dhcp/Makefile index 9e3074c13549..b2052d5416f0 100644 --- a/net/wide-dhcp/Makefile +++ b/net/wide-dhcp/Makefile @@ -3,7 +3,7 @@ # Date created: 21 November 1995 # Whom: Yoshiro MIHIRA # -# $Id: Makefile,v 1.15 1999/02/07 19:46:12 obrien Exp $ +# $Id: Makefile,v 1.16 1999/07/10 20:08:06 sada Exp $ # DISTNAME= dhcp-1.4.0p5 @@ -58,8 +58,8 @@ post-install: ${ECHO} " ${ECHO} -n ' dhcps'" \ >> ${STARTUP_SCRIPT}; \ ${ECHO} 'fi' >> ${STARTUP_SCRIPT}; \ - chmod 755 ${STARTUP_SCRIPT}; \ - chown bin.bin ${STARTUP_SCRIPT}; \ + ${CHMOD} 755 ${STARTUP_SCRIPT}; \ + ${CHOWN} bin.bin ${STARTUP_SCRIPT}; \ fi @if [ ! -c /dev/bpf1 ]; then \ ${ECHO} "**********************************************************";\ diff --git a/net/zebra-devel/Makefile b/net/zebra-devel/Makefile index ca15000fe59d..f2ff704b22d5 100644 --- a/net/zebra-devel/Makefile +++ b/net/zebra-devel/Makefile @@ -3,7 +3,7 @@ # Date created: So 31 Mai 1998 11:00:30 CEST # Whom: Andreas Klemm # -# $Id: Makefile,v 1.21 1999/08/10 20:41:58 andreas Exp $ +# $Id: Makefile,v 1.22 1999/08/19 00:01:32 andreas Exp $ # DISTNAME= zebra-0.77 @@ -22,7 +22,7 @@ post-install: @${SED} -e "s=!!PREFIX!!=${PREFIX}=" \ < ${FILESDIR}/zebra.sh \ > ${PREFIX}/etc/rc.d/zebra.sh - @chmod 555 ${PREFIX}/etc/rc.d/zebra.sh + @${CHMOD} 555 ${PREFIX}/etc/rc.d/zebra.sh @${ECHO} "===> done." .include diff --git a/net/zebra-pj/Makefile b/net/zebra-pj/Makefile index ca15000fe59d..f2ff704b22d5 100644 --- a/net/zebra-pj/Makefile +++ b/net/zebra-pj/Makefile @@ -3,7 +3,7 @@ # Date created: So 31 Mai 1998 11:00:30 CEST # Whom: Andreas Klemm # -# $Id: Makefile,v 1.21 1999/08/10 20:41:58 andreas Exp $ +# $Id: Makefile,v 1.22 1999/08/19 00:01:32 andreas Exp $ # DISTNAME= zebra-0.77 @@ -22,7 +22,7 @@ post-install: @${SED} -e "s=!!PREFIX!!=${PREFIX}=" \ < ${FILESDIR}/zebra.sh \ > ${PREFIX}/etc/rc.d/zebra.sh - @chmod 555 ${PREFIX}/etc/rc.d/zebra.sh + @${CHMOD} 555 ${PREFIX}/etc/rc.d/zebra.sh @${ECHO} "===> done." .include diff --git a/net/zebra/Makefile b/net/zebra/Makefile index ca15000fe59d..f2ff704b22d5 100644 --- a/net/zebra/Makefile +++ b/net/zebra/Makefile @@ -3,7 +3,7 @@ # Date created: So 31 Mai 1998 11:00:30 CEST # Whom: Andreas Klemm # -# $Id: Makefile,v 1.21 1999/08/10 20:41:58 andreas Exp $ +# $Id: Makefile,v 1.22 1999/08/19 00:01:32 andreas Exp $ # DISTNAME= zebra-0.77 @@ -22,7 +22,7 @@ post-install: @${SED} -e "s=!!PREFIX!!=${PREFIX}=" \ < ${FILESDIR}/zebra.sh \ > ${PREFIX}/etc/rc.d/zebra.sh - @chmod 555 ${PREFIX}/etc/rc.d/zebra.sh + @${CHMOD} 555 ${PREFIX}/etc/rc.d/zebra.sh @${ECHO} "===> done." .include -- cgit v1.2.3