blob: 0d5ebbb8940a2740c1685bad4a3dbf249b233bab (
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
41
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/fontconfig/fontconfig-2.0.ebuild,v 1.1 2002/09/30 22:03:13 azarah Exp $
S="${WORKDIR}/fcpackage.${PV/\./_}/fontconfig"
DESCRIPTION="A library for configuring and customizing font access."
SRC_URI="http://fontconfig.org/release/fcpackage.${PV/\./_}.tar.gz"
HOMEPAGE="http://fontconfig.org/"
LICENSE="fontconfig"
SLOT="1.0"
KEYWORDS="x86"
DEPEND=">=media-libs/freetype-2.0.9
>=dev-libs/expat-1.95.3"
src_compile() {
econf || die
emake || die
}
src_install() {
einstall || die
insinto /etc/fonts
doins ${S}/fonts.conf
cd ${S}
mv fc-cache/fc-cache.man fc-cache/fc-cache.1
mv fc-list/fc-list.man fc-list/fc-list.1
mv src/fontconfig.man src/fontconfig.3
for x in fc-cache/fc-cache.1 fc-list/fc-list.1 src/fontconfig.3
do
doman ${x}
done
dodoc AUTHORS COPYING ChangeLog NEWS README
}
pkg_postinst() {
if [ "${ROOT}" = "/" ]
then
einfo "Creating font cache..."
/usr/bin/fc-cache
fi
}
|