diff options
author | Graeme Gregory <dp@xora.org.uk> | 2006-07-10 08:26:25 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-07-10 08:26:25 +0000 |
commit | 581dcc72a26490e33f74ace76d655fe1fe6f3193 (patch) | |
tree | 55e60852106308cb5eca42c9915d87f74fe6cb1e /packages | |
parent | c2bdc8f634ee7b2e649243b030b632ee76d2345b (diff) |
fontconfig_2.3.95.bb : new version of fontconfig
autoconf/Makefile magic internall seems to do the right thing in cross
compile situations so this one doesnt need a matching fontconfig-native.
I have left at DEFAULT_PREFERENCE = "-1" to allow for proper evaluation
as this library is fairly core.
This version seems to cure the masses of alignment errors I was getting
using previous versions.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/fontconfig/fontconfig_2.3.95.bb | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/packages/fontconfig/fontconfig_2.3.95.bb b/packages/fontconfig/fontconfig_2.3.95.bb new file mode 100644 index 0000000000..57f8489a6c --- /dev/null +++ b/packages/fontconfig/fontconfig_2.3.95.bb @@ -0,0 +1,51 @@ +SECTION = "libs" +LICENSE = "BSD" +DESCRIPTION = "A library for configuring and customizing font access." +DEPENDS = "expat freetype freetype-native zlib" + +SRC_URI = "http://fontconfig.org/release/fontconfig-${PV}.tar.gz" + +PR = "r0" + +PACKAGES =+ "fontconfig-utils " +FILES_fontconfig-utils = "${bindir}/*" + +DEFAULT_PREFERENCE = "-1" + +# Work around past breakage in debian.bbclass +RPROVIDES_fontconfig-utils = "libfontconfig-utils" +RREPLACES_fontconfig-utils = "libfontconfig-utils" +RCONFLICTS_fontconfig-utils = "libfontconfig-utils" +DEBIAN_NOAUTONAME_fontconfig-utils = "1" + +S = "${WORKDIR}/fontconfig-${PV}" + +inherit autotools pkgconfig + +export HASDOCBOOK="no" + +EXTRA_OECONF = " --disable-docs " +EXTRA_OEMAKE = "FC_LANG=fc-lang FC_GLYPHNAME=fc-glyphname" + +# The tarball has some of the patched files as read only, which +# patch doesn't like at all + +fontconfig_do_unpack() { + chmod -R u+rw ${S} +} + +python do_unpack () { + bb.build.exec_func('base_do_unpack', d) + bb.build.exec_func('fontconfig_do_unpack', d) +} + +do_stage () { + oe_libinstall -so -a -C src libfontconfig ${STAGING_LIBDIR} + install -d ${STAGING_INCDIR}/fontconfig + for i in ${S}/fontconfig/*.h; do install -m 0644 $i ${STAGING_INCDIR}/fontconfig/; done +} + +do_install () { + autotools_do_install +} + |