summaryrefslogtreecommitdiff
path: root/net-mgmt
diff options
context:
space:
mode:
authorMichael Haro <mharo@FreeBSD.org>1999-08-22 19:01:07 +0000
committerMichael Haro <mharo@FreeBSD.org>1999-08-22 19:01:07 +0000
commit5281212be38447df70380d4e9e8cd0ef1cf11517 (patch)
tree655e734faae358d2c0edeefd08e9aeac6202b150 /net-mgmt
parentAssign USE_XLIB var. Any ports which use XLib needs it. (diff)
chmod -> ${CHMOD}
chown -> ${CHOWN}
Notes
Notes: svn path=/head/; revision=20885
Diffstat (limited to 'net-mgmt')
-rw-r--r--net-mgmt/arpwatch-devel/Makefile8
-rw-r--r--net-mgmt/arpwatch/Makefile8
-rw-r--r--net-mgmt/icmpquery/Makefile4
-rw-r--r--net-mgmt/net-snmp-devel/Makefile4
-rw-r--r--net-mgmt/net-snmp/Makefile4
-rw-r--r--net-mgmt/net-snmp4/Makefile4
-rw-r--r--net-mgmt/net-snmp53/Makefile4
-rw-r--r--net-mgmt/wide-dhcp/Makefile6
8 files changed, 21 insertions, 21 deletions
diff --git a/net-mgmt/arpwatch-devel/Makefile b/net-mgmt/arpwatch-devel/Makefile
index f47bd6a1f320..3651b220e851 100644
--- a/net-mgmt/arpwatch-devel/Makefile
+++ b/net-mgmt/arpwatch-devel/Makefile
@@ -3,7 +3,7 @@
# Date created: March 24 1997
# Whom: Brian Somers <brian@Awfulhak.org>
#
-# $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-mgmt/arpwatch/Makefile b/net-mgmt/arpwatch/Makefile
index f47bd6a1f320..3651b220e851 100644
--- a/net-mgmt/arpwatch/Makefile
+++ b/net-mgmt/arpwatch/Makefile
@@ -3,7 +3,7 @@
# Date created: March 24 1997
# Whom: Brian Somers <brian@Awfulhak.org>
#
-# $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-mgmt/icmpquery/Makefile b/net-mgmt/icmpquery/Makefile
index 8937490c1b58..ded8c9128ae8 100644
--- a/net-mgmt/icmpquery/Makefile
+++ b/net-mgmt/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 <bsd.port.mk>
diff --git a/net-mgmt/net-snmp-devel/Makefile b/net-mgmt/net-snmp-devel/Makefile
index f2fb134f9826..0402cdee8f39 100644
--- a/net-mgmt/net-snmp-devel/Makefile
+++ b/net-mgmt/net-snmp-devel/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-mgmt/net-snmp/Makefile b/net-mgmt/net-snmp/Makefile
index f2fb134f9826..0402cdee8f39 100644
--- a/net-mgmt/net-snmp/Makefile
+++ b/net-mgmt/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-mgmt/net-snmp4/Makefile b/net-mgmt/net-snmp4/Makefile
index f2fb134f9826..0402cdee8f39 100644
--- a/net-mgmt/net-snmp4/Makefile
+++ b/net-mgmt/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-mgmt/net-snmp53/Makefile b/net-mgmt/net-snmp53/Makefile
index f2fb134f9826..0402cdee8f39 100644
--- a/net-mgmt/net-snmp53/Makefile
+++ b/net-mgmt/net-snmp53/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-mgmt/wide-dhcp/Makefile b/net-mgmt/wide-dhcp/Makefile
index 9e3074c13549..b2052d5416f0 100644
--- a/net-mgmt/wide-dhcp/Makefile
+++ b/net-mgmt/wide-dhcp/Makefile
@@ -3,7 +3,7 @@
# Date created: 21 November 1995
# Whom: Yoshiro MIHIRA <sanpei@yy.cs.keio.ac.jp>
#
-# $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} "**********************************************************";\