mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
1672e1e388
* Incidently fixes problem building on 3.0-CURRENT. PR: 7198
52 lines
1.6 KiB
Makefile
52 lines
1.6 KiB
Makefile
# New ports collection makefile for: ucd-snmp
|
|
# Version required: 3.5
|
|
# Date created: 26 June 1996
|
|
# Whom: gpalmer
|
|
#
|
|
# $Id: Makefile,v 1.3 1998/06/29 05:23:40 nectar Exp $
|
|
#
|
|
|
|
DISTNAME= ucd-snmp-3.5
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.ece.ucdavis.edu/pub/snmp/ \
|
|
ftp://sunsite.cnlab-switch.ch/mirror/ucd-snmp/ \
|
|
ftp://ftp.win.or.jp/pub/network/snmp/ucd-snmp/
|
|
|
|
MAINTAINER= gpalmer@FreeBSD.ORG
|
|
|
|
CONFIGURE_ARGS= --enable-shared
|
|
|
|
USE_CONFIGURE= YES
|
|
GNU_CONFIGURE= YES
|
|
.if defined(BATCH)
|
|
CONFIGURE_ARGS+= --with-defaults --with-sys-contact=nobody@no.where
|
|
.else
|
|
IS_INTERACTIVE= yes
|
|
.endif
|
|
|
|
MAN1= snmpbulkwalk.1 snmpd.1 snmpdelta.1 snmpget.1 snmpgetnext.1 \
|
|
snmpnetstat.1 snmpset.1 snmpstatus.1 snmptable.1 snmptest.1 \
|
|
snmptranslate.1 snmptrap.1 snmpwalk.1
|
|
MAN3= mib_api.3 snmp_api.3
|
|
MAN5= snmpd.conf.5 variables.5
|
|
MAN8= snmptrapd.8
|
|
BIN= snmpbulkwalk snmpget snmpgetnext snmpnetstat snmpset \
|
|
snmpstatus snmptest snmptranslate snmptrap snmpwalk
|
|
SBIN= snmpd snmptrapd
|
|
|
|
post-install:
|
|
( cd ${PREFIX}/bin; strip ${BIN} )
|
|
( cd ${PREFIX}/sbin; strip ${SBIN} )
|
|
(cd ${PREFIX}/lib && ${LN} libsnmp.so libsnmp.so.3.5)
|
|
@${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>
|