summaryrefslogtreecommitdiff
path: root/net-mgmt/net-snmp/Makefile
diff options
context:
space:
mode:
authorGary Palmer <gpalmer@FreeBSD.org>1996-07-06 08:14:49 +0000
committerGary Palmer <gpalmer@FreeBSD.org>1996-07-06 08:14:49 +0000
commitd3cb3cb92706cf89df3f3003bad020c800eb9930 (patch)
treea8f1c3d74cd6efbf1515816f432112c6a69931b8 /net-mgmt/net-snmp/Makefile
parentMake this thing work with Microsoft network. (diff)
The SNMP package from University of California at Davis
Ok'ed by: asami
Notes
Notes: svn path=/head/; revision=3312
Diffstat (limited to 'net-mgmt/net-snmp/Makefile')
-rw-r--r--net-mgmt/net-snmp/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/net-mgmt/net-snmp/Makefile b/net-mgmt/net-snmp/Makefile
new file mode 100644
index 000000000000..873ce21690f0
--- /dev/null
+++ b/net-mgmt/net-snmp/Makefile
@@ -0,0 +1,41 @@
+# New ports collection makefile for: ucd-snmp
+# Version required: 3.1
+# Date created: 26 June 1996
+# Whom: gpalmer
+#
+# $Id$
+#
+
+DISTNAME= ucd-snmp-3.1
+CATEGORIES+= networking
+MASTER_SITES= ftp://ftp.ece.ucdavis.edu/pub/snmp/
+
+MAINTAINER= gpalmer@FreeBSD.ORG
+
+GNU_CONFIGURE= yes
+IS_INTERACTIVE= yes
+
+BIN= snmpbulkwalk snmpget snmpgetnext snmpnetstat \
+ snmpset snmpstatus snmptest snmptranslate \
+ snmptrap snmptrapd snmpwalk
+SBIN= snmpd
+MAN1= snmpget.1 snmpset.1 snmpwalk.1 snmpbulkwalk.1 \
+ snmpgetnext.1 snmptest.1 snmpnetstat.1 snmptranslate.1 \
+ snmpstatus.1
+MAN3= snmp_api.3
+MAN5= variables.5 snmpd.conf.5
+MAN8= snmptrapd.8 snmpd.8
+
+post-install:
+ ( cd ${PREFIX}/bin; strip ${BIN} )
+ ( cd ${PREFIX}/sbin; strip ${SBIN} )
+.if !defined(NOMANCOMPRESS)
+ ( cd ${PREFIX}/man/man1; gzip -9nf ${MAN1} )
+ ( cd ${PREFIX}/man/man3; gzip -9nf ${MAN3} )
+ ( cd ${PREFIX}/man/man5; gzip -9nf ${MAN5} )
+ ( cd ${PREFIX}/man/man8; gzip -9nf ${MAN8} )
+.endif
+ mkdir -p ${PREFIX}/share/examples/ucd-snmp
+ ( cd ${WRKSRC}/etc; cp * ${PREFIX}/share/examples/ucd-snmp )
+
+.include <bsd.port.mk>