mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 07:19:39 +01:00
Fixes [YOCTO #1514] Without a native dependency on libxml-parser-perl-native, shared-mime-info-native can fail its do_configure task. checking for XML::Parser... configure: error: XML::Parser perl module is required for intltool Testing: Successfully built shared-mime-info and shared-mime-info-native for qemuppc. (From OE-Core rev: 51b1df89828e677232e125181209b26d3c5ec928) Signed-off-by: Darren Hart <dvhart@linux.intel.com> CC: Joshua Lock <josh@linux.intel.com> CC: Richard Purdie <richard.purdie@linuxfoundation.org> CC: Koen Kooi <koen@dominion.thruhere.net> CC: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
21 lines
618 B
PHP
21 lines
618 B
PHP
DESCRIPTION = "Utility scripts for internationalizing XML"
|
|
SECTION = "devel"
|
|
LICENSE = "GPLv2"
|
|
|
|
URLV="${@'.'.join(bb.data.getVar('PV',d,1).split('.')[0:2])}"
|
|
SRC_URI = "${GNOME_MIRROR}/intltool/${URLV}/intltool-${PV}.tar.bz2"
|
|
S = "${WORKDIR}/intltool-${PV}"
|
|
|
|
DEPENDS = "libxml-parser-perl-native"
|
|
DEPENDS_virtclass-native = "libxml-parser-perl-native"
|
|
#RDEPENDS_${PN} = "libxml-parser-perl"
|
|
RRECOMMENDS_${PN} = "perl-modules"
|
|
RRECOMMENDS_${PN}_virtclass-native = ""
|
|
|
|
inherit autotools pkgconfig perlnative
|
|
|
|
export PERL = "${bindir}/env perl"
|
|
PERL_virtclass-native = "/usr/bin/env nativeperl"
|
|
|
|
BBCLASSEXTEND = "native"
|