55 lines
1.6 KiB
Bash
55 lines
1.6 KiB
Bash
# Template file for 'net-snmp'
|
|
pkgname=net-snmp
|
|
version=5.8
|
|
revision=4
|
|
hostmakedepends="pkg-config unzip"
|
|
makedepends="bzip2-devel libressl-devel libnl-devel pciutils-devel
|
|
libsensors-devel pcre-devel"
|
|
short_desc="Simple Network Management Protocol (SNMP) suite"
|
|
maintainer="Juan RP <xtraeme@voidlinux.org>"
|
|
license="Net-SNMP"
|
|
homepage="http://www.net-snmp.org/"
|
|
distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum=b2fc3500840ebe532734c4786b0da4ef0a5f67e51ef4c86b3345d697e4976adf
|
|
|
|
LDFLAGS="-lpthread"
|
|
|
|
do_configure() {
|
|
# Stop GNU grep from being stupid, and recognizing source code
|
|
# as binaries, resulting in further greps on that output to
|
|
# lack magic words.
|
|
export GREP='grep -a'
|
|
|
|
./configure ${configure_args} --enable-ucd-snmp-compatibility \
|
|
--enable-ipv6 --with-default-snmp-version="3" \
|
|
--with-sys-contact="root@localhost" --with-sys-location="Unknown" \
|
|
--with-logfile=/var/log/snmpd.log --sbindir=/usr/bin \
|
|
--with-mib-modules="host misc/ipfwacc ucd-snmp/diskio tunnel ucd-snmp/dlmod ucd-snmp/lmsensorsMib" \
|
|
--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
|
|
}
|
|
|
|
libnet-snmp_package() {
|
|
short_desc+=" - shared libraries"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
|
|
net-snmp-devel_package() {
|
|
depends="libnet-snmp>=${version}_${revision} libressl-devel"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/bin/net-snmp-config
|
|
vmove usr/include
|
|
vmove usr/share/man/man3
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|