blob: 1f80cbcef4041355dc444ec5f79ee9899e881453 (
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
|
require net-snmp.inc
PR = "${INC_PR}.1"
SRC_URI = "${SOURCEFORGE_MIRROR}/net-snmp/net-snmp-${PV}.tar.gz \
file://configure-tail.patch \
file://CVE-2008-6123.patch \
file://init \
file://snmpd.conf \
file://snmptrapd.conf"
EXTRA_OECONF = "--enable-shared --disable-manuals --with-defaults \
--disable-embedded-perl --with-perl-modules=no"
EXTRA_OEMAKE = "INSTALL_PREFIX=${D}"
do_configure_prepend() {
gnu-configize -f
# We better change sources and re-autoconf here, but
# required autoconf is too new for us.
sed -e '/echo.*\".*\\\\.*\"/s/echo/echo -e/g' \
-e 's/tail -1/tail -n 1/g' \
-i configure
#The tarball for v5.4.2.1 is missing config.sub
cp ${STAGING_DATADIR_NATIVE}/gnu-config/config.sub ${S}
}
PARALLEL_MAKE = ""
CCACHE = ""
SRC_URI[md5sum] = "984932520143f0c8bf7b7ce1fc9e1da1"
SRC_URI[sha256sum] = "11a8baf167f7bfff60d2590e050991400a3a082923dbcdbf85e0e0ce46eb247c"
|