summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/ttf-fonts
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
committerTudor Florea <tudor.florea@enea.com>2015-10-09 22:59:03 +0200
commit972dcfcdbfe75dcfeb777150c136576cf1a71e99 (patch)
tree97a61cd7e293d7ae9d56ef7ed0f81253365bb026 /meta/recipes-graphics/ttf-fonts
downloadpoky-972dcfcdbfe75dcfeb777150c136576cf1a71e99.tar.gz
initial commit for Enea Linux 5.0 arm
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta/recipes-graphics/ttf-fonts')
-rw-r--r--meta/recipes-graphics/ttf-fonts/liberation-fonts/30-liberation-aliases.conf17
-rw-r--r--meta/recipes-graphics/ttf-fonts/liberation-fonts_1.04.bb38
-rw-r--r--meta/recipes-graphics/ttf-fonts/ttf-bitstream-vera_1.10.bb38
3 files changed, 93 insertions, 0 deletions
diff --git a/meta/recipes-graphics/ttf-fonts/liberation-fonts/30-liberation-aliases.conf b/meta/recipes-graphics/ttf-fonts/liberation-fonts/30-liberation-aliases.conf
new file mode 100644
index 0000000000..06094503cc
--- /dev/null
+++ b/meta/recipes-graphics/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/recipes-graphics/ttf-fonts/liberation-fonts_1.04.bb b/meta/recipes-graphics/ttf-fonts/liberation-fonts_1.04.bb
new file mode 100644
index 0000000000..89fa4b211d
--- /dev/null
+++ b/meta/recipes-graphics/ttf-fonts/liberation-fonts_1.04.bb
@@ -0,0 +1,38 @@
1SUMMARY = "Liberation(tm) Fonts"
2DESCRIPTION = "The Liberation(tm) Fonts is a font family originally \
3created by Ascender(c) which aims at metric compatibility with \
4Arial, Times New Roman, Courier New."
5HOMEPAGE = "https://fedorahosted.org/liberation-fonts/"
6BUGTRACKER = "https://bugzilla.redhat.com/"
7
8SECTION = "x11/fonts"
9LICENSE = "GPLv2"
10LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
11PR = "r4"
12PE = "1"
13
14inherit fontcache
15
16FONT_PACKAGES = "${PN}"
17
18SRC_URI = "https://fedorahosted.org/releases/l/i/liberation-fonts/liberation-fonts-${PV}.tar.gz \
19 file://30-liberation-aliases.conf"
20
21SRC_URI[md5sum] = "4846797ef0fc70b0cbaede2514677c58"
22SRC_URI[sha256sum] = "0e0d0957c85b758561a3d4aef4ebcd2c39959e5328429d96ae106249d83531a1"
23
24do_install () {
25 install -d ${D}${datadir}/fonts/ttf/
26 for i in *.ttf; do
27 install -m 0644 $i ${D}${prefix}/share/fonts/ttf/${i}
28 done
29
30 install -d ${D}${sysconfdir}/fonts/conf.d/
31 install -m 0644 ${WORKDIR}/30-liberation-aliases.conf ${D}${sysconfdir}/fonts/conf.d/
32
33 install -d ${D}${prefix}/share/doc/${BPN}/
34 install -m 0644 License.txt ${D}${datadir}/doc/${BPN}/
35}
36
37PACKAGES = "${PN}"
38FILES_${PN} += "${sysconfdir} ${datadir}"
diff --git a/meta/recipes-graphics/ttf-fonts/ttf-bitstream-vera_1.10.bb b/meta/recipes-graphics/ttf-fonts/ttf-bitstream-vera_1.10.bb
new file mode 100644
index 0000000000..b2e4cef39d
--- /dev/null
+++ b/meta/recipes-graphics/ttf-fonts/ttf-bitstream-vera_1.10.bb
@@ -0,0 +1,38 @@
1SUMMARY = "The Bitstream Vera fonts - TTF Edition"
2DESCRIPTION = "The Bitstream Vera fonts include four monospace and sans \
3faces (normal, oblique, bold, bold oblique) and two serif faces (normal \
4and bold). In addition Fontconfig/Xft2 can artificially oblique the \
5serif faces for you: this loses hinting and distorts the faces slightly, \
6but is visibly different than normal and bold, and reasonably pleasing."
7SECTION = "x11/fonts"
8LICENSE = "BitstreamVera"
9LIC_FILES_CHKSUM = "file://COPYRIGHT.TXT;md5=27d7484b1e18d0ee4ce538644a3f04be"
10PR = "r7"
11
12inherit fontcache
13
14FONT_PACKAGES = "${PN}"
15
16SRC_URI = "${GNOME_MIRROR}/ttf-bitstream-vera/1.10/ttf-bitstream-vera-${PV}.tar.bz2"
17
18do_install () {
19 install -d ${D}${prefix}/share/fonts/ttf/
20 for i in *.ttf; do
21 install -m 644 $i ${D}${prefix}/share/fonts/ttf/${i}
22 done
23
24 # fontconfig ships this too. not sure what to do about it.
25 #install -d ${D}${sysconfdir}/fonts
26 #install -m 644 local.conf ${D}${sysconfdir}/fonts/local.conf
27
28
29 install -d ${D}${prefix}/share/doc/${BPN}/
30 for i in *.TXT; do
31 install -m 644 $i ${D}${prefix}/share/doc/${BPN}/$i
32 done
33}
34
35FILES_${PN} = "/etc ${datadir}/fonts"
36
37SRC_URI[md5sum] = "bb22bd5b4675f5dbe17c6963d8c00ed6"
38SRC_URI[sha256sum] = "db5b27df7bbb318036ebdb75acd3e98f1bd6eb6608fb70a67d478cd243d178dc"