summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/fontconfig/fontconfig_2.11.94.bb
diff options
context:
space:
mode:
authorJussi Kukkonen <jussi.kukkonen@intel.com>2015-08-06 11:41:59 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-10 12:40:25 -0700
commitacc0af6ac58e855e95ed5fd1d02a18bcaad0bb6b (patch)
treeb3eb3e7b0dfca52622a9a1ae0241342f744f4c13 /meta/recipes-graphics/fontconfig/fontconfig_2.11.94.bb
parent0bf30e50da554d2c87feb51a74b6690afa7874d7 (diff)
downloadpoky-acc0af6ac58e855e95ed5fd1d02a18bcaad0bb6b.tar.gz
fontconfig: Upgrade 2.11.93 -> 2.11.94
(From OE-Core rev: e9e8d56ab53e17f62c9496932a108d7255a33148) Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/fontconfig/fontconfig_2.11.94.bb')
-rw-r--r--meta/recipes-graphics/fontconfig/fontconfig_2.11.94.bb45
1 files changed, 45 insertions, 0 deletions
diff --git a/meta/recipes-graphics/fontconfig/fontconfig_2.11.94.bb b/meta/recipes-graphics/fontconfig/fontconfig_2.11.94.bb
new file mode 100644
index 0000000000..9bbff208c4
--- /dev/null
+++ b/meta/recipes-graphics/fontconfig/fontconfig_2.11.94.bb
@@ -0,0 +1,45 @@
1SUMMARY = "Generic font configuration library"
2DESCRIPTION = "Fontconfig is a font configuration and customization library, which \
3does not depend on the X Window System. It is designed to locate \
4fonts within the system and select them according to requirements \
5specified by applications. \
6Fontconfig is not a rasterization library, nor does it impose a \
7particular rasterization library on the application. The X-specific \
8library 'Xft' uses fontconfig along with freetype to specify and \
9rasterize fonts."
10
11HOMEPAGE = "http://www.fontconfig.org"
12BUGTRACKER = "https://bugs.freedesktop.org/enter_bug.cgi?product=fontconfig"
13
14LICENSE = "MIT-style & MIT & PD"
15LIC_FILES_CHKSUM = "file://COPYING;md5=7a0449e9bc5370402a94c00204beca3d \
16 file://src/fcfreetype.c;endline=45;md5=5d9513e3196a1fbfdfa94051c09dfc84 \
17 file://src/fccache.c;beginline=1199;endline=1214;md5=0326cfeb4a7333dd4dd25fbbc4b9f27f"
18
19SECTION = "libs"
20
21DEPENDS = "expat freetype zlib"
22
23SRC_URI = "http://fontconfig.org/release/fontconfig-${PV}.tar.gz \
24 file://revert-static-pkgconfig.patch \
25 "
26SRC_URI[md5sum] = "479be870c7f83f15f87bac085b61d641"
27SRC_URI[sha256sum] = "73f6d323c7bcfbde25d78397675191d55b8f4139132c6a9444410f3a2d8a9a95"
28
29PACKAGES =+ "fontconfig-utils"
30FILES_${PN} =+ "${datadir}/xml/*"
31FILES_fontconfig-utils = "${bindir}/*"
32
33# Work around past breakage in debian.bbclass
34RPROVIDES_fontconfig-utils = "libfontconfig-utils"
35RREPLACES_fontconfig-utils = "libfontconfig-utils"
36RCONFLICTS_fontconfig-utils = "libfontconfig-utils"
37DEBIAN_NOAUTONAME_fontconfig-utils = "1"
38
39inherit autotools pkgconfig
40
41FONTCONFIG_CACHE_DIR ?= "${localstatedir}/cache/fontconfig"
42
43EXTRA_OECONF = " --disable-docs --with-default-fonts=${datadir}/fonts --with-cache-dir=${FONTCONFIG_CACHE_DIR}"
44
45BBCLASSEXTEND = "native"