mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
76bd4dfdd7
patches a bit (author incorporated a fair number of them, and made even more cross-platfrm portability improvements). I'll deal with any packaging changes tomorrow.
38 lines
988 B
Makefile
38 lines
988 B
Makefile
# New ports collection makefile for: ucd-snmp
|
|
# Version required: 3.1
|
|
# Date created: 26 June 1996
|
|
# Whom: gpalmer
|
|
#
|
|
# $Id: Makefile,v 1.8 1996/12/08 01:45:06 max Exp $
|
|
#
|
|
|
|
DISTNAME= ucd-snmp-3.1.3
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.ece.ucdavis.edu/pub/snmp/
|
|
|
|
MAINTAINER= gpalmer@FreeBSD.ORG
|
|
|
|
NO_PACKAGE= "Asks too many questions"
|
|
GNU_CONFIGURE= yes
|
|
IS_INTERACTIVE= yes
|
|
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
|
|
|
|
BIN= snmpbulkwalk snmpget snmpgetnext snmpnetstat \
|
|
snmpset snmpstatus snmptest snmptranslate \
|
|
snmptrap snmptrapd snmpwalk
|
|
SBIN= snmpd
|
|
|
|
post-install:
|
|
( cd ${PREFIX}/bin; strip ${BIN} )
|
|
( cd ${PREFIX}/sbin; strip ${SBIN} )
|
|
@${MKDIR} ${PREFIX}/share/examples/ucd-snmp
|
|
@for F in ${WRKSRC}/etc/* ; do \
|
|
${INSTALL_DATA} $$F ${PREFIX}/share/examples/ucd-snmp ; done
|
|
|
|
.include <bsd.port.mk>
|