summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/harfbuzz/harfbuzz_10.1.0.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-02-01 11:21:35 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-02-05 12:49:55 +0000
commita89745e1ba94aee45fb0f3c255f1795caa2ea0e5 (patch)
tree8071c875d70a43dd5a6e02a13d5ebf310e14e656 /meta/recipes-graphics/harfbuzz/harfbuzz_10.1.0.bb
parent1648db00b9d5895f885f117ab8f4eeb9f681f55b (diff)
downloadpoky-a89745e1ba94aee45fb0f3c255f1795caa2ea0e5.tar.gz
harfbuzz: upgrade 10.1.0 -> 10.2.0
(From OE-Core rev: 50e29d135bd6615c8672892218717428ac7828c1) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/harfbuzz/harfbuzz_10.1.0.bb')
-rw-r--r--meta/recipes-graphics/harfbuzz/harfbuzz_10.1.0.bb51
1 files changed, 0 insertions, 51 deletions
diff --git a/meta/recipes-graphics/harfbuzz/harfbuzz_10.1.0.bb b/meta/recipes-graphics/harfbuzz/harfbuzz_10.1.0.bb
deleted file mode 100644
index 4425dd3e1e..0000000000
--- a/meta/recipes-graphics/harfbuzz/harfbuzz_10.1.0.bb
+++ /dev/null
@@ -1,51 +0,0 @@
1SUMMARY = "Text shaping library"
2DESCRIPTION = "HarfBuzz is an OpenType text shaping engine."
3HOMEPAGE = "http://www.freedesktop.org/wiki/Software/HarfBuzz"
4BUGTRACKER = "https://bugs.freedesktop.org/enter_bug.cgi?product=HarfBuzz"
5SECTION = "libs"
6LICENSE = "MIT"
7LIC_FILES_CHKSUM = "file://COPYING;md5=b98429b8e8e3c2a67cfef01e99e4893d \
8 file://src/hb-ucd.cc;beginline=1;endline=15;md5=29d4dcb6410429195df67efe3382d8bc \
9 "
10
11SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/${BPN}-${PV}.tar.xz"
12SRC_URI[sha256sum] = "6ce3520f2d089a33cef0fc48321334b8e0b72141f6a763719aaaecd2779ecb82"
13
14DEPENDS += "glib-2.0-native"
15
16inherit meson pkgconfig lib_package gtk-doc gobject-introspection github-releases
17
18GIR_MESON_ENABLE_FLAG = 'enabled'
19GIR_MESON_DISABLE_FLAG = 'disabled'
20GTKDOC_MESON_ENABLE_FLAG = 'enabled'
21GTKDOC_MESON_DISABLE_FLAG = 'disabled'
22
23PACKAGECONFIG ??= "cairo freetype glib icu"
24PACKAGECONFIG[cairo] = "-Dcairo=enabled,-Dcairo=disabled,cairo"
25PACKAGECONFIG[chafa] = "-Dchafa=enabled,-Dchafa=disabled,chafa"
26PACKAGECONFIG[freetype] = "-Dfreetype=enabled,-Dfreetype=disabled,freetype"
27PACKAGECONFIG[glib] = "-Dglib=enabled,-Dglib=disabled,glib-2.0"
28PACKAGECONFIG[graphite] = "-Dgraphite2=enabled,-Dgraphite2=disabled,graphite2"
29PACKAGECONFIG[icu] = "-Dicu=enabled,-Dicu=disabled,icu"
30
31PACKAGES =+ "${PN}-icu ${PN}-icu-dev ${PN}-subset"
32
33LEAD_SONAME = "libharfbuzz.so"
34
35# Remove when https://github.com/harfbuzz/harfbuzz/issues/4671 is resolved
36EXTRA_OEMESON += "-Dcpp_std=c++17"
37
38do_install:append() {
39 # If no tools are installed due to PACKAGECONFIG then this directory might
40 # still be installed, so remove it to stop packaging warnings.
41 [ ! -d ${D}${bindir} ] || rmdir --ignore-fail-on-non-empty ${D}${bindir}
42}
43
44FILES:${PN}-icu = "${libdir}/libharfbuzz-icu.so.*"
45FILES:${PN}-icu-dev = "${libdir}/libharfbuzz-icu.la \
46 ${libdir}/libharfbuzz-icu.so \
47 ${libdir}/pkgconfig/harfbuzz-icu.pc \
48"
49FILES:${PN}-subset = "${libdir}/libharfbuzz-subset.so.*"
50
51BBCLASSEXTEND = "native nativesdk"