summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.1.bb
diff options
context:
space:
mode:
authorAndre McCurdy <armccurdy@gmail.com>2016-02-23 10:54:24 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-28 11:33:01 +0000
commit73cc8b8726cbf7a69c777d4b24b051805ce92e3b (patch)
tree634dc043f4f39c1d25669658ef2d2c2d3b05af36 /meta/recipes-graphics/harfbuzz/harfbuzz_1.2.1.bb
parentbb151b888c9063209159c1d85565f45da6fd81c1 (diff)
downloadpoky-73cc8b8726cbf7a69c777d4b24b051805ce92e3b.tar.gz
harfbuzz: update 1.2.0 -> 1.2.1
Overview of changes leading to 1.2.1 Friday, February 23, 2016 ==================================== - CoreText: Fix bug with wrong scale if font scale was changed later. https://github.com/libass/libass/issues/212 - CoreText: Drastically speed up font initialization. - CoreText: Fix tiny leak. - Group ZWJ/ZWNJ with previous syllable under cluster-level=0. https://github.com/behdad/harfbuzz/issues/217 - Add test/shaping/README.md about how to add tests to the suite. (From OE-Core rev: 6dc27726c9da5104ea27ebf604cab6ef2037034d) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/harfbuzz/harfbuzz_1.2.1.bb')
-rw-r--r--meta/recipes-graphics/harfbuzz/harfbuzz_1.2.1.bb33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.1.bb b/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.1.bb
new file mode 100644
index 0000000000..f88e634080
--- /dev/null
+++ b/meta/recipes-graphics/harfbuzz/harfbuzz_1.2.1.bb
@@ -0,0 +1,33 @@
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=e021dd6dda6ff1e6b1044002fc662b9b \
8 file://src/hb-ucdn/COPYING;md5=994ba0f1295f15b4bda4999a5bbeddef \
9"
10
11DEPENDS = "glib-2.0 cairo freetype"
12
13SRC_URI = "http://www.freedesktop.org/software/harfbuzz/release/${BP}.tar.bz2"
14
15SRC_URI[md5sum] = "c50034739e4b5ea85d46199bf7859ea6"
16SRC_URI[sha256sum] = "0c189aa386c5ea8d7c315adf273f56f48f412081a367b3f92abc2d0855fa2226"
17
18inherit autotools pkgconfig lib_package
19
20PACKAGECONFIG ??= "icu"
21PACKAGECONFIG[icu] = "--with-icu,--without-icu,icu"
22
23EXTRA_OECONF = "--with-glib --with-freetype --with-cairo --without-graphite2"
24
25PACKAGES =+ "${PN}-icu ${PN}-icu-dev"
26
27FILES_${PN}-icu = "${libdir}/libharfbuzz-icu.so.*"
28FILES_${PN}-icu-dev = "${libdir}/libharfbuzz-icu.la \
29 ${libdir}/libharfbuzz-icu.so \
30 ${libdir}/pkgconfig/harfbuzz-icu.pc \
31"
32
33BBCLASSEXTEND = "native"