diff options
| author | Chris Lord <chris@openedhand.com> | 2006-02-01 09:52:55 +0000 |
|---|---|---|
| committer | Chris Lord <chris@openedhand.com> | 2006-02-01 09:52:55 +0000 |
| commit | da8ed2882801ca513eef5b696de14ea99c485354 (patch) | |
| tree | ad43f2132fd8896e1c2c4aefe75ad572273d469a /openembedded/packages/libxml/libxml2_cvs.bb | |
| parent | 27700c91dd31d47332e6533241982d856772e08b (diff) | |
| download | poky-da8ed2882801ca513eef5b696de14ea99c485354.tar.gz | |
Add libsoup, libspidermonkey, libxml2 cvs, patched gtkhtml2 and web
packages
git-svn-id: https://svn.o-hand.com/repos/poky@245 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/libxml/libxml2_cvs.bb')
| -rw-r--r-- | openembedded/packages/libxml/libxml2_cvs.bb | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/openembedded/packages/libxml/libxml2_cvs.bb b/openembedded/packages/libxml/libxml2_cvs.bb new file mode 100644 index 0000000000..1b746cce86 --- /dev/null +++ b/openembedded/packages/libxml/libxml2_cvs.bb | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | DEFAULT_PREFERENCE = "-1" | ||
| 2 | PR = "r0" | ||
| 3 | DESCRIPTION = "GNOME XML library" | ||
| 4 | SECTION = "libs" | ||
| 5 | PRIORITY = "optional" | ||
| 6 | MAINTAINER = "Phil Blundell <pb@handhelds.org>" | ||
| 7 | LICENSE = "MIT" | ||
| 8 | PACKAGES = "${PN}-dev ${PN}-utils ${PN} ${PN}-doc ${PN}-locale" | ||
| 9 | |||
| 10 | FILES_${PN}-dev += "${bindir}/xml-config" | ||
| 11 | FILES_${PN}-utils += "${bindir}" | ||
| 12 | |||
| 13 | PV = "2.6.23+cvs-${CVSDATE}" | ||
| 14 | S = "${WORKDIR}/${PN}" | ||
| 15 | SRC_URI = "cvs://anonymous@anoncvs.gnome.org/cvs/gnome;module=libxml2" | ||
| 16 | |||
| 17 | inherit autotools pkgconfig | ||
| 18 | |||
| 19 | EXTRA_OECONF = "--without-python --without-debug --without-legacy --with-schemas --without-catalog --without-docbook --without-c14n" | ||
| 20 | |||
| 21 | headers = "DOCBparser.h HTMLparser.h HTMLtree.h SAX.h SAX2.h c14n.h catalog.h chvalid.h debugXML.h dict.h encoding.h entities.h globals.h hash.h list.h nanoftp.h nanohttp.h parser.h parserInternals.h pattern.h relaxng.h schemasInternals.h threads.h tree.h uri.h valid.h xinclude.h xlink.h xmlIO.h xmlautomata.h xmlerror.h xmlexports.h xmlmemory.h xmlreader.h xmlregexp.h xmlschemas.h xmlschemastypes.h xmlstring.h xmlunicode.h xmlversion.h xmlwriter.h xpath.h xpathInternals.h xpointer.h" | ||
| 22 | |||
| 23 | do_stage () { | ||
| 24 | oe_libinstall -so libxml2 ${STAGING_LIBDIR} | ||
| 25 | |||
| 26 | mkdir -p ${STAGING_INCDIR}/libxml2/libxml | ||
| 27 | for i in ${headers}; do | ||
| 28 | install -m 0644 include/libxml/$i ${STAGING_INCDIR}/libxml2/libxml/$i | ||
| 29 | done | ||
| 30 | |||
| 31 | cat xml2-config | sed -e "s,^prefix=.*,prefix=${STAGING_BINDIR}/..," \ | ||
| 32 | -e "s,^exec_prefix=.*,exec_prefix=${STAGING_BINDIR}/..," \ | ||
| 33 | -e "s,^includedir=.*,includedir=${STAGING_INCDIR}," \ | ||
| 34 | -e "s,^libdir=.*,libdir=${STAGING_LIBDIR}," > ${STAGING_BINDIR}/xml2-config | ||
| 35 | chmod a+rx ${STAGING_BINDIR}/xml2-config | ||
| 36 | install -m 0644 libxml.m4 ${STAGING_DATADIR}/aclocal/ | ||
| 37 | } | ||
| 38 | |||
| 39 | python populate_packages_prepend () { | ||
| 40 | # autonamer would call this libxml2-2, but we don't want that | ||
| 41 | if bb.data.getVar('DEBIAN_NAMES', d, 1): | ||
| 42 | bb.data.setVar('PKG_libxml2', 'libxml2', d) | ||
| 43 | } | ||
