mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 10:43:02 +01:00
- include /usr/share/aclocal/intltool.m4 into the intltool package (the files from intltool-dev must be included into the main package, as intltool is a development tool) - add missing rdepends: gettext-dev, libxml-parser-perl [YOCTO #2597] (From OE-Core rev: f5f3d3fb14e983af114afc6425dc339053927f25) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
823 B
PHP
28 lines
823 B
PHP
DESCRIPTION = "Utility scripts for internationalizing XML"
|
|
SECTION = "devel"
|
|
LICENSE = "GPLv2"
|
|
|
|
URLV="${@'.'.join(d.getVar('PV',1).split('.')[0:2])}"
|
|
SRC_URI = "http://launchpad.net/${BPN}/trunk/${PV}/+download/${BP}.tar.gz"
|
|
S = "${WORKDIR}/intltool-${PV}"
|
|
|
|
DEPENDS = "libxml-parser-perl-native"
|
|
RDEPENDS_${PN} = "gettext-dev libxml-parser-perl"
|
|
DEPENDS_virtclass-native = "libxml-parser-perl-native"
|
|
# gettext is assumed to exist on the host
|
|
RDEPENDS_${PN}_virtclass-native = "libxml-parser-perl-native"
|
|
RRECOMMENDS_${PN} = "perl-modules"
|
|
RRECOMMENDS_${PN}_virtclass-native = ""
|
|
|
|
FILES_${PN}-dev = ""
|
|
FILES_${PN} += "${datadir}/aclocal"
|
|
|
|
INSANE_SKIP_${PN} += "dev-deps"
|
|
|
|
inherit autotools pkgconfig perlnative
|
|
|
|
export PERL = "${bindir}/env perl"
|
|
PERL_virtclass-native = "/usr/bin/env nativeperl"
|
|
|
|
BBCLASSEXTEND = "native"
|