diff options
Diffstat (limited to 'meta/recipes-graphics/pango/pango_1.38.1.bb')
-rw-r--r-- | meta/recipes-graphics/pango/pango_1.38.1.bb | 47 |
1 files changed, 44 insertions, 3 deletions
diff --git a/meta/recipes-graphics/pango/pango_1.38.1.bb b/meta/recipes-graphics/pango/pango_1.38.1.bb index d85c17bd25..d408ef00e1 100644 --- a/meta/recipes-graphics/pango/pango_1.38.1.bb +++ b/meta/recipes-graphics/pango/pango_1.38.1.bb | |||
@@ -1,9 +1,50 @@ | |||
1 | require pango.inc | 1 | SUMMARY = "Framework for layout and rendering of internationalized text" |
2 | DESCRIPTION = "Pango is a library for laying out and rendering of text, \ | ||
3 | with an emphasis on internationalization. Pango can be used anywhere \ | ||
4 | that text layout is needed, though most of the work on Pango so far has \ | ||
5 | been done in the context of the GTK+ widget toolkit. Pango forms the \ | ||
6 | core of text and font handling for GTK+-2.x." | ||
7 | HOMEPAGE = "http://www.pango.org/" | ||
8 | BUGTRACKER = "http://bugzilla.gnome.org" | ||
9 | SECTION = "libs" | ||
10 | LICENSE = "LGPLv2.0+" | ||
2 | 11 | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7" | 12 | LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7" |
4 | 13 | ||
5 | SRC_URI += "file://run-ptest \ | 14 | SRC_URI += "file://run-ptest" |
6 | " | ||
7 | 15 | ||
8 | SRC_URI[archive.md5sum] = "7fde35d4a127b55ce8bbcefe109bc80d" | 16 | SRC_URI[archive.md5sum] = "7fde35d4a127b55ce8bbcefe109bc80d" |
9 | SRC_URI[archive.sha256sum] = "1320569f6c6d75d6b66172b2d28e59c56ee864ee9df202b76799c4506a214eb7" | 17 | SRC_URI[archive.sha256sum] = "1320569f6c6d75d6b66172b2d28e59c56ee864ee9df202b76799c4506a214eb7" |
18 | |||
19 | DEPENDS = "glib-2.0 glib-2.0-native fontconfig freetype virtual/libiconv cairo harfbuzz" | ||
20 | |||
21 | PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}" | ||
22 | PACKAGECONFIG[x11] = "--with-xft,--without-xft,virtual/libx11 libxft" | ||
23 | |||
24 | inherit gnomebase gtk-doc ptest-gnome upstream-version-is-even | ||
25 | |||
26 | EXTRA_AUTORECONF = "" | ||
27 | |||
28 | EXTRA_OECONF = "--disable-introspection \ | ||
29 | --disable-debug \ | ||
30 | " | ||
31 | |||
32 | LEAD_SONAME = "libpango-1.0*" | ||
33 | LIBV = "1.8.0" | ||
34 | |||
35 | # This binary needs to be compiled for the host architecture. This isn't pretty! | ||
36 | do_compile_prepend_class-target () { | ||
37 | if ${@base_contains('DISTRO_FEATURES', 'ptest', 'true', 'false', d)}; then | ||
38 | make CC="${BUILD_CC}" CFLAGS="" AM_CPPFLAGS="$(pkg-config-native --cflags glib-2.0)" gen_all_unicode_LDADD="$(pkg-config-native --libs glib-2.0)" -C ${B}/tests gen-all-unicode | ||
39 | fi | ||
40 | } | ||
41 | |||
42 | FILES_${PN} = "${bindir}/* ${libdir}/libpango*${SOLIBS}" | ||
43 | FILES_${PN}-dev += "${libdir}/pango/${LIBV}/modules/*.la" | ||
44 | |||
45 | RDEPENDS_${PN}-ptest += "liberation-fonts" | ||
46 | |||
47 | RPROVIDES_${PN} += "pango-modules pango-module-indic-lang \ | ||
48 | pango-module-basic-fc pango-module-arabic-lang" | ||
49 | |||
50 | BBCLASSEXTEND = "native" | ||