37 lines
1.4 KiB
Text
37 lines
1.4 KiB
Text
# Template build file for 'net-snmp'.
|
|
pkgname=net-snmp
|
|
version=5.7.1
|
|
revision=2
|
|
distfiles="$SOURCEFORGE_SITE/$pkgname/$pkgname-$version.tar.gz"
|
|
depends="python"
|
|
makedepends="bzip2-devel openssl-devel libnl-devel pciutils-devel python-devel python-distribute"
|
|
fulldepends="perl>=5.16"
|
|
subpackages="lib${pkgname} $pkgname-devel"
|
|
short_desc="Simple Network Management Protocol (SNMP) suite"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://www.net-snmp.org/"
|
|
license="BSD"
|
|
checksum=7c71c9650c65b715356547e20ca2dbe6313944278af8cc19c32a5337f46b181f
|
|
long_desc="
|
|
Simple Network Management Protocol (SNMP) is a widely used protocol for monitoring
|
|
the health and welfare of network equipment (eg. routers), computer equipment and
|
|
even devices like UPSs. Net-SNMP is a suite of applications used to implement
|
|
SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6."
|
|
|
|
do_configure() {
|
|
./configure ${CONFIGURE_SHARED_ARGS} --enable-ucd-snmp-compatibility \
|
|
--enable-ipv6 --with-python-modules --with-default-snmp-version="3" \
|
|
--with-sys-contact="root@localhost" --with-sys-location="Unknown" \
|
|
--with-logfile=/var/log/snmpd.log \
|
|
--with-mib-modules="host misc/ipfwacc ucd-snmp/diskio tunnel ucd-snmp/dlmod" \
|
|
--with-persistent-directory=/var/net-snmp --disable-static
|
|
}
|
|
|
|
do_build() {
|
|
make ${makejobs} NETSNMP_DONT_CHECK_VERSION=1
|
|
}
|
|
|
|
do_install() {
|
|
make DESTDIR=${DESTDIR} INSTALL_PREFIX=${DESTDIR} \
|
|
INSTALLDIRS=vendor install
|
|
}
|