diff options
author | Koen Kooi <koen@openembedded.org> | 2007-09-29 07:53:07 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-09-29 07:53:07 +0000 |
commit | 76b89b40f88ff9dc89b6b9ad882900c3f8c63970 (patch) | |
tree | c1532c32c933fc46ced32016de7fcd4c35598200 /packages/gnome/libart-lgpl_2.3.19.bb | |
parent | 8cd45ca0a06cdccf07efae39e03656a68512637d (diff) |
packages/gnome: sync with poky, while maintaining OE tweaks like avahi and gnutls
Diffstat (limited to 'packages/gnome/libart-lgpl_2.3.19.bb')
-rw-r--r-- | packages/gnome/libart-lgpl_2.3.19.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/packages/gnome/libart-lgpl_2.3.19.bb b/packages/gnome/libart-lgpl_2.3.19.bb new file mode 100644 index 0000000000..a37b392593 --- /dev/null +++ b/packages/gnome/libart-lgpl_2.3.19.bb @@ -0,0 +1,30 @@ +DESCRIPTION = "Library of functions for 2D graphics" +SECTION = "x11/gnome" +LICENSE = "LGPL" + +ART_CONFIG = "${HOST_ARCH}/art_config.h" + +# can't use gnome.oeclass due to _ in filename +SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-${PV}.tar.bz2 \ + file://${ART_CONFIG} \ + file://Makefile.am.patch;patch=1" + +inherit autotools pkgconfig + +DEPENDS = "" + +FILES_${PN} = "${libdir}/*.so.*" +FILES_${PN}-dev += "${bindir}/libart2-config" + +S = "${WORKDIR}/libart_lgpl-${PV}" + +do_configure_prepend() { + cp ${WORKDIR}/${ART_CONFIG} ${S}/art_config.h +} + +EXTRA_OECONF = "--disable-gtk-doc" + +do_stage() { + autotools_stage_includes + oe_libinstall -a -so libart_lgpl_2 ${STAGING_LIBDIR} +} |