diff options
author | Ross Burton <ross.burton@intel.com> | 2013-04-04 18:07:59 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-04 23:50:33 +0100 |
commit | 078d3cbc28e78c1e00120779df2218e800b64dcc (patch) | |
tree | 4bd9b65f99a0e91653168a3880c6121248ada049 /meta | |
parent | c1a7676d8031cf2c50e60b2a0dc27aafb845704d (diff) | |
download | poky-078d3cbc28e78c1e00120779df2218e800b64dcc.tar.gz |
liberation-fonts: remove 1.06
1.06 requires fontforge-native to build, which as we don't have this version has
never been used.
(From OE-Core rev: 035e074cb7ff943defe3a10dc2a73b3cb2fd7e96)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-graphics/ttf-fonts/liberation-fonts_1.06.bb | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/meta/recipes-graphics/ttf-fonts/liberation-fonts_1.06.bb b/meta/recipes-graphics/ttf-fonts/liberation-fonts_1.06.bb deleted file mode 100644 index 6391f51227..0000000000 --- a/meta/recipes-graphics/ttf-fonts/liberation-fonts_1.06.bb +++ /dev/null | |||
@@ -1,45 +0,0 @@ | |||
1 | SUMMARY = "Liberation(tm) Fonts" | ||
2 | DESCRIPTION = "The Liberation(tm) Fonts is a font family originally \ | ||
3 | created by Ascender(c) which aims at metric compatibility with \ | ||
4 | Arial, Times New Roman, Courier New." | ||
5 | HOMEPAGE = "https://fedorahosted.org/liberation-fonts/" | ||
6 | BUGTRACKER = "https://bugzilla.redhat.com/" | ||
7 | |||
8 | SECTION = "x11/fonts" | ||
9 | LICENSE = "GPLv2" | ||
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
11 | RDEPENDS_${PN} = "fontconfig-utils" | ||
12 | PE = "1" | ||
13 | PR = "r3" | ||
14 | |||
15 | FONTREV = "0.20100721" | ||
16 | SRC_URI = "https://fedorahosted.org/releases/l/i/${BPN}/${BPN}-${PV}.${FONTREV}.tar.gz \ | ||
17 | file://30-liberation-aliases.conf" | ||
18 | |||
19 | S = "${WORKDIR}/${BPN}-${PV}.${FONTREV}" | ||
20 | |||
21 | inherit allarch | ||
22 | |||
23 | do_install () { | ||
24 | install -d ${D}${datadir}/fonts/ttf/ | ||
25 | for i in *.ttf; do | ||
26 | install -m 0644 $i ${D}${prefix}/share/fonts/ttf/${i} | ||
27 | done | ||
28 | |||
29 | install -d ${D}${sysconfdir}/fonts/conf.d/ | ||
30 | install -m 0644 ${WORKDIR}/30-liberation-aliases.conf ${D}${sysconfdir}/fonts/conf.d/ | ||
31 | |||
32 | install -d ${D}${prefix}/share/doc/${BPN}/ | ||
33 | install -m 0644 License.txt ${D}${datadir}/doc/${BPN}/ | ||
34 | } | ||
35 | |||
36 | pkg_postinst_${PN} () { | ||
37 | #!/bin/sh | ||
38 | if [ "x$D" != "x" ] ; then | ||
39 | exit 1 | ||
40 | fi | ||
41 | fc-cache | ||
42 | } | ||
43 | |||
44 | PACKAGES = "${PN}" | ||
45 | FILES_${PN} += "${sysconfdir} ${datadir}" | ||