| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 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/x-modular.eclass,v 1.86 2007/09/24 08:20:00 dberkholz Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.118 2009/12/09 10:21:49 vapier Exp $ |
| 4 | # |
4 | # |
|
|
5 | # @ECLASS: x-modular.eclass |
|
|
6 | # @MAINTAINER: |
| 5 | # Author: Donnie Berkholz <dberkholz@gentoo.org> |
7 | # Donnie Berkholz <dberkholz@gentoo.org>, x11@gentoo.org |
|
|
8 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
|
|
9 | # @DESCRIPTION: |
|
|
10 | # This eclass makes trivial X ebuilds possible for apps, fonts, drivers, |
|
|
11 | # and more. Many things that would normally be done in various functions |
|
|
12 | # can be accessed by setting variables instead, such as patching, |
|
|
13 | # running eautoreconf, passing options to configure and installing docs. |
| 6 | # |
14 | # |
| 7 | # This eclass is designed to reduce code duplication in the modularized X11 |
15 | # All you need to do in a basic ebuild is inherit this eclass and set |
| 8 | # ebuilds. |
16 | # DESCRIPTION, KEYWORDS and RDEPEND/DEPEND. If your package is hosted |
| 9 | # |
17 | # with the other X packages, you don't need to set SRC_URI. Pretty much |
| 10 | # Using this eclass: |
|
|
| 11 | # |
|
|
| 12 | # Inherit it. If you need to run autoreconf for any reason (e.g., your patches |
|
|
| 13 | # apply to the autotools files rather than configure), set SNAPSHOT="yes". Set |
|
|
| 14 | # CONFIGURE_OPTIONS to everything you want to pass to the configure script. |
|
|
| 15 | # |
|
|
| 16 | # If you have any patches to apply, set PATCHES to their locations and epatch |
|
|
| 17 | # will apply them. It also handles epatch-style bulk patches, if you know how to |
|
|
| 18 | # use them and set the correct variables. If you don't, read eutils.eclass. |
|
|
| 19 | # |
|
|
| 20 | # If you're creating a font package and the suffix of PN is not equal to the |
|
|
| 21 | # subdirectory of /usr/share/fonts/ it should install into, set FONT_DIR to that |
|
|
| 22 | # directory or directories. |
|
|
| 23 | # |
|
|
| 24 | # If you want to change the auto-application of the driver patchset or prevent |
|
|
| 25 | # it from applying, edit XDPVER in the ebuild. Set it to -1 to prevent patch |
|
|
| 26 | # application or positive integers for that patch version. |
|
|
| 27 | # |
|
|
| 28 | # IMPORTANT: SNAPSHOT, FONT_DIR and XDPVER must be set _before_ the inherit. |
|
|
| 29 | # |
|
|
| 30 | # If you want to install to a non-default prefix (e.g., /opt/xorg), change |
|
|
| 31 | # XDIR. This has not been recently tested. You may need to uncomment the |
|
|
| 32 | # setting of datadir and mandir in x-modular_src_install() or add it back in if |
|
|
| 33 | # it's no longer there. You may also want to change the SLOT. |
|
|
| 34 | # |
|
|
| 35 | # Pretty much everything else should be automatic. |
18 | # everything else should be automatic. |
| 36 | |
19 | |
| 37 | # Directory prefix to use for everything |
20 | if [[ ${PV} = 9999* ]]; then |
|
|
21 | GIT_ECLASS="git" |
|
|
22 | SNAPSHOT="yes" |
|
|
23 | SRC_URI="" |
|
|
24 | fi |
|
|
25 | |
|
|
26 | # If we're a font package, but not the font.alias one |
|
|
27 | FONT_ECLASS="" |
|
|
28 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
29 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
|
|
30 | && [[ "${PN}" != "font-alias" ]] \ |
|
|
31 | && [[ "${PN}" != "font-util" ]]; then |
|
|
32 | # Activate font code in the rest of the eclass |
|
|
33 | FONT="yes" |
|
|
34 | |
|
|
35 | # Whether to inherit the font eclass |
|
|
36 | FONT_ECLASS="font" |
|
|
37 | fi |
|
|
38 | |
|
|
39 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
|
|
40 | ${FONT_ECLASS} ${GIT_ECLASS} |
|
|
41 | |
|
|
42 | EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm" |
|
|
43 | |
|
|
44 | case "${EAPI:-0}" in |
|
|
45 | 0|1) |
|
|
46 | ;; |
|
|
47 | 2) |
|
|
48 | EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" |
|
|
49 | ;; |
|
|
50 | *) |
|
|
51 | die "Unknown EAPI ${EAPI}" |
|
|
52 | ;; |
|
|
53 | esac |
|
|
54 | |
|
|
55 | # exports must be ALWAYS after inherit |
|
|
56 | EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS} |
|
|
57 | |
|
|
58 | # @ECLASS-VARIABLE: XDIR |
|
|
59 | # @DESCRIPTION: |
|
|
60 | # Directory prefix to use for everything. If you want to install to a |
|
|
61 | # non-default prefix (e.g., /opt/xorg), change XDIR. This has not been |
|
|
62 | # recently tested. You may need to uncomment the setting of datadir and |
|
|
63 | # mandir in x-modular_src_install() or add it back in if it's no longer |
|
|
64 | # there. You may also want to change the SLOT. |
| 38 | XDIR="/usr" |
65 | XDIR="/usr" |
| 39 | |
|
|
| 40 | # Set up default patchset version(s) if necessary |
|
|
| 41 | # x11-driver-patches |
|
|
| 42 | if [[ -z "${XDPVER}" ]]; then |
|
|
| 43 | XDPVER="1" |
|
|
| 44 | fi |
|
|
| 45 | |
66 | |
| 46 | IUSE="" |
67 | IUSE="" |
| 47 | HOMEPAGE="http://xorg.freedesktop.org/" |
68 | HOMEPAGE="http://xorg.freedesktop.org/" |
| 48 | |
69 | |
|
|
70 | # @ECLASS-VARIABLE: SNAPSHOT |
|
|
71 | # @DESCRIPTION: |
|
|
72 | # If set to 'yes' and configure.ac exists, eautoreconf will run. Set |
|
|
73 | # before inheriting this eclass. |
|
|
74 | : ${SNAPSHOT:=no} |
|
|
75 | |
| 49 | # Set up SRC_URI for individual modular releases |
76 | # Set up SRC_URI for individual modular releases |
| 50 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
77 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
| 51 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
78 | # @ECLASS-VARIABLE: MODULE |
| 52 | SRC_URI="${SRC_URI} |
79 | # @DESCRIPTION: |
| 53 | ${BASE_INDIVIDUAL_URI}/app/${P}.tar.bz2" |
80 | # The subdirectory to download source from. Possible settings are app, |
| 54 | elif [[ ${CATEGORY} = app-doc ]]; then |
81 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
| 55 | SRC_URI="${SRC_URI} |
82 | # inherit to override the default autoconfigured module. |
| 56 | ${BASE_INDIVIDUAL_URI}/doc/${P}.tar.bz2" |
83 | if [[ -z ${MODULE} ]]; then |
| 57 | # x11-misc contains data and util, x11-themes contains data |
84 | case ${CATEGORY} in |
| 58 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
85 | app-doc) MODULE="doc" ;; |
| 59 | SRC_URI="${SRC_URI} |
86 | media-fonts) MODULE="font" ;; |
| 60 | ${BASE_INDIVIDUAL_URI}/data/${P}.tar.bz2 |
87 | x11-apps|x11-wm) MODULE="app" ;; |
| 61 | ${BASE_INDIVIDUAL_URI}/util/${P}.tar.bz2" |
88 | x11-misc|x11-themes) MODULE="util" ;; |
| 62 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
89 | x11-drivers) MODULE="driver" ;; |
| 63 | SRC_URI="${SRC_URI} |
90 | x11-base) MODULE="xserver" ;; |
| 64 | ${BASE_INDIVIDUAL_URI}/driver/${P}.tar.bz2" |
91 | x11-proto) MODULE="proto" ;; |
| 65 | elif [[ ${CATEGORY} = media-fonts ]]; then |
92 | x11-libs) MODULE="lib" ;; |
| 66 | SRC_URI="${SRC_URI} |
93 | esac |
| 67 | ${BASE_INDIVIDUAL_URI}/font/${P}.tar.bz2" |
94 | fi |
| 68 | elif [[ ${CATEGORY} = x11-libs ]]; then |
95 | |
| 69 | SRC_URI="${SRC_URI} |
96 | if [[ -n ${GIT_ECLASS} ]]; then |
| 70 | ${BASE_INDIVIDUAL_URI}/lib/${P}.tar.bz2" |
97 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}/${PN}" |
| 71 | elif [[ ${CATEGORY} = x11-proto ]]; then |
98 | else |
| 72 | SRC_URI="${SRC_URI} |
99 | SRC_URI="${SRC_URI} ${BASE_INDIVIDUAL_URI}/${MODULE}/${P}.tar.bz2" |
| 73 | ${BASE_INDIVIDUAL_URI}/proto/${P}.tar.bz2" |
|
|
| 74 | elif [[ ${CATEGORY} = x11-base ]]; then |
|
|
| 75 | SRC_URI="${SRC_URI} |
|
|
| 76 | ${BASE_INDIVIDUAL_URI}/xserver/${P}.tar.bz2" |
|
|
| 77 | fi |
100 | fi |
| 78 | |
101 | |
| 79 | SLOT="0" |
102 | SLOT="0" |
| 80 | |
103 | |
| 81 | # Set the license for the package. This can be overridden by setting |
104 | # Set the license for the package. This can be overridden by setting |
| 82 | # LICENSE after the inherit. |
105 | # LICENSE after the inherit. Nearly all FreeDesktop-hosted X packages |
| 83 | LICENSE=${PN} |
106 | # are under the MIT license. (This is what Red Hat does in their rpms) |
|
|
107 | LICENSE="MIT" |
| 84 | |
108 | |
| 85 | # Set up shared dependencies |
109 | # Set up shared dependencies |
| 86 | if [[ -n "${SNAPSHOT}" ]]; then |
110 | if [[ -n "${SNAPSHOT}" ]]; then |
| 87 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
111 | # FIXME: What's the minimal libtool version supporting arbitrary versioning? |
| 88 | DEPEND="${DEPEND} |
112 | DEPEND="${DEPEND} |
| … | |
… | |
| 90 | >=sys-devel/m4-1.4" |
114 | >=sys-devel/m4-1.4" |
| 91 | WANT_AUTOCONF="latest" |
115 | WANT_AUTOCONF="latest" |
| 92 | WANT_AUTOMAKE="latest" |
116 | WANT_AUTOMAKE="latest" |
| 93 | fi |
117 | fi |
| 94 | |
118 | |
| 95 | # If we're a font package, but not the font.alias one |
119 | if [[ -n "${FONT}" ]]; then |
| 96 | FONT_ECLASS="" |
|
|
| 97 | if [[ "${PN/#font-}" != "${PN}" ]] \ |
|
|
| 98 | && [[ "${CATEGORY}" = "media-fonts" ]] \ |
|
|
| 99 | && [[ "${PN}" != "font-alias" ]] \ |
|
|
| 100 | && [[ "${PN}" != "font-util" ]]; then |
|
|
| 101 | # Activate font code in the rest of the eclass |
|
|
| 102 | FONT="yes" |
|
|
| 103 | |
|
|
| 104 | # Whether to inherit the font eclass |
|
|
| 105 | FONT_ECLASS="font" |
|
|
| 106 | |
|
|
| 107 | RDEPEND="${RDEPEND} |
120 | RDEPEND="${RDEPEND} |
| 108 | media-fonts/encodings |
121 | media-fonts/encodings |
| 109 | x11-apps/mkfontscale |
122 | x11-apps/mkfontscale |
| 110 | x11-apps/mkfontdir" |
123 | x11-apps/mkfontdir" |
| 111 | PDEPEND="${PDEPEND} |
124 | PDEPEND="${PDEPEND} |
| 112 | media-fonts/font-alias" |
125 | media-fonts/font-alias" |
| 113 | |
126 | |
| 114 | # Starting with 7.0RC3, we can specify the font directory |
127 | # Starting with 7.0RC3, we can specify the font directory |
| 115 | # But oddly, we can't do the same for encodings or font-alias |
128 | # But oddly, we can't do the same for encodings or font-alias |
| 116 | |
129 | |
| 117 | # Wrap in `if` so ebuilds can set it too |
130 | # @ECLASS-VARIABLE: FONT_DIR |
| 118 | if [[ -z ${FONT_DIR} ]]; then |
131 | # @DESCRIPTION: |
|
|
132 | # If you're creating a font package and the suffix of PN is not equal to |
|
|
133 | # the subdirectory of /usr/share/fonts/ it should install into, set |
|
|
134 | # FONT_DIR to that directory or directories. Set before inheriting this |
|
|
135 | # eclass. |
| 119 | FONT_DIR=${PN##*-} |
136 | : ${FONT_DIR:=${PN##*-}} |
| 120 | |
|
|
| 121 | fi |
|
|
| 122 | |
137 | |
| 123 | # Fix case of font directories |
138 | # Fix case of font directories |
| 124 | FONT_DIR=${FONT_DIR/ttf/TTF} |
139 | FONT_DIR=${FONT_DIR/ttf/TTF} |
| 125 | FONT_DIR=${FONT_DIR/otf/OTF} |
140 | FONT_DIR=${FONT_DIR/otf/OTF} |
| 126 | FONT_DIR=${FONT_DIR/type1/Type1} |
141 | FONT_DIR=${FONT_DIR/type1/Type1} |
| 127 | FONT_DIR=${FONT_DIR/speedo/Speedo} |
142 | FONT_DIR=${FONT_DIR/speedo/Speedo} |
| 128 | |
143 | |
| 129 | # Set up configure option |
144 | # Set up configure options, wrapped so ebuilds can override if need be |
|
|
145 | if [[ -z ${FONT_OPTIONS} ]]; then |
| 130 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
146 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
|
|
147 | fi |
| 131 | |
148 | |
| 132 | if [[ -n "${FONT}" ]]; then |
149 | if [[ -n "${FONT}" ]]; then |
| 133 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]]; then |
150 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]] || [[ ${PN##*-} = cyrillic ]]; then |
| 134 | IUSE="${IUSE} nls" |
151 | IUSE="${IUSE} nls" |
| 135 | fi |
152 | fi |
| 136 | fi |
153 | fi |
| 137 | fi |
154 | fi |
| 138 | |
155 | |
| 139 | # If we're a driver package |
156 | # If we're a driver package |
| 140 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
157 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 141 | # Enable driver code in the rest of the eclass |
158 | # Enable driver code in the rest of the eclass |
| 142 | DRIVER="yes" |
159 | DRIVER="yes" |
| 143 | |
|
|
| 144 | if [[ ${XDPVER} != -1 ]]; then |
|
|
| 145 | # Add driver patchset to SRC_URI |
|
|
| 146 | SRC_URI="${SRC_URI} |
|
|
| 147 | mirror://gentoo/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
| 148 | fi |
|
|
| 149 | fi |
160 | fi |
| 150 | |
161 | |
| 151 | # Debugging -- ignore packages that can't be built with debugging |
162 | # Debugging -- ignore packages that can't be built with debugging |
| 152 | if [[ -z "${FONT}" ]] \ |
163 | if [[ -z "${FONT}" ]] \ |
| 153 | || [[ "${PN/app-doc}" != "${PN}" ]] \ |
164 | && [[ "${CATEGORY/app-doc}" = "${CATEGORY}" ]] \ |
| 154 | || [[ "${PN/x11-proto}" != "${PN}" ]] \ |
165 | && [[ "${CATEGORY/x11-proto}" = "${CATEGORY}" ]] \ |
| 155 | || [[ "${PN/util-macros}" != "${PN}" ]] \ |
166 | && [[ "${PN/util-macros}" = "${PN}" ]] \ |
| 156 | || [[ "${PN/xbitmaps}" != "${PN}" ]] \ |
167 | && [[ "${PN/xbitmaps}" = "${PN}" ]] \ |
| 157 | || [[ "${PN/xkbdata}" != "${PN}" ]] \ |
168 | && [[ "${PN/xkbdata}" = "${PN}" ]] \ |
| 158 | || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ |
169 | && [[ "${PN/xorg-cf-files}" = "${PN}" ]] \ |
| 159 | || [[ "${PN/xcursor}" != "${PN}" ]] \ |
170 | && [[ "${PN/xcursor}" = "${PN}" ]] \ |
| 160 | ; then |
171 | ; then |
| 161 | DEBUGGABLE="yes" |
172 | DEBUGGABLE="yes" |
| 162 | IUSE="${IUSE} debug" |
173 | IUSE="${IUSE} debug" |
| 163 | fi |
174 | fi |
| 164 | |
175 | |
| 165 | DEPEND="${DEPEND} |
176 | DEPEND="${DEPEND} |
| 166 | >=dev-util/pkgconfig-0.18" |
177 | >=dev-util/pkgconfig-0.18" |
| 167 | |
178 | |
| 168 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
179 | if [[ "${PN/util-macros}" = "${PN}" ]]; then |
| 169 | DEPEND="${DEPEND} |
180 | DEPEND="${DEPEND} |
| 170 | >=x11-misc/util-macros-0.99.2 |
181 | >=x11-misc/util-macros-1.3.0 |
| 171 | >=sys-devel/binutils-2.16.1-r3" |
182 | sys-devel/binutils" |
| 172 | fi |
183 | fi |
| 173 | |
184 | |
| 174 | RDEPEND="${RDEPEND} |
185 | RDEPEND="${RDEPEND} |
| 175 | || ( >=sys-apps/man-1.6b-r2 >=sys-apps/man-db-2.4.3-r1 ) |
|
|
| 176 | !<=x11-base/xorg-x11-6.9" |
186 | !<=x11-base/xorg-x11-6.9" |
| 177 | # Provides virtual/x11 for temporary use until packages are ported |
187 | # Provides virtual/x11 for temporary use until packages are ported |
| 178 | # x11-base/x11-env" |
188 | # x11-base/x11-env" |
| 179 | |
189 | |
| 180 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools ${FONT_ECLASS} |
190 | # @FUNCTION: x-modular_specs_check |
| 181 | |
191 | # @USAGE: |
|
|
192 | # @DESCRIPTION: |
|
|
193 | # Make any necessary changes related to gcc specs (generally hardened) |
| 182 | x-modular_specs_check() { |
194 | x-modular_specs_check() { |
| 183 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
195 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
| 184 | append-ldflags -Wl,-z,lazy |
196 | append-ldflags -Wl,-z,lazy |
| 185 | # (#116698) breaks loading |
197 | # (#116698) breaks loading |
| 186 | filter-ldflags -Wl,-z,now |
198 | filter-ldflags -Wl,-z,now |
| 187 | fi |
199 | fi |
| 188 | } |
200 | } |
| 189 | |
201 | |
|
|
202 | # @FUNCTION: x-modular_dri_check |
|
|
203 | # @USAGE: |
|
|
204 | # @DESCRIPTION: |
|
|
205 | # Ensures the server supports DRI if building a driver with DRI support |
| 190 | x-modular_dri_check() { |
206 | x-modular_dri_check() { |
| 191 | # (#120057) Enabling DRI in drivers requires that the server was built with |
207 | # (#120057) Enabling DRI in drivers requires that the server was built with |
| 192 | # support for it |
208 | # support for it |
|
|
209 | # Starting with xorg-server 1.5.3, DRI support is always enabled unless |
|
|
210 | # USE=minimal is set (see bug #252084) |
| 193 | if [[ -n "${DRIVER}" ]]; then |
211 | if [[ -n "${DRIVER}" ]]; then |
| 194 | if has dri ${IUSE} && use dri; then |
212 | if has dri ${IUSE} && use dri; then |
| 195 | einfo "Checking for direct rendering capabilities ..." |
213 | einfo "Checking for direct rendering capabilities ..." |
|
|
214 | if has_version '>=x11-base/xorg-server-1.5.3'; then |
|
|
215 | if built_with_use x11-base/xorg-server minimal; then |
|
|
216 | die "You must build x11-base/xorg-server with USE=-minimal." |
|
|
217 | fi |
|
|
218 | else |
| 196 | if ! built_with_use x11-base/xorg-server dri; then |
219 | if ! built_with_use x11-base/xorg-server dri; then |
| 197 | die "You must build x11-base/xorg-server with USE=dri." |
220 | die "You must build x11-base/xorg-server with USE=dri." |
|
|
221 | fi |
| 198 | fi |
222 | fi |
| 199 | fi |
223 | fi |
| 200 | fi |
224 | fi |
| 201 | } |
225 | } |
| 202 | |
226 | |
|
|
227 | # @FUNCTION: x-modular_server_supports_drivers_check |
|
|
228 | # @USAGE: |
|
|
229 | # @DESCRIPTION: |
|
|
230 | # Ensures the server SDK is installed if a driver is being built |
| 203 | x-modular_server_supports_drivers_check() { |
231 | x-modular_server_supports_drivers_check() { |
| 204 | # (#135873) Only certain servers will actually use or be capable of |
232 | # (#135873) Only certain servers will actually use or be capable of |
| 205 | # building external drivers, including binary drivers. |
233 | # building external drivers, including binary drivers. |
| 206 | if [[ -n "${DRIVER}" ]]; then |
234 | if [[ -n "${DRIVER}" ]]; then |
| 207 | if has_version '>=x11-base/xorg-server-1.1'; then |
235 | if has_version '>=x11-base/xorg-server-1.1'; then |
| … | |
… | |
| 211 | fi |
239 | fi |
| 212 | fi |
240 | fi |
| 213 | fi |
241 | fi |
| 214 | } |
242 | } |
| 215 | |
243 | |
|
|
244 | # @FUNCTION: x-modular_unpack_source |
|
|
245 | # @USAGE: |
|
|
246 | # @DESCRIPTION: |
|
|
247 | # Simply unpack source code. Nothing else. |
| 216 | x-modular_unpack_source() { |
248 | x-modular_unpack_source() { |
|
|
249 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
250 | git_src_unpack |
|
|
251 | else |
| 217 | unpack ${A} |
252 | unpack ${A} |
|
|
253 | fi |
| 218 | cd ${S} |
254 | cd "${S}" |
| 219 | |
255 | |
| 220 | if [[ -n ${FONT_OPTIONS} ]]; then |
256 | if [[ -n ${FONT_OPTIONS} ]]; then |
| 221 | einfo "Detected font directory: ${FONT_DIR}" |
257 | einfo "Detected font directory: ${FONT_DIR}" |
| 222 | fi |
258 | fi |
| 223 | } |
259 | } |
| 224 | |
260 | |
|
|
261 | # @FUNCTION: x-modular_patch_source |
|
|
262 | # @USAGE: |
|
|
263 | # @DESCRIPTION: |
|
|
264 | # Apply all patches |
| 225 | x-modular_patch_source() { |
265 | x-modular_patch_source() { |
| 226 | # Use standardized names and locations with bulk patching |
266 | # Use standardized names and locations with bulk patching |
| 227 | # Patch directory is ${WORKDIR}/patch |
267 | # Patch directory is ${WORKDIR}/patch |
| 228 | # See epatch() in eutils.eclass for more documentation |
268 | # See epatch() in eutils.eclass for more documentation |
| 229 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
269 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
| 230 | EPATCH_SUFFIX="patch" |
270 | EPATCH_SUFFIX="patch" |
| 231 | fi |
271 | fi |
| 232 | |
272 | |
| 233 | # If this is a driver package we need to fix man page install location. |
273 | # @VARIABLE: PATCHES |
| 234 | # Running autoreconf will use the patched util-macros to make the |
274 | # @DESCRIPTION: |
| 235 | # change for us, so we only need to patch if it is not going to run. |
275 | # If you have any patches to apply, set PATCHES to their locations and epatch |
| 236 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]\ |
276 | # will apply them. It also handles epatch-style bulk patches, if you know how to |
| 237 | && [[ ${XDPVER} != -1 ]]; then |
277 | # use them and set the correct variables. If you don't, read eutils.eclass. |
| 238 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
278 | if [[ ${#PATCHES[@]} -gt 1 ]]; then |
| 239 | fi |
279 | for x in "${PATCHES[@]}"; do |
| 240 | |
280 | epatch "${x}" |
| 241 | # For specific list of patches |
281 | done |
| 242 | if [[ -n "${PATCHES}" ]] ; then |
282 | elif [[ -n "${PATCHES}" ]]; then |
| 243 | for PATCH in ${PATCHES} |
283 | for x in ${PATCHES}; do |
| 244 | do |
|
|
| 245 | epatch ${PATCH} |
284 | epatch "${x}" |
| 246 | done |
285 | done |
| 247 | # For non-default directory bulk patching |
286 | # For non-default directory bulk patching |
| 248 | elif [[ -n "${PATCH_LOC}" ]] ; then |
287 | elif [[ -n "${PATCH_LOC}" ]] ; then |
| 249 | epatch ${PATCH_LOC} |
288 | epatch ${PATCH_LOC} |
| 250 | # For standard bulk patching |
289 | # For standard bulk patching |
| 251 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
290 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
| 252 | epatch |
291 | epatch |
| 253 | fi |
292 | fi |
| 254 | } |
293 | } |
| 255 | |
294 | |
|
|
295 | # @FUNCTION: x-modular_reconf_source |
|
|
296 | # @USAGE: |
|
|
297 | # @DESCRIPTION: |
|
|
298 | # Run eautoreconf if necessary, and run elibtoolize. |
| 256 | x-modular_reconf_source() { |
299 | x-modular_reconf_source() { |
| 257 | # Run autoreconf for CVS snapshots only |
|
|
| 258 | if [[ "${SNAPSHOT}" = "yes" ]] |
300 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 259 | then |
301 | then |
| 260 | # If possible, generate configure if it doesn't exist |
302 | # If possible, generate configure if it doesn't exist |
| 261 | if [ -f "./configure.ac" ] |
303 | if [ -f "./configure.ac" ] |
| 262 | then |
304 | then |
| … | |
… | |
| 267 | # Joshua Baergen - October 23, 2005 |
309 | # Joshua Baergen - October 23, 2005 |
| 268 | # Fix shared lib issues on MIPS, FBSD, etc etc |
310 | # Fix shared lib issues on MIPS, FBSD, etc etc |
| 269 | elibtoolize |
311 | elibtoolize |
| 270 | } |
312 | } |
| 271 | |
313 | |
|
|
314 | # @FUNCTION: x-modular_src_prepare |
|
|
315 | # @USAGE: |
|
|
316 | # @DESCRIPTION: |
|
|
317 | # Prepare a package after unpacking, performing all X-related tasks. |
|
|
318 | x-modular_src_prepare() { |
|
|
319 | [[ -n ${GIT_ECLASS} ]] && has src_prepare ${EXPORTED_FUNCTIONS} \ |
|
|
320 | && git_src_prepare |
|
|
321 | x-modular_patch_source |
|
|
322 | x-modular_reconf_source |
|
|
323 | } |
|
|
324 | |
|
|
325 | # @FUNCTION: x-modular_src_unpack |
|
|
326 | # @USAGE: |
|
|
327 | # @DESCRIPTION: |
|
|
328 | # Unpack a package, performing all X-related tasks. |
| 272 | x-modular_src_unpack() { |
329 | x-modular_src_unpack() { |
| 273 | x-modular_specs_check |
330 | x-modular_specs_check |
| 274 | x-modular_server_supports_drivers_check |
331 | x-modular_server_supports_drivers_check |
| 275 | x-modular_dri_check |
332 | x-modular_dri_check |
| 276 | x-modular_unpack_source |
333 | x-modular_unpack_source |
| 277 | x-modular_patch_source |
334 | has src_prepare ${EXPORTED_FUNCTIONS} || x-modular_src_prepare |
| 278 | x-modular_reconf_source |
|
|
| 279 | } |
335 | } |
| 280 | |
336 | |
|
|
337 | # @FUNCTION: x-modular_font_configure |
|
|
338 | # @USAGE: |
|
|
339 | # @DESCRIPTION: |
|
|
340 | # If a font package, perform any necessary configuration steps |
| 281 | x-modular_font_configure() { |
341 | x-modular_font_configure() { |
| 282 | if [[ -n "${FONT}" ]]; then |
342 | if [[ -n "${FONT}" ]]; then |
| 283 | # Might be worth adding an option to configure your desired font |
343 | # Might be worth adding an option to configure your desired font |
| 284 | # and exclude all others. Also, should this USE be nls or minimal? |
344 | # and exclude all others. Also, should this USE be nls or minimal? |
| 285 | if ! use nls; then |
345 | if has nls ${IUSE//+} && ! use nls; then |
| 286 | FONT_OPTIONS="${FONT_OPTIONS} |
346 | FONT_OPTIONS="${FONT_OPTIONS} |
| 287 | --disable-iso8859-2 |
347 | --disable-iso8859-2 |
| 288 | --disable-iso8859-3 |
348 | --disable-iso8859-3 |
| 289 | --disable-iso8859-4 |
349 | --disable-iso8859-4 |
| 290 | --disable-iso8859-5 |
350 | --disable-iso8859-5 |
| … | |
… | |
| 303 | --disable-koi8-r" |
363 | --disable-koi8-r" |
| 304 | fi |
364 | fi |
| 305 | fi |
365 | fi |
| 306 | } |
366 | } |
| 307 | |
367 | |
|
|
368 | # @FUNCTION: x-modular_debug_setup |
|
|
369 | # @USAGE: |
|
|
370 | # @DESCRIPTION: |
|
|
371 | # Set up CFLAGS for a debug build |
| 308 | x-modular_debug_setup() { |
372 | x-modular_debug_setup() { |
| 309 | if [[ -n "${DEBUGGABLE}" ]]; then |
373 | if [[ -n "${DEBUGGABLE}" ]]; then |
| 310 | if use debug; then |
374 | if use debug; then |
| 311 | strip-flags |
375 | strip-flags |
| 312 | append-flags -g |
376 | append-flags -g |
| 313 | fi |
377 | fi |
| 314 | fi |
378 | fi |
| 315 | } |
379 | } |
| 316 | |
380 | |
|
|
381 | # @FUNCTION: x-modular_src_configure |
|
|
382 | # @USAGE: |
|
|
383 | # @DESCRIPTION: |
|
|
384 | # Perform any necessary pre-configuration steps, then run configure |
| 317 | x-modular_src_configure() { |
385 | x-modular_src_configure() { |
| 318 | x-modular_font_configure |
386 | x-modular_font_configure |
| 319 | x-modular_debug_setup |
387 | x-modular_debug_setup |
|
|
388 | |
|
|
389 | # @VARIABLE: CONFIGURE_OPTIONS |
|
|
390 | # @DESCRIPTION: |
|
|
391 | # Any extra options to pass to configure |
| 320 | |
392 | |
| 321 | # If prefix isn't set here, .pc files cause problems |
393 | # If prefix isn't set here, .pc files cause problems |
| 322 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
394 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
| 323 | econf --prefix=${XDIR} \ |
395 | econf --prefix=${XDIR} \ |
| 324 | --datadir=${XDIR}/share \ |
396 | --datadir=${XDIR}/share \ |
| … | |
… | |
| 326 | ${DRIVER_OPTIONS} \ |
398 | ${DRIVER_OPTIONS} \ |
| 327 | ${CONFIGURE_OPTIONS} |
399 | ${CONFIGURE_OPTIONS} |
| 328 | fi |
400 | fi |
| 329 | } |
401 | } |
| 330 | |
402 | |
|
|
403 | # @FUNCTION: x-modular_src_make |
|
|
404 | # @USAGE: |
|
|
405 | # @DESCRIPTION: |
|
|
406 | # Run make. |
| 331 | x-modular_src_make() { |
407 | x-modular_src_make() { |
| 332 | emake || die "emake failed" |
408 | emake || die "emake failed" |
| 333 | } |
409 | } |
| 334 | |
410 | |
|
|
411 | # @FUNCTION: x-modular_src_compile |
|
|
412 | # @USAGE: |
|
|
413 | # @DESCRIPTION: |
|
|
414 | # Compile a package, performing all X-related tasks. |
| 335 | x-modular_src_compile() { |
415 | x-modular_src_compile() { |
| 336 | x-modular_src_configure |
416 | has src_configure ${EXPORTED_FUNCTIONS} || x-modular_src_configure |
| 337 | x-modular_src_make |
417 | x-modular_src_make |
| 338 | } |
418 | } |
| 339 | |
419 | |
|
|
420 | # @FUNCTION: x-modular_src_install |
|
|
421 | # @USAGE: |
|
|
422 | # @DESCRIPTION: |
|
|
423 | # Install a built package to ${D}, performing any necessary steps. |
|
|
424 | # Creates a ChangeLog from git if using live ebuilds. |
| 340 | x-modular_src_install() { |
425 | x-modular_src_install() { |
| 341 | # Install everything to ${XDIR} |
426 | # Install everything to ${XDIR} |
|
|
427 | if [[ ${CATEGORY} = x11-proto ]]; then |
| 342 | make \ |
428 | make \ |
|
|
429 | ${PN/proto/}docdir=/usr/share/doc/${PF} \ |
| 343 | DESTDIR="${D}" \ |
430 | DESTDIR="${D}" \ |
| 344 | install |
431 | install \ |
|
|
432 | || die |
|
|
433 | else |
|
|
434 | make \ |
|
|
435 | docdir=/usr/share/doc/${PF} \ |
|
|
436 | DESTDIR="${D}" \ |
|
|
437 | install \ |
|
|
438 | || die |
|
|
439 | fi |
| 345 | # Shouldn't be necessary in XDIR=/usr |
440 | # Shouldn't be necessary in XDIR=/usr |
| 346 | # einstall forces datadir, so we need to re-force it |
441 | # einstall forces datadir, so we need to re-force it |
| 347 | # datadir=${XDIR}/share \ |
442 | # datadir=${XDIR}/share \ |
| 348 | # mandir=${XDIR}/share/man \ |
443 | # mandir=${XDIR}/share/man \ |
| 349 | |
444 | |
|
|
445 | if [[ -n ${GIT_ECLASS} ]]; then |
|
|
446 | pushd "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" |
|
|
447 | git log ${GIT_TREE} > "${S}"/ChangeLog |
|
|
448 | popd |
|
|
449 | fi |
|
|
450 | |
| 350 | if [[ -e ${S}/ChangeLog ]]; then |
451 | if [[ -e ${S}/ChangeLog ]]; then |
| 351 | dodoc ${S}/ChangeLog |
452 | dodoc "${S}"/ChangeLog |
| 352 | fi |
453 | fi |
| 353 | |
454 | # @VARIABLE: DOCS |
| 354 | # Make sure docs get compressed |
455 | # @DESCRIPTION: |
| 355 | prepalldocs |
456 | # Any documentation to install via dodoc |
|
|
457 | [[ -n ${DOCS} ]] && dodoc ${DOCS} |
| 356 | |
458 | |
| 357 | # Don't install libtool archives for server modules |
459 | # Don't install libtool archives for server modules |
| 358 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
460 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
| 359 | find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
461 | find "${D}"/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
| 360 | | xargs rm -f |
462 | | xargs rm -f |
| 361 | fi |
463 | fi |
| 362 | |
464 | |
| 363 | # Don't install overlapping fonts.* files |
|
|
| 364 | # Generate them instead when possible |
|
|
| 365 | if [[ -n "${FONT}" ]]; then |
465 | if [[ -n "${FONT}" ]]; then |
| 366 | remove_font_metadata |
466 | remove_font_metadata |
| 367 | fi |
467 | fi |
| 368 | |
468 | |
| 369 | if [[ -n "${DRIVER}" ]]; then |
469 | if [[ -n "${DRIVER}" ]]; then |
| 370 | install_driver_hwdata |
470 | install_driver_hwdata |
| 371 | fi |
471 | fi |
| 372 | } |
472 | } |
| 373 | |
473 | |
|
|
474 | # @FUNCTION: x-modular_pkg_preinst |
|
|
475 | # @USAGE: |
|
|
476 | # @DESCRIPTION: |
|
|
477 | # This function doesn't do anything right now, but it may in the future. |
| 374 | x-modular_pkg_preinst() { |
478 | x-modular_pkg_preinst() { |
| 375 | # We no longer do anything here, but we can't remove it from the API |
479 | # We no longer do anything here, but we can't remove it from the API |
| 376 | : |
480 | : |
| 377 | } |
481 | } |
| 378 | |
482 | |
|
|
483 | # @FUNCTION: x-modular_pkg_postinst |
|
|
484 | # @USAGE: |
|
|
485 | # @DESCRIPTION: |
|
|
486 | # Run X-specific post-installation tasks on the live filesystem. The |
|
|
487 | # only task right now is some setup for font packages. |
| 379 | x-modular_pkg_postinst() { |
488 | x-modular_pkg_postinst() { |
| 380 | if [[ -n "${FONT}" ]]; then |
489 | if [[ -n "${FONT}" ]]; then |
| 381 | setup_fonts |
490 | setup_fonts |
| 382 | fi |
491 | fi |
| 383 | } |
492 | } |
| 384 | |
493 | |
|
|
494 | # @FUNCTION: x-modular_pkg_postrm |
|
|
495 | # @USAGE: |
|
|
496 | # @DESCRIPTION: |
|
|
497 | # Run X-specific post-removal tasks on the live filesystem. The only |
|
|
498 | # task right now is some cleanup for font packages. |
| 385 | x-modular_pkg_postrm() { |
499 | x-modular_pkg_postrm() { |
| 386 | if [[ -n "${FONT}" ]]; then |
500 | if [[ -n "${FONT}" ]]; then |
| 387 | cleanup_fonts |
501 | cleanup_fonts |
| 388 | font_pkg_postrm |
502 | font_pkg_postrm |
| 389 | fi |
503 | fi |
| 390 | } |
504 | } |
| 391 | |
505 | |
|
|
506 | # @FUNCTION: cleanup_fonts |
|
|
507 | # @USAGE: |
|
|
508 | # @DESCRIPTION: |
|
|
509 | # Get rid of font directories that only contain generated files |
| 392 | cleanup_fonts() { |
510 | cleanup_fonts() { |
| 393 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
511 | local ALLOWED_FILES="encodings.dir fonts.alias fonts.cache-1 fonts.dir fonts.scale" |
| 394 | for DIR in ${FONT_DIR}; do |
512 | for DIR in ${FONT_DIR}; do |
| 395 | unset KEEP_FONTDIR |
513 | unset KEEP_FONTDIR |
| 396 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
514 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
| 397 | |
515 | |
| 398 | ebegin "Checking ${REAL_DIR} for useless files" |
516 | ebegin "Checking ${REAL_DIR} for useless files" |
| … | |
… | |
| 422 | fi |
540 | fi |
| 423 | eend 0 |
541 | eend 0 |
| 424 | done |
542 | done |
| 425 | } |
543 | } |
| 426 | |
544 | |
|
|
545 | # @FUNCTION: setup_fonts |
|
|
546 | # @USAGE: |
|
|
547 | # @DESCRIPTION: |
|
|
548 | # Generates needed files for fonts and fixes font permissions |
| 427 | setup_fonts() { |
549 | setup_fonts() { |
| 428 | if [[ ! -n "${FONT_DIR}" ]]; then |
550 | if [[ ! -n "${FONT_DIR}" ]]; then |
| 429 | msg="FONT_DIR is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
551 | msg="FONT_DIR is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
| 430 | eerror "${msg}" |
552 | eerror "${msg}" |
| 431 | die "${msg}" |
553 | die "${msg}" |
| 432 | fi |
554 | fi |
| 433 | |
555 | |
| 434 | create_fonts_scale |
556 | create_fonts_scale |
| 435 | create_fonts_dir |
557 | create_fonts_dir |
| 436 | fix_font_permissions |
|
|
| 437 | create_font_cache |
558 | create_font_cache |
| 438 | } |
559 | } |
| 439 | |
560 | |
|
|
561 | # @FUNCTION: remove_font_metadata |
|
|
562 | # @USAGE: |
|
|
563 | # @DESCRIPTION: |
|
|
564 | # Don't let the package install generated font files that may overlap |
|
|
565 | # with other packages. Instead, they're generated in pkg_postinst(). |
| 440 | remove_font_metadata() { |
566 | remove_font_metadata() { |
| 441 | local DIR |
567 | local DIR |
| 442 | for DIR in ${FONT_DIR}; do |
568 | for DIR in ${FONT_DIR}; do |
| 443 | if [[ "${DIR}" != "Speedo" ]] && \ |
569 | if [[ "${DIR}" != "Speedo" ]] && \ |
| 444 | [[ "${DIR}" != "CID" ]] ; then |
570 | [[ "${DIR}" != "CID" ]] ; then |
| 445 | # Delete font metadata files |
571 | # Delete font metadata files |
| 446 | # fonts.scale, fonts.dir, fonts.cache-1 |
572 | # fonts.scale, fonts.dir, fonts.cache-1 |
| 447 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
573 | rm -f "${D}"/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
| 448 | fi |
574 | fi |
| 449 | done |
575 | done |
| 450 | } |
576 | } |
| 451 | |
577 | |
|
|
578 | # @FUNCTION: install_driver_hwdata |
|
|
579 | # @USAGE: |
|
|
580 | # @DESCRIPTION: |
| 452 | # Installs device-to-driver mappings for system-config-display |
581 | # Installs device-to-driver mappings for system-config-display and |
| 453 | # and anything else that uses hwdata |
582 | # anything else that uses hwdata. |
| 454 | install_driver_hwdata() { |
583 | install_driver_hwdata() { |
| 455 | insinto /usr/share/hwdata/videoaliases |
584 | insinto /usr/share/hwdata/videoaliases |
| 456 | for i in "${FILESDIR}"/*.xinf; do |
585 | for i in "${FILESDIR}"/*.xinf; do |
| 457 | # We need this for the case when none exist, |
586 | # We need this for the case when none exist, |
| 458 | # so *.xinf doesn't expand |
587 | # so *.xinf doesn't expand |
| … | |
… | |
| 460 | doins $i |
589 | doins $i |
| 461 | fi |
590 | fi |
| 462 | done |
591 | done |
| 463 | } |
592 | } |
| 464 | |
593 | |
|
|
594 | # @FUNCTION: discover_font_dirs |
|
|
595 | # @USAGE: |
|
|
596 | # @DESCRIPTION: |
|
|
597 | # Deprecated. Sets up the now-unused FONT_DIRS variable. |
| 465 | discover_font_dirs() { |
598 | discover_font_dirs() { |
| 466 | FONT_DIRS="${FONT_DIR}" |
599 | FONT_DIRS="${FONT_DIR}" |
| 467 | } |
600 | } |
| 468 | |
601 | |
|
|
602 | # @FUNCTION: create_fonts_scale |
|
|
603 | # @USAGE: |
|
|
604 | # @DESCRIPTION: |
|
|
605 | # Create fonts.scale file, used by the old server-side fonts subsystem. |
| 469 | create_fonts_scale() { |
606 | create_fonts_scale() { |
| 470 | ebegin "Creating fonts.scale files" |
607 | ebegin "Creating fonts.scale files" |
| 471 | local x |
608 | local x |
| 472 | for DIR in ${FONT_DIR}; do |
609 | for DIR in ${FONT_DIR}; do |
| 473 | x=${ROOT}/usr/share/fonts/${DIR} |
610 | x=${ROOT}/usr/share/fonts/${DIR} |
| … | |
… | |
| 480 | # NOTE: There is no way to regenerate Speedo/CID fonts.scale |
617 | # NOTE: There is no way to regenerate Speedo/CID fonts.scale |
| 481 | # <dberkholz@gentoo.org> 2 August 2004 |
618 | # <dberkholz@gentoo.org> 2 August 2004 |
| 482 | if [[ "${x/encodings}" = "${x}" ]] \ |
619 | if [[ "${x/encodings}" = "${x}" ]] \ |
| 483 | && [[ -n "$(find ${x} -iname '*.[pot][ft][abcf]' -print)" ]]; then |
620 | && [[ -n "$(find ${x} -iname '*.[pot][ft][abcf]' -print)" ]]; then |
| 484 | mkfontscale \ |
621 | mkfontscale \ |
| 485 | -a ${ROOT}/usr/share/fonts/encodings/encodings.dir \ |
622 | -a "${ROOT}"/usr/share/fonts/encodings/encodings.dir \ |
| 486 | -- ${x} |
623 | -- ${x} |
| 487 | fi |
624 | fi |
| 488 | done |
625 | done |
| 489 | eend 0 |
626 | eend 0 |
| 490 | } |
627 | } |
| 491 | |
628 | |
|
|
629 | # @FUNCTION: create_fonts_dir |
|
|
630 | # @USAGE: |
|
|
631 | # @DESCRIPTION: |
|
|
632 | # Create fonts.dir file, used by the old server-side fonts subsystem. |
| 492 | create_fonts_dir() { |
633 | create_fonts_dir() { |
| 493 | ebegin "Generating fonts.dir files" |
634 | ebegin "Generating fonts.dir files" |
| 494 | for DIR in ${FONT_DIR}; do |
635 | for DIR in ${FONT_DIR}; do |
| 495 | x=${ROOT}/usr/share/fonts/${DIR} |
636 | x=${ROOT}/usr/share/fonts/${DIR} |
| 496 | [[ -z "$(ls ${x}/)" ]] && continue |
637 | [[ -z "$(ls ${x}/)" ]] && continue |
| 497 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
638 | [[ "$(ls ${x}/)" = "fonts.cache-1" ]] && continue |
| 498 | |
639 | |
| 499 | if [[ "${x/encodings}" = "${x}" ]]; then |
640 | if [[ "${x/encodings}" = "${x}" ]]; then |
| 500 | mkfontdir \ |
641 | mkfontdir \ |
| 501 | -e ${ROOT}/usr/share/fonts/encodings \ |
642 | -e "${ROOT}"/usr/share/fonts/encodings \ |
| 502 | -e ${ROOT}/usr/share/fonts/encodings/large \ |
643 | -e "${ROOT}"/usr/share/fonts/encodings/large \ |
| 503 | -- ${x} |
644 | -- ${x} |
| 504 | fi |
645 | fi |
| 505 | done |
646 | done |
| 506 | eend 0 |
647 | eend 0 |
| 507 | } |
648 | } |
| 508 | |
649 | |
| 509 | fix_font_permissions() { |
650 | # @FUNCTION: create_font_cache |
| 510 | ebegin "Fixing permissions" |
651 | # @USAGE: |
| 511 | for DIR in ${FONT_DIR}; do |
652 | # @DESCRIPTION: |
| 512 | find ${ROOT}/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
653 | # Create fonts.cache-1 files, used by the new client-side fonts |
| 513 | -exec chmod 0644 {} \; |
654 | # subsystem. |
| 514 | done |
|
|
| 515 | eend 0 |
|
|
| 516 | } |
|
|
| 517 | |
|
|
| 518 | create_font_cache() { |
655 | create_font_cache() { |
| 519 | font_pkg_postinst |
656 | font_pkg_postinst |
| 520 | } |
657 | } |
| 521 | |
|
|
| 522 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
|
|