blob: dc8074daf3e8a77b2d066f9a73eb3c0527c0e859 (
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/fontconfig/fontconfig-2.4.1.ebuild,v 1.1 2006/09/17 14:41:16 foser Exp $
inherit eutils libtool autotools
DESCRIPTION="A library for configuring and customizing font access"
HOMEPAGE="http://fontconfig.org/"
SRC_URI="http://fontconfig.org/release/${P}.tar.gz"
LICENSE="fontconfig"
SLOT="1.0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="doc xml"
RDEPEND=">=media-libs/freetype-2.1.4
!xml? ( >=dev-libs/expat-1.95.3 )
xml? ( >=dev-libs/libxml2-2.6 )"
DEPEND="${RDEPEND}
doc? ( app-text/docbook-sgml-utils )"
src_unpack() {
unpack ${A}
cd "${S}"
# add docbook switch so we can disable it
epatch "${FILESDIR}"/${PN}-2.3.2-docbook.patch
eautoreconf
# elibtoolize
epunt_cxx #74077
}
src_compile() {
[ "${ARCH}" == "alpha" -a "${CC}" == "ccc" ] && \
die "Dont compile fontconfig with ccc, it doesnt work very well"
# disable docs only disables local docs generation, they come with the tarball
econf $(use_enable doc docs) \
$(use_enable doc docbook) \
--localstatedir=/var \
--with-docdir=/usr/share/doc/${PF} \
--with-default-fonts=/usr/share/fonts \
--with-add-fonts=/usr/local/share/fonts,/usr/X11R6/lib/X11/fonts \
$(use_enable xml libxml2) \
|| die
emake -j1 || die
}
src_install() {
make DESTDIR="${D}" install || die
insinto /etc/fonts
doins "${S}"/fonts.conf
newins "${S}"/fonts.conf fonts.conf.new
cd "${S}"
newman doc/fonts-conf.5 fonts-conf.5
dohtml doc/fontconfig-user.html
dodoc doc/fontconfig-user.{txt,pdf}
if use doc; then
doman doc/Fc*.3
dohtml doc/fontconfig-devel.html doc
dohtml -r doc/fontconfig-devel
dodoc doc/fontconfig-devel.{txt,pdf}
fi
dodoc AUTHORS ChangeLog NEWS README
}
pkg_postinst() {
# Changes should be made to /etc/fonts/local.conf, and as we had
# too much problems with broken fonts.conf, we force update it ...
# <azarah@gentoo.org> (11 Dec 2002)
ewarn "Please make fontconfig configuration changes in /etc/fonts/conf.d/"
ewarn "and NOT to /etc/fonts/fonts.conf, as it will be replaced!"
mv -f ${ROOT}/etc/fonts/fonts.conf.new ${ROOT}/etc/fonts/fonts.conf
rm -f ${ROOT}/etc/fonts/._cfg????_fonts.conf
if [ "${ROOT}" = "/" ]
then
ebegin "Creating global font cache..."
/usr/bin/fc-cache -s
eend $?
fi
}
|