| 1 | # Copyright 1999-2004 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2007 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.2 2004/05/31 14:59:26 foser Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/font.eclass,v 1.36 2008/01/08 17:57:43 pva Exp $ |
| 4 | |
4 | |
| 5 | # Author: foser <foser@gentoo.org> |
5 | # Author: foser <foser@gentoo.org> |
| 6 | |
6 | |
| 7 | # Font Eclass |
7 | # Font Eclass |
| 8 | # |
8 | # |
| 9 | # Eclass to make font installation more uniform |
9 | # Eclass to make font installation uniform |
| 10 | |
10 | |
| 11 | ECLASS="font" |
11 | inherit eutils |
| 12 | INHERITED="$INHERITED $ECLASS" |
|
|
| 13 | |
12 | |
| 14 | # |
13 | # |
| 15 | # Variable declarations |
14 | # Variable declarations |
| 16 | # |
15 | # |
| 17 | |
16 | |
| 18 | FONT_SUFFIX="" # Space delimited list of font suffixes to install |
17 | FONT_SUFFIX="" # Space delimited list of font suffixes to install |
| 19 | |
18 | |
| 20 | FONT_S="${S}" # Dir containing the fonts |
19 | FONT_S=${S} # Dir containing the fonts |
|
|
20 | |
|
|
21 | FONT_PN=${PN} # Last part of $FONTDIR |
|
|
22 | |
|
|
23 | FONTDIR=/usr/share/fonts/${FONT_PN} # This is where the fonts are installed |
|
|
24 | |
|
|
25 | FONT_CONF=( "" ) # Array, which element(s) is(are) path(s) of fontconfig-2.4 file(s) to install |
| 21 | |
26 | |
| 22 | DOCS="" # Docs to install |
27 | DOCS="" # Docs to install |
| 23 | |
28 | |
| 24 | IUSE="${IUSE} X" |
29 | IUSE="X" |
| 25 | |
30 | |
| 26 | DEPEND="${DEPEND} \ |
31 | DEPEND="X? ( x11-apps/mkfontdir ) |
| 27 | X? ( virtual/x11 ) \ |
|
|
| 28 | media-libs/fontconfig" |
32 | media-libs/fontconfig" |
| 29 | |
33 | |
| 30 | # |
34 | # |
| 31 | # Public functions |
35 | # Public functions |
| 32 | # |
36 | # |
| 33 | |
37 | |
| 34 | font_xfont_config() { |
38 | font_xfont_config() { |
| 35 | |
|
|
| 36 | # create Xfont files |
39 | # create Xfont files |
| 37 | if [ -n "`use X`" ] ; |
40 | if use X ; then |
| 38 | then |
|
|
| 39 | einfo "Creating fonts.scale & fonts.dir..." |
41 | einfo "Creating fonts.scale & fonts.dir ..." |
| 40 | mkfontscale ${D}/usr/share/fonts/${PN} |
42 | mkfontscale "${D}${FONTDIR}" |
| 41 | mkfontdir \ |
43 | mkfontdir \ |
| 42 | -e /usr/share/fonts/encodings \ |
44 | -e /usr/share/fonts/encodings \ |
| 43 | -e /usr/share/fonts/encodings/large \ |
45 | -e /usr/share/fonts/encodings/large \ |
| 44 | -e /usr/X11R6/lib/X11/fonts/encodings \ |
46 | "${D}${FONTDIR}" |
| 45 | ${D}/usr/share/fonts/${PN} |
47 | if [ -e "${FONT_S}/fonts.alias" ] ; then |
| 46 | doins ${FONT_S}/fonts.alias |
48 | doins "${FONT_S}/fonts.alias" |
|
|
49 | fi |
| 47 | fi |
50 | fi |
| 48 | |
|
|
| 49 | } |
51 | } |
| 50 | |
52 | |
| 51 | font_xft_config() { |
53 | font_xft_config() { |
|
|
54 | if ! has_version '>=media-libs/fontconfig-2.4'; then |
|
|
55 | # create fontconfig cache |
|
|
56 | einfo "Creating fontconfig cache ..." |
|
|
57 | # Mac OS X has fc-cache at /usr/X11R6/bin |
|
|
58 | HOME="/root" fc-cache -f "${D}${FONTDIR}" |
|
|
59 | fi |
|
|
60 | } |
| 52 | |
61 | |
| 53 | # create fontconfig cache |
62 | font_fontconfig() { |
| 54 | einfo "Creating fontconfig cache..." |
63 | local conffile |
| 55 | HOME="/root" /usr/bin/fc-cache -f ${D}/usr/share/fonts/${PN} |
64 | if [[ -n ${FONT_CONF[@]} ]]; then |
| 56 | |
65 | if has_version '>=media-libs/fontconfig-2.4'; then |
|
|
66 | insinto /etc/fonts/conf.avail/ |
|
|
67 | for conffile in "${FONT_CONF[@]}"; do |
|
|
68 | [[ -e ${conffile} ]] && doins ${conffile} |
|
|
69 | done |
|
|
70 | fi |
|
|
71 | fi |
| 57 | } |
72 | } |
| 58 | |
73 | |
| 59 | # |
74 | # |
| 60 | # Public inheritable functions |
75 | # Public inheritable functions |
| 61 | # |
76 | # |
| 62 | |
77 | |
| 63 | font_src_install() { |
78 | font_src_install() { |
|
|
79 | local suffix commondoc |
| 64 | |
80 | |
| 65 | local suffix doc |
81 | cd "${FONT_S}" |
| 66 | |
82 | |
| 67 | cd ${FONT_S} |
83 | insinto "${FONTDIR}" |
| 68 | |
84 | |
| 69 | insinto /usr/share/fonts/${PN} |
|
|
| 70 | |
|
|
| 71 | for suffix in ${FONT_SUFFIX}; do |
85 | for suffix in ${FONT_SUFFIX}; do |
| 72 | doins *.${suffix} |
86 | doins *.${suffix} |
| 73 | done |
87 | done |
| 74 | |
88 | |
| 75 | rm -f fonts.{dir,scale} encodings.dir |
89 | rm -f fonts.{dir,scale} encodings.dir |
| 76 | |
90 | |
| 77 | font_xfont_config |
91 | font_xfont_config |
| 78 | font_xft_config |
92 | font_xft_config |
|
|
93 | font_fontconfig |
| 79 | |
94 | |
| 80 | cd ${S} |
95 | cd "${S}" |
|
|
96 | dodoc ${DOCS} 2> /dev/null |
|
|
97 | |
| 81 | # try to install some common docs |
98 | # install common docs |
| 82 | DOCS="${DOCS} COPYRIGHT README NEWS" |
99 | for commondoc in COPYRIGHT README NEWS AUTHORS BUGS ChangeLog; do |
| 83 | for doc in ${DOCS}; do |
100 | [[ -s ${commondoc} ]] && dodoc ${commondoc} |
| 84 | dodoc ${doc} |
|
|
| 85 | done |
101 | done |
| 86 | |
|
|
| 87 | } |
102 | } |
| 88 | |
103 | |
| 89 | EXPORT_FUNCTIONS src_install |
104 | font_pkg_setup() { |
|
|
105 | # make sure we get no collisions |
|
|
106 | # setup is not the nicest place, but preinst doesn't cut it |
|
|
107 | [[ -e "${FONTDIR}/fonts.cache-1" ]] && rm -f "${FONTDIR}/fonts.cache-1" |
|
|
108 | } |
|
|
109 | |
|
|
110 | font_pkg_postinst() { |
|
|
111 | # unreadable font files = fontconfig segfaults |
|
|
112 | find "${ROOT}"usr/share/fonts/ -type f '!' -perm 0644 -print0 \ |
|
|
113 | | xargs -0 chmod -v 0644 2>/dev/null |
|
|
114 | |
|
|
115 | if has_version '>=media-libs/fontconfig-2.4'; then |
|
|
116 | if [ ${ROOT} == "/" ]; then |
|
|
117 | ebegin "Updating global fontcache" |
|
|
118 | fc-cache -fs |
|
|
119 | eend $? |
|
|
120 | fi |
|
|
121 | fi |
|
|
122 | } |
|
|
123 | |
|
|
124 | font_pkg_postrm() { |
|
|
125 | # unreadable font files = fontconfig segfaults |
|
|
126 | find "${ROOT}"usr/share/fonts/ -type f '!' -perm 0644 -print0 \ |
|
|
127 | | xargs -0 chmod -v 0644 2>/dev/null |
|
|
128 | |
|
|
129 | if has_version '>=media-libs/fontconfig-2.4'; then |
|
|
130 | if [ ${ROOT} == "/" ]; then |
|
|
131 | ebegin "Updating global fontcache" |
|
|
132 | fc-cache -fs |
|
|
133 | eend $? |
|
|
134 | fi |
|
|
135 | fi |
|
|
136 | } |
|
|
137 | |
|
|
138 | EXPORT_FUNCTIONS src_install pkg_setup pkg_postinst pkg_postrm |