blob: c4bcf5308ca40f37d4be23d7ae12696d99bd5fc8 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-fonts/freefonts/freefonts-0.10-r2.ebuild,v 1.11 2004/06/24 22:27:57 agriffis Exp $
S=${WORKDIR}/freefont
DESCRIPTION="A Collection of Free Type1 Fonts"
SRC_URI="mirror://gimp/fonts/${P}.tar.gz"
HOMEPAGE="http://www.gimp.org"
KEYWORDS="x86 sparc ppc amd64"
SLOT="0"
LICENSE="freedist"
IUSE="X"
src_install () {
insinto /usr/share/fonts/freefont
doins *.pfb
if use X ;
then
mkfontscale
mkfontdir
doins fonts.*
fi
dodoc README *.license
}
pkg_postinst() {
if [ "${ROOT}" = "/" ] && [ -x /usr/bin/fc-cache ]
then
echo
einfo "Creating font cache..."
HOME="/root" /usr/bin/fc-cache -f
fi
einfo "The freefonts dir has been moved from /usr/X11R6/lib/X11/fonts/freefont to /usr/share/fonts/freefont ."
einfo "Setting new fontpaths for X might be necessary in some cases."
}
|