summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/freetype/freetype_2.9.bb
diff options
context:
space:
mode:
authorChangqing Li <changqing.li@windriver.com>2018-08-22 09:10:32 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-08-23 07:50:00 +0100
commita3928b3463ba86f7821f77565c8b2557ac7abbd1 (patch)
tree4df21ece26429d011a07bb5da10b2dada4bb6a87 /meta/recipes-graphics/freetype/freetype_2.9.bb
parent292471701b2590f2a0f45293f3fa81198a9ac3d9 (diff)
downloadpoky-a3928b3463ba86f7821f77565c8b2557ac7abbd1.tar.gz
freetype: Upgrade 2.9 -> 2.9.1
The -config script can now be disabled from configure. Drop backported patch now merged. (From OE-Core rev: f2c1d7109014ef9d804c3a6967b96143834ff7bd) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/freetype/freetype_2.9.bb')
-rw-r--r--meta/recipes-graphics/freetype/freetype_2.9.bb51
1 files changed, 0 insertions, 51 deletions
diff --git a/meta/recipes-graphics/freetype/freetype_2.9.bb b/meta/recipes-graphics/freetype/freetype_2.9.bb
deleted file mode 100644
index 216ecf31d1..0000000000
--- a/meta/recipes-graphics/freetype/freetype_2.9.bb
+++ /dev/null
@@ -1,51 +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 = "${SOURCEFORGE_MIRROR}/freetype/freetype-${PV}.tar.bz2 \
16 file://use-right-libtool.patch \
17 file://fix-potential-numeric-overflow.patch \
18 "
19
20UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/freetype/files/freetype2/"
21UPSTREAM_CHECK_REGEX = "freetype-(?P<pver>\d+(\.\d+)+)"
22
23SRC_URI[md5sum] = "513c403c110016fdc7e537216a642b1d"
24SRC_URI[sha256sum] = "e6ffba3c8cef93f557d1f767d7bc3dee860ac7a3aaff588a521e081bc36f4c8a"
25
26inherit autotools pkgconfig binconfig-disabled multilib_header
27
28# Adapt autotools to work with the minimal autoconf usage in freetype
29AUTOTOOLS_SCRIPT_PATH = "${S}/builds/unix"
30CONFIGURE_SCRIPT = "${S}/configure"
31EXTRA_AUTORECONF += "--exclude=autoheader --exclude=automake"
32
33PACKAGECONFIG ??= "zlib"
34
35PACKAGECONFIG[bzip2] = "--with-bzip2,--without-bzip2,bzip2"
36# harfbuzz results in a circular dependency so enabling is non-trivial
37PACKAGECONFIG[harfbuzz] = "--with-harfbuzz,--without-harfbuzz,harfbuzz"
38PACKAGECONFIG[pixmap] = "--with-png,--without-png,libpng"
39PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib"
40
41EXTRA_OECONF = "CC_BUILD='${BUILD_CC}'"
42
43TARGET_CPPFLAGS += "-D_FILE_OFFSET_BITS=64"
44
45do_install_append() {
46 oe_multilib_header freetype2/freetype/config/ftconfig.h
47}
48
49BINCONFIG = "${bindir}/freetype-config"
50
51BBCLASSEXTEND = "native nativesdk"