aboutsummaryrefslogtreecommitdiffstats
path: root/pango
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-05-10 00:52:47 +0000
committerChris Larson <clarson@kergoth.com>2004-05-10 00:52:47 +0000
commitcb2f160c0ebcbf8421988e7ee9818e007e085305 (patch)
tree7b25aca42bcde8335efe58709261da5ca5504f70 /pango
parente18dbb2be3143c54092ca6025161cbc750990b0a (diff)
downloadopenembedded-cb2f160c0ebcbf8421988e7ee9818e007e085305.tar.gz
Merge openembedded@openembedded.bkbits.net:packages
into linux.local:/home/kergoth/code/packages 2004/05/09 20:52:43-04:00 local!kergoth Libtool updates, no longer directly inherit libtool. 2004/05/09 20:52:08-04:00 local!kergoth Update libtool bits. libtoolize no longer requires a runtime STAGING_DIR var set. BKrev: 409ed25fQy7BIGJH5qwdtr0BClqFVw
Diffstat (limited to 'pango')
-rw-r--r--pango/pango_1.2.5.oe2
-rw-r--r--pango/pango_1.4.0.oe36
2 files changed, 37 insertions, 1 deletions
diff --git a/pango/pango_1.2.5.oe b/pango/pango_1.2.5.oe
index 64255ac34d..ea5931f694 100644
--- a/pango/pango_1.2.5.oe
+++ b/pango/pango_1.2.5.oe
@@ -8,7 +8,7 @@ SRC_URI = "http://ftp.gnome.org/pub/gnome/sources/pango/1.2/pango-${PV}.tar.bz2
file://${FILESDIR}/m4.patch;patch=1 \
file://${FILESDIR}/no-tests.patch;patch=1"
-inherit autotools libtool pkgconfig
+inherit autotools pkgconfig
EXTRA_OECONF = "--disable-glibtest \
--enable-explicit-deps=no"
diff --git a/pango/pango_1.4.0.oe b/pango/pango_1.4.0.oe
index e69de29bb2..602ebfc7aa 100644
--- a/pango/pango_1.4.0.oe
+++ b/pango/pango_1.4.0.oe
@@ -0,0 +1,36 @@
+# Xt needed to keep autoconf's check for X11 happy
+DEPENDS = "virtual/libc glib-2.0 fontconfig freetype zlib x11 xft xt"
+DESCRIPTION = "The goal of the Pango project is to provide an \
+Open Source framework for the layout and rendering of \
+internationalized text."
+
+SRC_URI = "ftp://ftp.gtk.org/pub/gtk/v2.4/pango-${PV}.tar.bz2 \
+ file://${FILESDIR}/gtk-doc.patch;patch=1 \
+ file://${FILESDIR}/no-tests.patch;patch=1"
+
+inherit autotools pkgconfig
+
+EXTRA_OECONF = "--disable-glibtest \
+ --enable-explicit-deps=no \
+ --disable-debug"
+
+FILES_${PN} = "/etc ${bindir} ${libdir}/libpango*.so.*"
+
+SOV = "0.399.1"
+LIBV = "1.4.0"
+
+do_stage () {
+ for lib in pango pangox pangoft2 pangoxft; do
+ oe_soinstall pango/.libs/lib$lib-1.0.so.${SOV} ${STAGING_LIBDIR}/
+ install -m 0644 pango/.libs/lib$lib-1.0.lai ${STAGING_LIBDIR}/lib$lib-1.0.la
+ install -m 0644 pango/.libs/lib$lib-1.0.a ${STAGING_LIBDIR}/
+ done
+ install -d ${STAGING_INCDIR}/pango
+ install -m 0644 ${S}/pango/pango*.h ${STAGING_INCDIR}/pango/
+}
+
+python populate_packages_prepend () {
+ modules_root = oe.data.expand('${libdir}/pango/${LIBV}/modules', d)
+
+ do_split_packages(d, modules_root, '^pango-(.*)\.so$', 'pango-module-%s', 'Pango module %s', 'pango-querymodules > /etc/pango/pango.modules')
+}