diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2016-08-22 15:23:08 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-23 17:44:41 +0100 |
commit | 69d8707bd20fef19f79c7eb162fd228d187a6486 (patch) | |
tree | be4390182237ec761232328f428c1196885febf9 /meta/recipes-graphics/fontconfig/fontconfig_2.12.1.bb | |
parent | 624597d9222a52734d03bdddcdb580875f00f58a (diff) | |
download | poky-69d8707bd20fef19f79c7eb162fd228d187a6486.tar.gz |
fontconfig: Upgrade 2.12.0 -> 2.12.1
License text block moved, checksum remains same.
(From OE-Core rev: dbda47cab8742888189131716415777155105d9d)
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.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/fontconfig/fontconfig_2.12.1.bb')
-rw-r--r-- | meta/recipes-graphics/fontconfig/fontconfig_2.12.1.bb | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/meta/recipes-graphics/fontconfig/fontconfig_2.12.1.bb b/meta/recipes-graphics/fontconfig/fontconfig_2.12.1.bb new file mode 100644 index 0000000000..115f558eef --- /dev/null +++ b/meta/recipes-graphics/fontconfig/fontconfig_2.12.1.bb | |||
@@ -0,0 +1,49 @@ | |||
1 | SUMMARY = "Generic font configuration library" | ||
2 | DESCRIPTION = "Fontconfig is a font configuration and customization library, which \ | ||
3 | does not depend on the X Window System. It is designed to locate \ | ||
4 | fonts within the system and select them according to requirements \ | ||
5 | specified by applications. \ | ||
6 | Fontconfig is not a rasterization library, nor does it impose a \ | ||
7 | particular rasterization library on the application. The X-specific \ | ||
8 | library 'Xft' uses fontconfig along with freetype to specify and \ | ||
9 | rasterize fonts." | ||
10 | |||
11 | HOMEPAGE = "http://www.fontconfig.org" | ||
12 | BUGTRACKER = "https://bugs.freedesktop.org/enter_bug.cgi?product=fontconfig" | ||
13 | |||
14 | LICENSE = "MIT-style & MIT & PD" | ||
15 | LIC_FILES_CHKSUM = "file://COPYING;md5=7a0449e9bc5370402a94c00204beca3d \ | ||
16 | file://src/fcfreetype.c;endline=45;md5=5d9513e3196a1fbfdfa94051c09dfc84 \ | ||
17 | file://src/fccache.c;beginline=1360;endline=1375;md5=0326cfeb4a7333dd4dd25fbbc4b9f27f" | ||
18 | |||
19 | SECTION = "libs" | ||
20 | |||
21 | DEPENDS = "expat freetype zlib" | ||
22 | |||
23 | SRC_URI = "http://fontconfig.org/release/fontconfig-${PV}.tar.gz \ | ||
24 | file://revert-static-pkgconfig.patch \ | ||
25 | " | ||
26 | SRC_URI[md5sum] = "ce55e525c37147eee14cc2de6cc09f6c" | ||
27 | SRC_URI[sha256sum] = "a9f42d03949f948a3a4f762287dbc16e53a927c91a07ee64207ebd90a9e5e292" | ||
28 | |||
29 | PACKAGES =+ "fontconfig-utils" | ||
30 | FILES_${PN} =+ "${datadir}/xml/*" | ||
31 | FILES_fontconfig-utils = "${bindir}/*" | ||
32 | |||
33 | # Work around past breakage in debian.bbclass | ||
34 | RPROVIDES_fontconfig-utils = "libfontconfig-utils" | ||
35 | RREPLACES_fontconfig-utils = "libfontconfig-utils" | ||
36 | RCONFLICTS_fontconfig-utils = "libfontconfig-utils" | ||
37 | DEBIAN_NOAUTONAME_fontconfig-utils = "1" | ||
38 | |||
39 | inherit autotools pkgconfig | ||
40 | |||
41 | FONTCONFIG_CACHE_DIR ?= "${localstatedir}/cache/fontconfig" | ||
42 | |||
43 | # comma separated list of additional directories | ||
44 | # /usr/share/fonts is already included by default (you can change it with --with-default-fonts) | ||
45 | FONTCONFIG_FONT_DIRS ?= "no" | ||
46 | |||
47 | EXTRA_OECONF = " --disable-docs --with-default-fonts=${datadir}/fonts --with-cache-dir=${FONTCONFIG_CACHE_DIR} --with-add-fonts=${FONTCONFIG_FONT_DIRS}" | ||
48 | |||
49 | BBCLASSEXTEND = "native" | ||