diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-06-26 09:54:36 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-06-26 09:54:36 +0000 |
commit | c44b104681ef45a5157402c72e2294d90816638a (patch) | |
tree | 9b371798d72f1ac19398ea30b15aa7c8bf29aa0b /meta/packages/ttf-fonts | |
parent | cdf70f4723feb9e25555388b613030fc59fe9a67 (diff) | |
download | poky-c44b104681ef45a5157402c72e2294d90816638a.tar.gz |
liberation-fonts: RedHat replacements for Vera and Microsoft fonts
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2004 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/ttf-fonts')
-rw-r--r-- | meta/packages/ttf-fonts/liberation-fonts/30-liberation-aliases.conf | 17 | ||||
-rw-r--r-- | meta/packages/ttf-fonts/liberation-fonts_3.bb | 32 |
2 files changed, 49 insertions, 0 deletions
diff --git a/meta/packages/ttf-fonts/liberation-fonts/30-liberation-aliases.conf b/meta/packages/ttf-fonts/liberation-fonts/30-liberation-aliases.conf new file mode 100644 index 0000000000..06094503cc --- /dev/null +++ b/meta/packages/ttf-fonts/liberation-fonts/30-liberation-aliases.conf | |||
@@ -0,0 +1,17 @@ | |||
1 | <?xml version="1.0"?> | ||
2 | <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | ||
3 | <!-- conf.d/sub-pixel.conf --> | ||
4 | <fontconfig> | ||
5 | <alias> | ||
6 | <family>sans-serif</family> | ||
7 | <accept><family>Liberation Sans</family></accept> | ||
8 | </alias> | ||
9 | <alias> | ||
10 | <family>serif</family> | ||
11 | <accept><family>Liberation Serif</family></accept> | ||
12 | </alias> | ||
13 | <alias> | ||
14 | <family>monospace</family> | ||
15 | <accept><family>Liberation Mono</family></accept> | ||
16 | </alias> | ||
17 | </fontconfig> | ||
diff --git a/meta/packages/ttf-fonts/liberation-fonts_3.bb b/meta/packages/ttf-fonts/liberation-fonts_3.bb new file mode 100644 index 0000000000..14fa8dc8a8 --- /dev/null +++ b/meta/packages/ttf-fonts/liberation-fonts_3.bb | |||
@@ -0,0 +1,32 @@ | |||
1 | DESCRIPTION = "The fonts - TTF Edition" | ||
2 | SECTION = "x11/fonts" | ||
3 | PRIORITY = "optional" | ||
4 | LICENSE = "GPLv2" | ||
5 | PACKAGE_ARCH = "all" | ||
6 | RDEPENDS = "fontconfig-utils" | ||
7 | |||
8 | SRC_URI = "https://www.redhat.com/f/fonts/liberation-fonts-ttf-3.tar.gz \ | ||
9 | file://30-liberation-aliases.conf" | ||
10 | |||
11 | S = "${WORKDIR}/${PN}-0.2/" | ||
12 | |||
13 | do_install () { | ||
14 | install -d ${D}${datadir}/fonts/ttf/ | ||
15 | for i in *.ttf; do | ||
16 | install -m 0644 $i ${D}${prefix}/share/fonts/ttf/${i} | ||
17 | done | ||
18 | |||
19 | install -d ${D}${sysconfdir}/fonts/conf.d/ | ||
20 | install -m 0644 ${WORKDIR}/30-liberation-aliases.conf ${D}${sysconfdir}/fonts/conf.d/ | ||
21 | |||
22 | install -d ${D}${prefix}/share/doc/${PN}/ | ||
23 | install -m 0644 License.txt ${D}${datadir}/doc/${PN}/ | ||
24 | } | ||
25 | |||
26 | pkg_postinst () { | ||
27 | #!/bin/sh | ||
28 | fc-cache | ||
29 | } | ||
30 | |||
31 | PACKAGES = "${PN}" | ||
32 | FILES_${PN} += "${sysconfdir} ${datadir}" | ||