blob: 655baddef1dec9802439853755cb3f16ceef89d5 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Copyright 1999-2003 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-r4.ebuild,v 1.6 2003/02/13 12:43:00 vapier Exp $
inherit debug eutils
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 alpha ppc sparc "
# Seems like patches in freetype-2.1.2-r2 fixes bug #10028
DEPEND=">=media-libs/freetype-2.1.2-r2
>=dev-libs/expat-1.95.3
>=sys-apps/ed-0.2"
pkg_setup() {
# Do not use 'cc' to compile
[ ! -n "${CC}" ] && export CC="gcc" || :
}
src_unpack() {
unpack ${A}
cd ${S}
local PPREFIX="${FILESDIR}/patch/${PN}"
#einfo "Applying patches..."
# Some patches from Redhat
epatch ${PPREFIX}-2.0-defaultconfig.patch
epatch ${PPREFIX}-0.0.1.020811.1151-slighthint.patch
# Blacklist certain fonts that freetype can't handle
epatch ${PPREFIX}-0.0.1.020826.1330-blacklist.patch
# Patch from Keith Packard to fix problem where
# subdirectories could get lost from ~/.fonts.cache
epatch ${PPREFIX}-2.0-subdir.patch
# Fix problem with italic fonts if no map file present,
# bug #10028.
# epatch ${PPREFIX}-2.0-font-matrix.patch
# Fix config script to alway include X11 fontpath and remove date
epatch ${PPREFIX}-2.0-x11fontpath-date-configure.patch
}
src_compile() {
econf \
--x-includes=/usr/X11R6/include \
--x-libraries=/usr/X11R6/lib || die
emake || die
}
src_install() {
einstall confdir=${D}/etc/fonts \
datadir=${D}/usr/share || 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..."
HOME="/root" /usr/bin/fc-cache -f
fi
}
|