blob: c9de0b1c910334701680937dbca840ea1c241860 (
plain)
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
|
# $NetBSD: Makefile,v 1.10 1999/04/05 00:59:07 hubertf Exp $
# FreeBSD Id: Makefile,v 1.18 1998/04/06 20:50:31 andreas Exp
#
DISTNAME= ucd-snmp-3.6.1
CATEGORIES= net
MASTER_SITES= ftp://ucd-snmp.ucdavis.edu/ \
ftp://sunsite.cnlab-switch.ch/mirror/ucd-snmp/
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.ece.ucdavis.edu/ucd-snmp/
BUILD_DEPENDS+= autoconf:../../devel/autoconf
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-defaults
CONFIGURE_ARGS+= --with-libwrap
# note the default appends a redundant and silly ".log"
CONFIGURE_ARGS+= --with-logfile="/var/log/snmpd"
# this might make it easier to use scotty's mibs, and local ones too
CONFIGURE_ARGS+= --with-mibdirs="${PREFIX}/share/snmp/mibs:${PREFIX}/lib/tnm2.1.8/mibs:/usr/local/share/snmp/mibs"
# pass down PKG_PREFIX to simulate pkg_add's environment
MAKE_ENV+= PKG_PREFIX="${PREFIX}"
.include "../../mk/bsd.prefs.mk"
# XXX This most horrible hack is necessary because of the stupid linker's
# insistence on requiring that all externals referenced from a shared library
# be defined, even if nothing elese from the library is ever used. In this
# case the libwrap.so library is at fault as it references 'deny_severity' and
# 'allow_severity', but none of the configure tests will include this, nor
# indeed will any product binary except for snmpd (which is the only one that
# actualy uses tcp_wrappers).
#
# /usr/libexec/ld.so: Undefined symbol "_deny_severity" in conftest:/usr/lib/libwrap.so.0.0
#
CFLAGS+= -static
pre-configure:
(cd ${WRKSRC}; autoreconf --force)
# Need to run INSTALL script as this doesn't happen automagically from pkgsrc.
post-install:
@${MKDIR} ${PREFIX}/share/examples/ucd-snmp
@for F in ${WRKSRC}/etc/* ; do \
${INSTALL_DATA} $$F ${PREFIX}/share/examples/ucd-snmp ; \
done
${ECHO} "Creating ${PREFIX}/etc/rc.d/snmpd.sh startup file."; \
${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/snmpd.sh; \
${ECHO} "[ -x ${PREFIX}/sbin/snmpd ] && ${PREFIX}/sbin/snmpd && ${ECHO} -n ' snmpd'" >> ${PREFIX}/etc/rc.d/snmpd.sh
${CHMOD} 755 ${PREFIX}/etc/rc.d/snmpd.sh
${INSTALL_DATA_DIR} ${PREFIX}/lib/snmp/dlmod
${TOUCH} ${PREFIX}/lib/snmp/dlmod/.keepme
.include "../../mk/bsd.pkg.mk"
|