diff options
Diffstat (limited to 'meta/recipes-graphics/pango/pango_1.50.11.bb')
-rw-r--r-- | meta/recipes-graphics/pango/pango_1.50.11.bb | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/meta/recipes-graphics/pango/pango_1.50.11.bb b/meta/recipes-graphics/pango/pango_1.50.11.bb new file mode 100644 index 0000000000..f545689811 --- /dev/null +++ b/meta/recipes-graphics/pango/pango_1.50.11.bb | |||
@@ -0,0 +1,60 @@ | |||
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 = "LGPL-2.0-or-later" | ||
11 | |||
12 | LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7" | ||
13 | |||
14 | GNOMEBASEBUILDCLASS = "meson" | ||
15 | |||
16 | inherit gnomebase gi-docgen ptest-gnome upstream-version-is-even gobject-introspection | ||
17 | |||
18 | UPSTREAM_CHECK_REGEX = "pango-(?P<pver>\d+\.(?!9\d+)\d+\.\d+)" | ||
19 | |||
20 | GIR_MESON_ENABLE_FLAG = "enabled" | ||
21 | GIR_MESON_DISABLE_FLAG = "disabled" | ||
22 | |||
23 | SRC_URI += "file://run-ptest \ | ||
24 | file://0001-Skip-running-test-layout-test.patch \ | ||
25 | " | ||
26 | |||
27 | SRC_URI[archive.sha256sum] = "8800f812d89ee61388188703203f3a7878963c22f8695aaf1fa0a1a1428d17ae" | ||
28 | |||
29 | DEPENDS = "glib-2.0 glib-2.0-native fontconfig freetype virtual/libiconv cairo harfbuzz fribidi" | ||
30 | |||
31 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)} \ | ||
32 | ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)}" | ||
33 | |||
34 | PACKAGECONFIG[x11] = ",,virtual/libx11 libxft" | ||
35 | PACKAGECONFIG[tests] = "-Dinstall-tests=true, -Dinstall-tests=false" | ||
36 | PACKAGECONFIG[thai] = ",,libthai" | ||
37 | |||
38 | GIR_MESON_OPTION = 'introspection' | ||
39 | |||
40 | do_configure:prepend() { | ||
41 | chmod +x ${S}/tests/*.py | ||
42 | } | ||
43 | |||
44 | # https://gitlab.gnome.org/GNOME/pango/-/issues/713 | ||
45 | do_install:append() { | ||
46 | mkdir -p ${D}/${libexecdir}/installed-tests/pango/nofonts/ | ||
47 | install ${S}/tests/nofonts/fonts.conf ${D}/${libexecdir}/installed-tests/pango/nofonts/ | ||
48 | } | ||
49 | |||
50 | LEAD_SONAME = "libpango-1.0*" | ||
51 | |||
52 | FILES:${PN} = "${bindir}/* ${libdir}/libpango*${SOLIBS}" | ||
53 | |||
54 | RDEPENDS:${PN}-ptest += "cantarell-fonts" | ||
55 | RDEPENDS:${PN}-ptest:append:libc-glibc = " locale-base-en-us" | ||
56 | |||
57 | RPROVIDES:${PN} += "pango-modules pango-module-indic-lang \ | ||
58 | pango-module-basic-fc pango-module-arabic-lang" | ||
59 | |||
60 | BBCLASSEXTEND = "native nativesdk" | ||