Add initial 1.14.4

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@790 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Ross Burton 2006-10-08 14:58:13 +00:00
parent 2b533ddbbb
commit 6cef27aac4
1 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,49 @@
LICENSE = "LGPL"
SECTION = "x11/libs"
# Xt needed to keep autoconf's check for X11 happy
DEPENDS = "glib-2.0 fontconfig freetype zlib libx11 libxft libxt gtk-doc cairo"
DESCRIPTION = "The goal of the Pango project is to provide an \
Open Source framework for the layout and rendering of \
internationalized text."
PR = "r0"
# seems to go wrong with default cflags
FULL_OPTIMIZATION_arm = "-O2"
SRC_URI = "http://download.gnome.org/sources/pango/1.14/pango-${PV}.tar.bz2 \
file://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.*"
LIBV = "1.5.0"
do_stage () {
for lib in pango pangox pangoft2 pangoxft pangocairo; do
oe_libinstall -so -C pango lib$lib-1.0 ${STAGING_LIBDIR}/
done
install -d ${STAGING_INCDIR}/pango
install -m 0644 ${S}/pango/pango*.h ${STAGING_INCDIR}/pango/
}
postinst_prologue() {
if [ "x$D" != "x" ]; then
exit 1
fi
}
PACKAGES_DYNAMIC = "pango-module-*"
python populate_packages_prepend () {
prologue = bb.data.getVar("postinst_prologue", d, 1)
modules_root = bb.data.expand('${libdir}/pango/${LIBV}/modules', d)
do_split_packages(d, modules_root, '^pango-(.*)\.so$', 'pango-module-%s', 'Pango module %s', prologue + 'pango-querymodules > /etc/pango/pango.modules')
}