diff options
| author | Richard Purdie <richard@openedhand.com> | 2005-08-31 18:07:55 +0000 |
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2005-08-31 18:07:55 +0000 |
| commit | 9ed0d2aa99a76a864d4793f54146c0e79e373712 (patch) | |
| tree | bf6b07b0cfcc23ebb23130013e348ff84f38ce32 /openembedded/packages/vera-fonts | |
| parent | 047f13b69a6907483a4cf71cf20c8434e20c8873 (diff) | |
| download | poky-9ed0d2aa99a76a864d4793f54146c0e79e373712.tar.gz | |
Add some extra packages to the image
git-svn-id: https://svn.o-hand.com/repos/poky@10 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/vera-fonts')
| -rw-r--r-- | openembedded/packages/vera-fonts/ttf-bitstream-vera_1.10.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/openembedded/packages/vera-fonts/ttf-bitstream-vera_1.10.bb b/openembedded/packages/vera-fonts/ttf-bitstream-vera_1.10.bb new file mode 100644 index 0000000000..b756c99e4c --- /dev/null +++ b/openembedded/packages/vera-fonts/ttf-bitstream-vera_1.10.bb | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | DESCRIPTION = "The Bitstream Vera fonts - TTF Edition" | ||
| 2 | SECTION = "x11/fonts" | ||
| 3 | PRIORITY = "optional" | ||
| 4 | LICENSE = "Bitstream Vera" | ||
| 5 | PACKAGE_ARCH = "all" | ||
| 6 | PR = "r3" | ||
| 7 | RDEPENDS = "libfontconfig-utils" | ||
| 8 | |||
| 9 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/ttf-bitstream-vera/1.10/ttf-bitstream-vera-${PV}.tar.bz2" | ||
| 10 | |||
| 11 | do_install () { | ||
| 12 | install -d ${D}${prefix}/share/fonts/ttf/ | ||
| 13 | for i in *.ttf; do | ||
| 14 | install -m 644 $i ${D}${prefix}/share/fonts/ttf/${i} | ||
| 15 | done | ||
| 16 | |||
| 17 | # fontconfig ships this too. not sure what to do about it. | ||
| 18 | #install -d ${D}${sysconfdir}/fonts | ||
| 19 | #install -m 644 local.conf ${D}${sysconfdir}/fonts/local.conf | ||
| 20 | |||
| 21 | |||
| 22 | install -d ${D}${prefix}/share/doc/${PN}/ | ||
| 23 | for i in *.TXT; do | ||
| 24 | install -m 644 $i ${D}${prefix}/share/doc/${PN}/$i | ||
| 25 | done | ||
| 26 | } | ||
| 27 | |||
| 28 | pkg_postinst () { | ||
| 29 | #!/bin/sh | ||
| 30 | fc-cache | ||
| 31 | } | ||
| 32 | |||
| 33 | |||
| 34 | FILES_${PN} = "/etc ${datadir}/fonts" | ||
