diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-03-30 12:14:42 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-03-30 12:14:42 +0000 |
commit | 3a8a95c0afca204324e2c49e3a89cafbf59bf549 (patch) | |
tree | ca68e161f8917730d7202988f42c6cd07afb2d32 /vera-fonts/ttf-bitstream-vera_1.10.oe | |
parent | 3ea92ccb1cea24ea189b12b29aef599ee7658b2c (diff) |
apply lots of patches courtesy pb_
BKrev: 406964b2zzrDAOnwkUK6ASqCv3FYdA
Diffstat (limited to 'vera-fonts/ttf-bitstream-vera_1.10.oe')
-rw-r--r-- | vera-fonts/ttf-bitstream-vera_1.10.oe | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/vera-fonts/ttf-bitstream-vera_1.10.oe b/vera-fonts/ttf-bitstream-vera_1.10.oe index e69de29bb2..f423fa0264 100644 --- a/vera-fonts/ttf-bitstream-vera_1.10.oe +++ b/vera-fonts/ttf-bitstream-vera_1.10.oe @@ -0,0 +1,31 @@ +DESCRIPTION = "The Bitstream Vera fonts - TTF Edition" +SECTION = "fonts" +PRIORITY = "optional" + +SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/ttf-bitstream-vera/1.10/ttf-bitstream-vera-${PV}.tar.bz2" + + +FILES_${PN} = "/etc /usr/share/fonts" + + +do_install () { + install -d ${D}${prefix}/share/fonts/ttf/ + for i in *.ttf; do + install -m 644 $i ${D}${prefix}/share/fonts/ttf/${i} + done + + # fontconfig ships this too. not sure what to do about it. + #install -d ${D}/etc/fonts + #install -m 644 local.conf ${D}/etc/fonts/local.conf + + + install -d ${D}${prefix}/share/doc/${PN}/ + for i in *.TXT; do + install -m 644 $i ${D}${prefix}/share/doc/${PN}/$i + done +} + +pkg_postinst () { +#!/bin/sh +fc-cache +} |