summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/freetype/freetype_2.10.2.bb
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2020-11-02 17:48:52 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-11-03 08:21:12 +0000
commit048645e03353bc788ef7969e2415427ef969eef3 (patch)
tree78e2a8cc93c8cb522390a874c4919cb6ea3f62b8 /meta/recipes-graphics/freetype/freetype_2.10.2.bb
parentf28d84844ca0b424d6dad91ba052446e87f4f4cb (diff)
downloadpoky-048645e03353bc788ef7969e2415427ef969eef3.tar.gz
freetype: upgrade 2.10.2 -> 2.10.4
(From OE-Core rev: a6b5ff561322d760eac46998de3e9e3520b0e02a) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/freetype/freetype_2.10.2.bb')
-rw-r--r--meta/recipes-graphics/freetype/freetype_2.10.2.bb47
1 files changed, 0 insertions, 47 deletions
diff --git a/meta/recipes-graphics/freetype/freetype_2.10.2.bb b/meta/recipes-graphics/freetype/freetype_2.10.2.bb
deleted file mode 100644
index 1034ddc0d7..0000000000
--- a/meta/recipes-graphics/freetype/freetype_2.10.2.bb
+++ /dev/null
@@ -1,47 +0,0 @@
1SUMMARY = "Freetype font rendering library"
2DESCRIPTION = "FreeType is a software font engine that is designed to be small, efficient, \
3highly customizable, and portable while capable of producing high-quality output (glyph \
4images). It can be used in graphics libraries, display servers, font conversion tools, text \
5image generation tools, and many other products as well."
6HOMEPAGE = "http://www.freetype.org/"
7BUGTRACKER = "https://savannah.nongnu.org/bugs/?group=freetype"
8SECTION = "libs"
9
10LICENSE = "FreeType | GPLv2+"
11LIC_FILES_CHKSUM = "file://docs/LICENSE.TXT;md5=4af6221506f202774ef74f64932878a1 \
12 file://docs/FTL.TXT;md5=9f37b4e6afa3fef9dba8932b16bd3f97 \
13 file://docs/GPLv2.TXT;md5=8ef380476f642c20ebf40fecb0add2ec"
14
15SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/${BPN}/${BP}.tar.xz \
16 file://use-right-libtool.patch \
17 "
18SRC_URI[md5sum] = "7c0d5a39f232d7eb9f9d7da76bf08074"
19SRC_URI[sha256sum] = "1543d61025d2e6312e0a1c563652555f17378a204a61e99928c9fcef030a2d8b"
20
21UPSTREAM_CHECK_REGEX = "freetype-(?P<pver>\d+(\.\d+)+)"
22
23inherit autotools pkgconfig multilib_header
24
25# Adapt autotools to work with the minimal autoconf usage in freetype
26AUTOTOOLS_SCRIPT_PATH = "${S}/builds/unix"
27CONFIGURE_SCRIPT = "${S}/configure"
28EXTRA_AUTORECONF += "--exclude=autoheader --exclude=automake"
29
30PACKAGECONFIG ??= "zlib pixmap"
31
32PACKAGECONFIG[bzip2] = "--with-bzip2,--without-bzip2,bzip2"
33# harfbuzz results in a circular dependency so enabling is non-trivial
34PACKAGECONFIG[harfbuzz] = "--with-harfbuzz,--without-harfbuzz,harfbuzz"
35PACKAGECONFIG[pixmap] = "--with-png,--without-png,libpng"
36PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib"
37PACKAGECONFIG[freetypeconfig] = "--enable-freetype-config=yes,--enable-freetype-config=no,"
38
39EXTRA_OECONF = "CC_BUILD='${BUILD_CC}'"
40
41TARGET_CPPFLAGS += "-D_FILE_OFFSET_BITS=64"
42
43do_install_append() {
44 oe_multilib_header freetype2/freetype/config/ftconfig.h
45}
46
47BBCLASSEXTEND = "native nativesdk"