summaryrefslogtreecommitdiff
path: root/gnome/libart-lgpl_2.3.16.oe
diff options
context:
space:
mode:
authorMatthias Hentges <oe@hentges.net>2004-10-11 16:36:01 +0000
committerMatthias Hentges <oe@hentges.net>2004-10-11 16:36:01 +0000
commitbd068236207dee9373f5d559c88325de3446d53b (patch)
treebea490798b7aec80d96272f621898b8cb8c82efe /gnome/libart-lgpl_2.3.16.oe
parent96379cf2ff7c66a2ab2f1e57e17c88b9860e5c75 (diff)
Merge bk://openembedded@openembedded.bkbits.net/packages
into mhcln01.hentges.local:/home/mhentges/OpenEmbedded/packages 2004/10/11 18:35:17+02:00 local!CoreDump The mother of all section fixes! Gives a SECTION entry to (almost) all packages which were missing it (and thus were having a section of *base*). I have placed all packages unknown to me into the *unknown* section (and yes, i *am* to lazy to look them up), please fix. BKrev: 416ab6716BWMm_ae6D2MValq-LDFzw
Diffstat (limited to 'gnome/libart-lgpl_2.3.16.oe')
-rw-r--r--gnome/libart-lgpl_2.3.16.oe71
1 files changed, 71 insertions, 0 deletions
diff --git a/gnome/libart-lgpl_2.3.16.oe b/gnome/libart-lgpl_2.3.16.oe
index e69de29bb2..9e5770f68c 100644
--- a/gnome/libart-lgpl_2.3.16.oe
+++ b/gnome/libart-lgpl_2.3.16.oe
@@ -0,0 +1,71 @@
+SECTION = "libs"
+SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-${PV}.tar.bz2 \
+ file://${HOST_SYS}/art_config.h \
+ file://Makefile.am.patch;patch=1"
+
+inherit autotools pkgconfig
+
+DEPENDS = ""
+
+S = "${WORKDIR}/libart_lgpl-${PV}"
+
+do_configure_prepend() {
+ cp ${WORKDIR}/${HOST_SYS}/art_config.h ${S}
+}
+
+EXTRA_OECONF = "--disable-gtk-doc"
+
+HEADERS = " \
+art_affine.h \
+art_alphagamma.h \
+art_bpath.h \
+art_config.h \
+art_filterlevel.h \
+art_gray_svp.h \
+art_misc.h \
+art_pathcode.h \
+art_pixbuf.h \
+art_point.h \
+art_rect.h \
+art_rect_svp.h \
+art_rect_uta.h \
+art_render.h \
+art_render_gradient.h \
+art_render_mask.h \
+art_render_svp.h \
+art_rgb.h \
+art_rgb_affine.h \
+art_rgb_bitmap_affine.h \
+art_rgb_pixbuf_affine.h \
+art_rgb_rgba_affine.h \
+art_rgb_a_affine.h \
+art_rgb_svp.h \
+art_rgba.h \
+art_svp.h \
+art_svp_intersect.h \
+art_svp_ops.h \
+art_svp_point.h \
+art_svp_render_aa.h \
+art_svp_vpath.h \
+art_svp_vpath_stroke.h \
+art_svp_wind.h \
+art_uta.h \
+art_uta_ops.h \
+art_uta_rect.h \
+art_uta_vpath.h \
+art_uta_svp.h \
+art_vpath.h \
+art_vpath_bpath.h \
+art_vpath_dash.h \
+art_vpath_svp.h \
+libart.h \
+libart-features.h \
+"
+
+do_stage() {
+ install -d ${STAGING_INCDIR}/libart-2.0/libart_lgpl
+ for i in ${HEADERS}; do
+ install -m 0644 $i ${STAGING_INCDIR}/libart-2.0/libart_lgpl/$i
+ done
+ oe_libinstall -a -so libart_lgpl_2 ${STAGING_LIBDIR}
+}