summaryrefslogtreecommitdiff
path: root/net-mgmt/net-snmp/Makefile
diff options
context:
space:
mode:
authorBill Fenner <fenner@FreeBSD.org>1997-07-03 04:59:05 +0000
committerBill Fenner <fenner@FreeBSD.org>1997-07-03 04:59:05 +0000
commit6e7adb7599e6aba69b0b441326c631156a54a6d8 (patch)
treeb723e9cf1bfe35d6f9854fd3148a20a793026aeb /net-mgmt/net-snmp/Makefile
parentAdd linux-netscape4 (diff)
Upgrade to ucd-snmp 3.2, and make it work on -current.
Notes
Notes: svn path=/head/; revision=7202
Diffstat (limited to 'net-mgmt/net-snmp/Makefile')
-rw-r--r--net-mgmt/net-snmp/Makefile24
1 files changed, 13 insertions, 11 deletions
diff --git a/net-mgmt/net-snmp/Makefile b/net-mgmt/net-snmp/Makefile
index b390f836bee9..73beaa683d41 100644
--- a/net-mgmt/net-snmp/Makefile
+++ b/net-mgmt/net-snmp/Makefile
@@ -1,32 +1,27 @@
# New ports collection makefile for: ucd-snmp
-# Version required: 3.1.3
+# Version required: 3.2
# Date created: 26 June 1996
# Whom: gpalmer
#
-# $Id: Makefile,v 1.11 1997/05/17 17:24:59 fenner Exp $
+# $Id: Makefile,v 1.12 1997/07/02 09:39:17 asami Exp $
#
-DISTNAME= ucd-snmp-3.1.3
+DISTNAME= ucd-snmp-3.2
CATEGORIES= net
MASTER_SITES= ftp://ftp.ece.ucdavis.edu/pub/snmp/
MAINTAINER= gpalmer@FreeBSD.ORG
-OSVERSION!= sysctl -n kern.osreldate
-.if ${OSVERSION} >= 300000
-BROKEN= "does not work for 3.0 now"
-.endif
-
GNU_CONFIGURE= yes
.if defined(PACKAGE_BUILDING)
-CONFIGURE_ARGS= --with-distdefaults
+CONFIGURE_ARGS= --with-defaults --with-sys-contact=nobody@no.where
.else
IS_INTERACTIVE= yes
.endif
MAN1= snmpget.1 snmpset.1 snmpwalk.1 snmpbulkwalk.1 \
snmpgetnext.1 snmptest.1 snmpnetstat.1 snmptranslate.1 \
- snmpstatus.1
-MAN3= snmp_api.3
+ snmptrap.1 snmpstatus.1
+MAN3= snmp_api.3 mib_api.3
MAN5= variables.5 snmpd.conf.5
MAN8= snmptrapd.8 snmpd.8
@@ -41,5 +36,12 @@ post-install:
@${MKDIR} ${PREFIX}/share/examples/ucd-snmp
@for F in ${WRKSRC}/etc/* ; do \
${INSTALL_DATA} $$F ${PREFIX}/share/examples/ucd-snmp ; done
+ @if [ ! -f ${PREFIX}/etc/rc.d/snmpd.sh ]; then \
+ echo "Creating ${PREFIX}/etc/rc.d/snmpd.sh startup file."; \
+ echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/snmpd.sh; \
+ echo "[ -x /usr/local/sbin/snmpd ] && /usr/local/sbin/snmpd && echo -n ' snmpd'" >> ${PREFIX}/etc/rc.d/snmpd.sh; \
+ chmod 751 ${PREFIX}/etc/rc.d/snmpd.sh; \
+ fi
+
.include <bsd.port.mk>