From: Jan Lübbe Date: Wed, 9 Sep 2009 13:57:50 +0000 (+0000) Subject: net-snmp: add recipe for perl bindings X-Git-Tag: Release-2010-05/1~2404 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6adf15ce211e6111567fa66a282ffcaae4fa58c7;p=openembedded.git net-snmp: add recipe for perl bindings It seems hard to convince net-snmp's build system to crossbuild the perl bindings, so i use a new recipe. --- diff --git a/recipes/net-snmp/libsnmp-perl_5.4.2.1.bb b/recipes/net-snmp/libsnmp-perl_5.4.2.1.bb new file mode 100644 index 0000000000..135260132a --- /dev/null +++ b/recipes/net-snmp/libsnmp-perl_5.4.2.1.bb @@ -0,0 +1,13 @@ +DESCRIPTION = "Perl module from net-snmp" +SECTION = "libs" +LICENSE = "BSD" +DEPENDS = "net-snmp" +PR = "r0" + +SRC_URI = "${SOURCEFORGE_MIRROR}/net-snmp/net-snmp-${PV}.tar.gz" + +S = "${WORKDIR}/net-snmp-${PV}/perl" + +inherit cpan + +EXTRA_CPANFLAGS = "-NET-SNMP-CONFIG=\"sh ${STAGING_BINDIR}/net-snmp-config\"" diff --git a/recipes/net-snmp/libsnmp-perl_svn.bb b/recipes/net-snmp/libsnmp-perl_svn.bb new file mode 100644 index 0000000000..729a3d944b --- /dev/null +++ b/recipes/net-snmp/libsnmp-perl_svn.bb @@ -0,0 +1,13 @@ +DESCRIPTION = "Perl module from net-snmp" +SECTION = "libs" +LICENSE = "BSD" +DEPENDS = "net-snmp" +PR = "r2" + +SRC_URI = "svn://net-snmp.svn.sourceforge.net/svnroot/net-snmp/trunk;rev=17367;module=net-snmp;proto=https" + +S = "${WORKDIR}/net-snmp/perl" + +inherit cpan + +EXTRA_CPANFLAGS = "-NET-SNMP-CONFIG=${STAGING_BINDIR}/net-snmp-config -NET-SNMP-IN-SOURCE=false"