summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/libxml/libxml2.inc
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:14:24 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-27 15:29:45 +0100
commit29d6678fd546377459ef75cf54abeef5b969b5cf (patch)
tree8edd65790e37a00d01c3f203f773fe4b5012db18 /meta/recipes-core/libxml/libxml2.inc
parentda49de6885ee1bc424e70bc02f21f6ab920efb55 (diff)
downloadpoky-29d6678fd546377459ef75cf54abeef5b969b5cf.tar.gz
Major layout change to the packages directory
Having one monolithic packages directory makes it hard to find things and is generally overwhelming. This commit splits it into several logical sections roughly based on function, recipes.txt gives more information about the classifications used. The opportunity is also used to switch from "packages" to "recipes" as used in OpenEmbedded as the term "packages" can be confusing to people and has many different meanings. Not all recipes have been classified yet, this is just a first pass at separating things out. Some packages are moved to meta-extras as they're no longer actively used or maintained. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-core/libxml/libxml2.inc')
-rw-r--r--meta/recipes-core/libxml/libxml2.inc43
1 files changed, 43 insertions, 0 deletions
diff --git a/meta/recipes-core/libxml/libxml2.inc b/meta/recipes-core/libxml/libxml2.inc
new file mode 100644
index 0000000000..5aba6a7875
--- /dev/null
+++ b/meta/recipes-core/libxml/libxml2.inc
@@ -0,0 +1,43 @@
1DESCRIPTION = "GNOME XML Parser library"
2HOMEPAGE = "http://www.xmlsoft.org/"
3BUGTRACKER = "http://bugzilla.gnome.org/buglist.cgi?product=libxml2"
4SECTION = "libs"
5PRIORITY = "optional"
6LICENSE = "MIT"
7LIC_FILES_CHKSUM = "file://COPYING;md5=bb90c48926316d9af6e2d70ca7013ade \
8 file://hash.c;beginline=6;endline=15;md5=ce702952bfddd7aee22639a2d6b54136 \
9 file://list.c;beginline=4;endline=13;md5=cdbfa3dee51c099edb04e39f762ee907 \
10 file://trio.c;beginline=5;endline=14;md5=6c025753c86d958722ec76e94cae932e"
11
12DEPENDS_virtclass-native = "python-native"
13DEPENDS =+ "zlib"
14
15SRC_URI = "ftp://xmlsoft.org/libxml2/libxml2-${PV}.tar.gz \
16 file://libxml-64bit.patch"
17
18
19inherit autotools pkgconfig binconfig
20
21EXTRA_OECONF = "--without-python --without-debug --without-legacy --without-catalog --without-docbook --with-c14n"
22EXTRA_OECONF_virtclass-native = "--with-python=${STAGING_BINDIR}/python --without-debug --without-legacy --with-catalog --without-docbook --with-c14n"
23
24# required for pythong binding
25export HOST_SYS
26export BUILD_SYS
27export STAGING_LIBDIR
28export STAGING_INCDIR
29
30export LDFLAGS += "-ldl"
31
32python populate_packages_prepend () {
33 # autonamer would call this libxml2-2, but we don't want that
34 if bb.data.getVar('DEBIAN_NAMES', d, 1):
35 bb.data.setVar('PKG_libxml2', 'libxml2', d)
36}
37
38PACKAGES = "${PN}-dbg ${PN}-dev ${PN}-utils ${PN} ${PN}-doc ${PN}-locale"
39
40FILES_${PN}-dev += "${bindir}/*-config ${libdir}/xml2Conf.sh"
41FILES_${PN}-utils += "${bindir}/*"
42
43BBCLASSEXTEND = "native"