blob: 50dea18de8e65c7cf6f9fe1920764485aabcf777 (
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-2004 Gentoo Foundation
# 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.12 2004/07/14 17:09:35 agriffis 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 amd64 hppa ia64"
IUSE="X"
DEPEND="X? ( virtual/x11 )"
src_install() {
insinto /usr/share/fonts/${PN}
doins *.ttf
if 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 ."
}
|