diff options
author | Xiaofeng Yan <xiaofeng.yan@windriver.com> | 2011-12-12 19:28:37 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-13 12:28:10 +0000 |
commit | 627b230f56183be59c04e475c2ded9479d6a465e (patch) | |
tree | c512f124876c9ca9788f4601790fe301d3360676 /meta/recipes-graphics/pango/pango.inc | |
parent | f1a487873c82bf56cd27e6e23f08c29ed3a00d50 (diff) | |
download | poky-627b230f56183be59c04e475c2ded9479d6a465e.tar.gz |
pango: Disable x11 when pango doesn't run over x11
pango run over x11 at current OE-core. If pango want to run over non-x11, then \
the configuration related to x11 should be disabled.
[YOCTO #1674]
(From OE-Core rev: e20bb10573dd67fd60b5b7f944eb0cbec2332a04)
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/pango/pango.inc')
-rw-r--r-- | meta/recipes-graphics/pango/pango.inc | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/meta/recipes-graphics/pango/pango.inc b/meta/recipes-graphics/pango/pango.inc index 6d94e02878..ff5a73ae67 100644 --- a/meta/recipes-graphics/pango/pango.inc +++ b/meta/recipes-graphics/pango/pango.inc | |||
@@ -10,13 +10,22 @@ SECTION = "libs" | |||
10 | LICENSE = "LGPL" | 10 | LICENSE = "LGPL" |
11 | 11 | ||
12 | X11DEPENDS = "virtual/libx11 libxft" | 12 | X11DEPENDS = "virtual/libx11 libxft" |
13 | DEPENDS = "glib-2.0 fontconfig freetype zlib virtual/libiconv gtk-doc-native cairo ${@base_contains('DISTRO_FEATURES', 'x11', '${X11DEPENDS}', '', d)}" | 13 | DEPENDS = "glib-2.0 fontconfig freetype zlib virtual/libiconv gtk-doc-native cairo " |
14 | |||
15 | PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}" | ||
16 | PACKAGECONFIG[x11] = "--with-x,--without-x,${X11DEPENDS}" | ||
17 | |||
14 | 18 | ||
15 | PACKAGES_DYNAMIC = "pango-module-*" | 19 | PACKAGES_DYNAMIC = "pango-module-*" |
16 | 20 | ||
17 | RRECOMMENDS_${PN} = "${@base_contains('DISTRO_FEATURES', 'x11', 'pango-module-basic-x', '', d)} pango-module-basic-fc" | 21 | RRECOMMENDS_${PN} = "${@base_contains('DISTRO_FEATURES', 'x11', 'pango-module-basic-x', '', d)} pango-module-basic-fc" |
18 | 22 | ||
19 | inherit gnome | 23 | inherit gnome |
24 | # Create a pango-modules package | ||
25 | ALLOW_EMPTY_${BPN}-modules = "1" | ||
26 | PACKAGES += "${BPN}-modules" | ||
27 | RRECOMMENDS_${BPN}-modules = "${@" ".join([p for p in d.getVar('PACKAGES', True).split() if p.find("pango-module") != -1])}" | ||
28 | |||
20 | 29 | ||
21 | EXTRA_AUTORECONF = "" | 30 | EXTRA_AUTORECONF = "" |
22 | 31 | ||
@@ -25,8 +34,7 @@ FULL_OPTIMIZATION_arm = "-O2" | |||
25 | 34 | ||
26 | EXTRA_OECONF = "--disable-glibtest \ | 35 | EXTRA_OECONF = "--disable-glibtest \ |
27 | --enable-explicit-deps=no \ | 36 | --enable-explicit-deps=no \ |
28 | --disable-debug \ | 37 | --disable-debug" |
29 | ${@base_contains('DISTRO_FEATURES', 'x11', '--with-x', '--without-x', d)}" | ||
30 | 38 | ||
31 | LEAD_SONAME = "libpango-1.0*" | 39 | LEAD_SONAME = "libpango-1.0*" |
32 | LIBV = "1.6.0" | 40 | LIBV = "1.6.0" |
@@ -46,6 +54,6 @@ python populate_packages_prepend () { | |||
46 | do_split_packages(d, modules_root, '^pango-(.*)\.so$', 'pango-module-%s', 'Pango module %s', prologue + 'pango-querymodules > /etc/pango/pango.modules') | 54 | do_split_packages(d, modules_root, '^pango-(.*)\.so$', 'pango-module-%s', 'Pango module %s', prologue + 'pango-querymodules > /etc/pango/pango.modules') |
47 | } | 55 | } |
48 | 56 | ||
49 | FILES_${PN} = "/etc ${bindir}/* ${libdir}/libpango*${SOLIBS}" | 57 | FILES_${PN} = "/etc/pango/* ${bindir}/* ${libdir}/libpango*${SOLIBS}" |
50 | FILES_${PN}-dbg += "${libdir}/pango/${LIBV}/modules/.debug" | 58 | FILES_${PN}-dbg += "${libdir}/pango/${LIBV}/modules/.debug" |
51 | FILES_${PN}-dev += "${libdir}/pango/${LIBV}/modules/*.la" | 59 | FILES_${PN}-dev += "${libdir}/pango/${LIBV}/modules/*.la" |