diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-07-02 14:24:33 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-05 13:34:02 +0100 |
commit | d0b55fb8115c5ad311ed5ad3192902f7746d5cca (patch) | |
tree | a52cd67e03d19141a455fb3009458183b187f4e9 | |
parent | bc73fa1256d678c09c0d9b50e0153623861dcf32 (diff) | |
download | openembedded-core-d0b55fb8115c5ad311ed5ad3192902f7746d5cca.tar.gz openembedded-core-d0b55fb8115c5ad311ed5ad3192902f7746d5cca.tar.bz2 openembedded-core-d0b55fb8115c5ad311ed5ad3192902f7746d5cca.zip |
libxml-parser-perl: convert to BBCLASSEXTEND, merge in OE fixes
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/perl/libxml-parser-perl-native_2.40.bb | 7 | ||||
-rw-r--r-- | meta/recipes-devtools/perl/libxml-parser-perl_2.40.bb | 15 |
2 files changed, 11 insertions, 11 deletions
diff --git a/meta/recipes-devtools/perl/libxml-parser-perl-native_2.40.bb b/meta/recipes-devtools/perl/libxml-parser-perl-native_2.40.bb deleted file mode 100644 index 8c2045567f..0000000000 --- a/meta/recipes-devtools/perl/libxml-parser-perl-native_2.40.bb +++ /dev/null @@ -1,7 +0,0 @@ -SECTION = "libs" - -require libxml-parser-perl_${PV}.bb - -inherit native - -DEPENDS += "expat-native" diff --git a/meta/recipes-devtools/perl/libxml-parser-perl_2.40.bb b/meta/recipes-devtools/perl/libxml-parser-perl_2.40.bb index 3c8f1c9ab9..3f1a0ad500 100644 --- a/meta/recipes-devtools/perl/libxml-parser-perl_2.40.bb +++ b/meta/recipes-devtools/perl/libxml-parser-perl_2.40.bb @@ -1,12 +1,13 @@ +DESCRIPTION = "XML::Parser - A perl module for parsing XML documents" SECTION = "libs" LICENSE = "Artistic" LIC_FILES_CHKSUM = "file://README;beginline=2;endline=6;md5=c8767d7516229f07b26e42d1cf8b51f1" + DEPENDS += "expat expat-native" -PR = "r2" +PR = "r3" SRC_URI = "http://www.cpan.org/modules/by-module/XML/XML-Parser-${PV}.tar.gz" - SRC_URI[md5sum] = "c66e9adba003d0667cc40115ccd837a5" SRC_URI[sha256sum] = "e5e433684e799ef7b6b852c0ca31b71054717628555444d3dc9fceac0df71512" @@ -16,10 +17,16 @@ EXTRA_CPANFLAGS = "EXPATLIBPATH=${STAGING_LIBDIR} EXPATINCPATH=${STAGING_INCDIR} inherit cpan -FILES_${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/XML/Parser/Expat/.debug/" - do_compile() { export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" cpan_do_compile } +do_compile_virtclass-native() { + cpan_do_compile +} + +FILES_${PN}-dbg += "${libdir}/perl/vendor_perl/*/auto/XML/Parser/Expat/.debug/" + +BBCLASSEXTEND="native" + |