diff options
Diffstat (limited to 'recipes/net-snmp/net-snmp_5.4.2.1.bb')
-rw-r--r-- | recipes/net-snmp/net-snmp_5.4.2.1.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/recipes/net-snmp/net-snmp_5.4.2.1.bb b/recipes/net-snmp/net-snmp_5.4.2.1.bb new file mode 100644 index 0000000000..3c51a5fa3c --- /dev/null +++ b/recipes/net-snmp/net-snmp_5.4.2.1.bb @@ -0,0 +1,26 @@ +require net-snmp.inc + +SRC_URI = "${SOURCEFORGE_MIRROR}/net-snmp/net-snmp-${PV}.tar.gz \ + file://configure-tail.patch;patch=1 \ + 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 = "" |