diff options
Diffstat (limited to 'meta/recipes-graphics/fontconfig/fontconfig_2.11.93.bb')
-rw-r--r-- | meta/recipes-graphics/fontconfig/fontconfig_2.11.93.bb | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/meta/recipes-graphics/fontconfig/fontconfig_2.11.93.bb b/meta/recipes-graphics/fontconfig/fontconfig_2.11.93.bb new file mode 100644 index 0000000000..44cfe2b2bf --- /dev/null +++ b/meta/recipes-graphics/fontconfig/fontconfig_2.11.93.bb | |||
@@ -0,0 +1,44 @@ | |||
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=1199;endline=1214;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 | " | ||
25 | SRC_URI[md5sum] = "622f94f0f74e40775ea72d7d5f17a36d" | ||
26 | SRC_URI[sha256sum] = "296b5e83189589e537992d65ff01e0cd74eba9a91eb16a6890ce942e3695c526" | ||
27 | |||
28 | PACKAGES =+ "fontconfig-utils" | ||
29 | FILES_${PN} =+ "${datadir}/xml/*" | ||
30 | FILES_fontconfig-utils = "${bindir}/*" | ||
31 | |||
32 | # Work around past breakage in debian.bbclass | ||
33 | RPROVIDES_fontconfig-utils = "libfontconfig-utils" | ||
34 | RREPLACES_fontconfig-utils = "libfontconfig-utils" | ||
35 | RCONFLICTS_fontconfig-utils = "libfontconfig-utils" | ||
36 | DEBIAN_NOAUTONAME_fontconfig-utils = "1" | ||
37 | |||
38 | inherit autotools pkgconfig | ||
39 | |||
40 | FONTCONFIG_CACHE_DIR ?= "${localstatedir}/cache/fontconfig" | ||
41 | |||
42 | EXTRA_OECONF = " --disable-docs --with-default-fonts=${datadir}/fonts --with-cache-dir=${FONTCONFIG_CACHE_DIR}" | ||
43 | |||
44 | BBCLASSEXTEND = "native" | ||