diff options
author | fenner <fenner@FreeBSD.org> | 1997-07-03 04:59:05 +0000 |
---|---|---|
committer | fenner <fenner@FreeBSD.org> | 1997-07-03 04:59:05 +0000 |
commit | f2c19b73a192caff10e93893e173df5f74fca304 (patch) | |
tree | a86c3187952e9a67f8dc07ef8568b60a565f3cae /net/net-snmp/Makefile | |
parent | f29144d0963d99cedb054bd6f7b7ff8e3dcb3a08 (diff) | |
download | FreeBSD-ports-f2c19b73a192caff10e93893e173df5f74fca304.zip FreeBSD-ports-f2c19b73a192caff10e93893e173df5f74fca304.tar.gz |
Upgrade to ucd-snmp 3.2, and make it work on -current.
Diffstat (limited to 'net/net-snmp/Makefile')
-rw-r--r-- | net/net-snmp/Makefile | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/net/net-snmp/Makefile b/net/net-snmp/Makefile index b390f83..73beaa6 100644 --- a/net/net-snmp/Makefile +++ b/net/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> |