summaryrefslogtreecommitdiff
path: root/net-mgmt/net-snmp/Makefile
blob: 82283d4a27abf7ca46288c896ea86374b9a1e20b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# 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>