blob: 76c4f13e5876e724b6f34e3cf95ce72a7d5f0074 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/ttf-bitstream-vera/ttf-bitstream-vera-1.10-r2.ebuild,v 1.2 2003/07/18 21:37:21 tester Exp $
inherit gnome.org
DESCRIPTION="Bitstream Vera font family"
HOMEPAGE="http://www.gnome.org/fonts/"
LICENSE="BitstreamVera"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc ~alpha ~mips ~arm amd64"
IUSE=""
DEPEND="X? ( virtual/x11 )"
src_install() {
insinto /usr/share/fonts/${PN}
doins *.ttf
if [ -n "`use X`" ] ;
then
mkfontscale
mkfontdir
doins fonts*
fi
dodoc COPYRIGHT.TXT README.TXT RELEASENOTES.TXT
}
pkg_postinst() {
if [ "${ROOT}" = "/" ] && [ -x /usr/bin/fc-cache ]
then
echo
einfo "Creating font cache..."
HOME="/root" /usr/bin/fc-cache -f
fi
einfo "For optimal performance of this font we suggest updating to at least fontconfig-2.1.94 ."
}
|