blob: 8c9ddbbce59743e326fe0d32633a2883b0f527af (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.1 2004/05/31 14:21:06 foser Exp $
# Author: foser <foser@gentoo.org>
# Font Eclass
#
# Eclass to make font installation more uniform
ECLASS="font"
INHERITED="$INHERITED $ECLASS"
#
# Variable declarations
#
FONT_SUFFIX="" # Space delimited list of font suffixes to install
DOCS="" # Docs to install
IUSE="${IUSE} X"
DEPEND="${DEPEND} \
X? ( virtual/x11 ) \
media-libs/fontconfig"
#
# Public inheritable functions
#
font_src_install() {
local suffix, doc
insinto /usr/share/fonts/${PN}
for suffix in ${FONT_SUFFIX}; do
doins ${S}/*.${suffix}
done
rm -f fonts.{dir,scale} encodings.dir
# create Xfont files
if [ -n "`use X`" ] ;
then
einfo "Creating fonts.scale & fonts.dir..."
mkfontscale ${D}/usr/share/fonts/${PN}
mkfontdir \
-e /usr/share/fonts/encodings \
-e /usr/share/fonts/encodings/large \
-e /usr/X11R6/lib/X11/fonts/encodings ${D}/usr/share/fonts/${PN}
doins fonts.alias
fi
# create fontconfig cache
einfo "Creating fontconfig cache..."
HOME="/root" /usr/bin/fc-cache -f ${D}/usr/share/fonts/${PN}
# try to install some common docs
DOCS="${DOCS} COPYRIGHT README NEWS"
for doc in ${DOCS}; do
dodoc ${doc}
done
}
EXPORT_FUNCTIONS src_install
|