freebsd-ports/net-mgmt/net-snmp53/Makefile
Bill Fumerola db60f873fb o Bump SHLIB_VERSION to 4 and make this port build it that way.
o Look for perl in the right place (patch-ah)
o Add a typedef that ucd-snmp wants (patch-ag)
o Install headers files with the right permissions

Submitted by:	<jack@germanium.xtalwind.net>
PR:		ports/13539
----------------------------------------------------------------------

o Remove extraneous HAS_CONFIGURE introduced by nectar in rev1.19
o Use the PATCH_* framework and grab 012.patch from the authors.
1999-09-04 23:30:47 +00:00

76 lines
2.3 KiB
Makefile

# New ports collection makefile for: ucd-snmp
# Version required: 3.6.1
# Date created: 26 June 1996
# Whom: gpalmer
#
# $FreeBSD$
#
DISTNAME= ucd-snmp-4.0.1
CATEGORIES= net
MASTER_SITES= ftp://ucd-snmp.ucdavis.edu/ \
ftp://sunsite.cnlab-switch.ch/mirror/ucd-snmp/ \
ftp://ftp.win.or.jp/pub/network/snmp/ucd-snmp/
PATCH_SITES= http://ucd-snmp.ucdavis.edu/patches/
PATCHFILES= 012.patch
PATCH_DIST_STRIP= -p0 -d ${WRKSRC}/agent
MAINTAINER= gpalmer@FreeBSD.org
CONFIGURE_ARGS= --enable-shared
GNU_CONFIGURE= YES
.if defined(BATCH)
CONFIGURE_ARGS+= --with-defaults --with-sys-contact=nobody@no.where
.else
IS_INTERACTIVE= yes
.endif
#CFLAGS= -g
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 snmpcmd.1 snmpusm.1
MAN3= read_config.3 mib_api.3 snmp_api.3 snmp_sess_api.3
MAN5= snmp.conf.5 snmp_config.5 snmpd.conf.5 \
snmptrapd.conf.5 variables.5
MAN8= snmptrapd.8
BIN= snmpbulkwalk snmpget snmpgetnext snmpnetstat snmpset \
snmpstatus snmptest snmptranslate snmptrap snmpwalk
SBIN= snmpd snmptrapd
STARTUP_FILE= ${PREFIX}/etc/rc.d/snmpd.sh.sample
.include <bsd.port.pre.mk>
.if ${PORTOBJFORMAT} == "aout"
BROKEN= "aout build breaks: ld: internal error: RRS relocs exceed allocation 343"
.endif
.if ${OSVERSION} >= 400000
BROKEN= "Uses the old VM system interfaces"
.endif
SHLIB_VERSION=4
PLIST_SUB= shlib=${SHLIB_VERSION}
post-patch:
@${CP} ${FILESDIR}/freebsd4.h ${WRKSRC}/s
post-install:
@( cd ${PREFIX}/bin && strip ${BIN} )
@( cd ${PREFIX}/sbin && strip ${SBIN} )
@( cd ${PREFIX}/include/ucd-snmp && ${CHMOD} 644 * )
@( cd ${PREFIX}/share/snmp/mibs && ${CHMOD} 644 * )
@( cd ${PREFIX}/lib && ${LN} -f libsnmp.so.${SHLIB_VERSION} libsnmp.so )
@${MKDIR} ${PREFIX}/share/examples/ucd-snmp
@for F in ${WRKSRC}/etc/* ; do \
${INSTALL_DATA} $$F ${PREFIX}/share/examples/ucd-snmp ; done
@if [ ! -f ${STARTUP_FILE} ]; then \
${ECHO} "Creating ${PREFIX}/etc/rc.d/snmpd.sh startup file."; \
${ECHO} "#!/bin/sh" > ${STARTUP_FILE}; \
${ECHO} "[ -x ${PREFIX}/sbin/snmpd ] && ${PREFIX}/sbin/snmpd && ${ECHO} -n ' snmpd'" >> ${STARTUP_FILE}; \
${CHMOD} 751 ${STARTUP_FILE}; \
fi
${SETENV} OBJFORMAT="${PORTOBJFORMAT}" ${LDCONFIG} -m ${PREFIX}/lib
.include <bsd.port.post.mk>