| 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.89 2007/11/13 22:50:04 dberkholz Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.102 2008/08/25 17:10:36 dberkholz 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 | # @ECLASS-VARIABLE: XDIR |
|
|
21 | # @DESCRIPTION: |
|
|
22 | # Directory prefix to use for everything. If you want to install to a |
|
|
23 | # non-default prefix (e.g., /opt/xorg), change XDIR. This has not been |
|
|
24 | # recently tested. You may need to uncomment the setting of datadir and |
|
|
25 | # mandir in x-modular_src_install() or add it back in if it's no longer |
|
|
26 | # there. You may also want to change the SLOT. |
| 38 | XDIR="/usr" |
27 | 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 | |
28 | |
| 46 | IUSE="" |
29 | IUSE="" |
| 47 | HOMEPAGE="http://xorg.freedesktop.org/" |
30 | HOMEPAGE="http://xorg.freedesktop.org/" |
|
|
31 | |
|
|
32 | if [[ -z ${SNAPSHOT} ]]; then |
|
|
33 | # @ECLASS-VARIABLE: SNAPSHOT |
|
|
34 | # @DESCRIPTION: |
|
|
35 | # If set to 'yes' and configure.ac exists, eautoreconf will run. Set |
|
|
36 | # before inheriting this eclass. |
|
|
37 | SNAPSHOT="no" |
|
|
38 | fi |
| 48 | |
39 | |
| 49 | if [[ ${PV} = 9999* ]]; then |
40 | if [[ ${PV} = 9999* ]]; then |
| 50 | GIT_ECLASS="git" |
41 | GIT_ECLASS="git" |
| 51 | SNAPSHOT="yes" |
42 | SNAPSHOT="yes" |
| 52 | SRC_URI="" |
43 | SRC_URI="" |
| 53 | fi |
44 | fi |
| 54 | |
45 | |
| 55 | # Set up SRC_URI for individual modular releases |
46 | # Set up SRC_URI for individual modular releases |
| 56 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
47 | BASE_INDIVIDUAL_URI="http://xorg.freedesktop.org/releases/individual" |
| 57 | if [[ ${CATEGORY} = x11-apps ]] || [[ ${CATEGORY} = x11-wm ]]; then |
48 | # @ECLASS-VARIABLE: MODULE |
|
|
49 | # @DESCRIPTION: |
|
|
50 | # The subdirectory to download source from. Possible settings are app, |
|
|
51 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
|
|
52 | # inherit to override the default autoconfigured module. |
|
|
53 | if [[ -z ${MODULE} ]]; then |
| 58 | MODULE="app" |
54 | MODULE="" |
| 59 | elif [[ ${CATEGORY} = app-doc ]]; then |
55 | case ${CATEGORY} in |
| 60 | MODULE="doc" |
56 | app-doc) MODULE="doc" ;; |
| 61 | # x11-misc contains data and util, x11-themes contains data |
57 | media-fonts) MODULE="font" ;; |
| 62 | elif [[ ${CATEGORY} = x11-misc ]] || [[ ${CATEGORY} = x11-themes ]]; then |
58 | x11-apps|x11-wm) MODULE="app" ;; |
| 63 | if [[ ${PN} == xbitmaps || ${PN} == xcursor-themes || ${PN} == xkbdata ]]; then |
59 | x11-misc|x11-themes) MODULE="util" ;; |
| 64 | MODULE="data" |
60 | x11-drivers) MODULE="driver" ;; |
| 65 | else |
61 | x11-base) MODULE="xserver" ;; |
| 66 | MODULE="data" |
62 | x11-proto) MODULE="proto" ;; |
| 67 | fi |
63 | x11-libs) MODULE="lib" ;; |
| 68 | elif [[ ${CATEGORY} = x11-drivers ]]; then |
64 | esac |
| 69 | MODULE="driver" |
|
|
| 70 | elif [[ ${CATEGORY} = media-fonts ]]; then |
|
|
| 71 | MODULE="font" |
|
|
| 72 | elif [[ ${CATEGORY} = x11-libs ]]; then |
|
|
| 73 | MODULE="lib" |
|
|
| 74 | elif [[ ${CATEGORY} = x11-proto ]]; then |
|
|
| 75 | MODULE="proto" |
|
|
| 76 | elif [[ ${CATEGORY} = x11-base ]]; then |
|
|
| 77 | MODULE="xserver" |
|
|
| 78 | fi |
65 | fi |
| 79 | |
66 | |
| 80 | if [[ -n ${GIT_ECLASS} ]]; then |
67 | if [[ -n ${GIT_ECLASS} ]]; then |
| 81 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}/${PN}" |
68 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}/${PN}" |
| 82 | else |
69 | else |
| … | |
… | |
| 121 | # Starting with 7.0RC3, we can specify the font directory |
108 | # Starting with 7.0RC3, we can specify the font directory |
| 122 | # But oddly, we can't do the same for encodings or font-alias |
109 | # But oddly, we can't do the same for encodings or font-alias |
| 123 | |
110 | |
| 124 | # Wrap in `if` so ebuilds can set it too |
111 | # Wrap in `if` so ebuilds can set it too |
| 125 | if [[ -z ${FONT_DIR} ]]; then |
112 | if [[ -z ${FONT_DIR} ]]; then |
|
|
113 | # @ECLASS-VARIABLE: FONT_DIR |
|
|
114 | # @DESCRIPTION: |
|
|
115 | # If you're creating a font package and the suffix of PN is not equal to |
|
|
116 | # the subdirectory of /usr/share/fonts/ it should install into, set |
|
|
117 | # FONT_DIR to that directory or directories. Set before inheriting this |
|
|
118 | # eclass. |
| 126 | FONT_DIR=${PN##*-} |
119 | FONT_DIR=${PN##*-} |
| 127 | |
120 | |
| 128 | fi |
121 | fi |
| 129 | |
122 | |
| 130 | # Fix case of font directories |
123 | # Fix case of font directories |
| … | |
… | |
| 135 | |
128 | |
| 136 | # Set up configure option |
129 | # Set up configure option |
| 137 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
130 | FONT_OPTIONS="--with-fontdir=\"/usr/share/fonts/${FONT_DIR}\"" |
| 138 | |
131 | |
| 139 | if [[ -n "${FONT}" ]]; then |
132 | if [[ -n "${FONT}" ]]; then |
| 140 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]]; then |
133 | if [[ ${PN##*-} = misc ]] || [[ ${PN##*-} = 75dpi ]] || [[ ${PN##*-} = 100dpi ]] || [[ ${PN##*-} = cyrillic ]]; then |
| 141 | IUSE="${IUSE} nls" |
134 | IUSE="${IUSE} nls" |
| 142 | fi |
135 | fi |
| 143 | fi |
136 | fi |
| 144 | fi |
137 | fi |
| 145 | |
138 | |
| 146 | # If we're a driver package |
139 | # If we're a driver package |
| 147 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
140 | if [[ "${PN/#xf86-video}" != "${PN}" ]] || [[ "${PN/#xf86-input}" != "${PN}" ]]; then |
| 148 | # Enable driver code in the rest of the eclass |
141 | # Enable driver code in the rest of the eclass |
| 149 | DRIVER="yes" |
142 | DRIVER="yes" |
| 150 | |
|
|
| 151 | if [[ ${XDPVER} != -1 ]]; then |
|
|
| 152 | # Add driver patchset to SRC_URI |
|
|
| 153 | SRC_URI="${SRC_URI} |
|
|
| 154 | mirror://gentoo/x11-driver-patches-${XDPVER}.tar.bz2" |
|
|
| 155 | fi |
|
|
| 156 | fi |
143 | fi |
| 157 | |
144 | |
| 158 | # Debugging -- ignore packages that can't be built with debugging |
145 | # Debugging -- ignore packages that can't be built with debugging |
| 159 | if [[ -z "${FONT}" ]] \ |
146 | if [[ -z "${FONT}" ]] \ |
| 160 | && [[ "${CATEGORY/app-doc}" = "${CATEGORY}" ]] \ |
147 | && [[ "${CATEGORY/app-doc}" = "${CATEGORY}" ]] \ |
| … | |
… | |
| 184 | # x11-base/x11-env" |
171 | # x11-base/x11-env" |
| 185 | |
172 | |
| 186 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
173 | inherit eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
| 187 | ${FONT_ECLASS} ${GIT_ECLASS} |
174 | ${FONT_ECLASS} ${GIT_ECLASS} |
| 188 | |
175 | |
|
|
176 | # @FUNCTION: x-modular_specs_check |
|
|
177 | # @USAGE: |
|
|
178 | # @DESCRIPTION: |
|
|
179 | # Make any necessary changes related to gcc specs (generally hardened) |
| 189 | x-modular_specs_check() { |
180 | x-modular_specs_check() { |
| 190 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
181 | if [[ ${PN:0:11} = "xorg-server" ]] || [[ -n "${DRIVER}" ]]; then |
| 191 | append-ldflags -Wl,-z,lazy |
182 | append-ldflags -Wl,-z,lazy |
| 192 | # (#116698) breaks loading |
183 | # (#116698) breaks loading |
| 193 | filter-ldflags -Wl,-z,now |
184 | filter-ldflags -Wl,-z,now |
| 194 | fi |
185 | fi |
| 195 | } |
186 | } |
| 196 | |
187 | |
|
|
188 | # @FUNCTION: x-modular_dri_check |
|
|
189 | # @USAGE: |
|
|
190 | # @DESCRIPTION: |
|
|
191 | # Ensures the server supports DRI if building a driver with DRI support |
| 197 | x-modular_dri_check() { |
192 | x-modular_dri_check() { |
| 198 | # (#120057) Enabling DRI in drivers requires that the server was built with |
193 | # (#120057) Enabling DRI in drivers requires that the server was built with |
| 199 | # support for it |
194 | # support for it |
| 200 | if [[ -n "${DRIVER}" ]]; then |
195 | if [[ -n "${DRIVER}" ]]; then |
| 201 | if has dri ${IUSE} && use dri; then |
196 | if has dri ${IUSE} && use dri; then |
| … | |
… | |
| 205 | fi |
200 | fi |
| 206 | fi |
201 | fi |
| 207 | fi |
202 | fi |
| 208 | } |
203 | } |
| 209 | |
204 | |
|
|
205 | # @FUNCTION: x-modular_server_supports_drivers_check |
|
|
206 | # @USAGE: |
|
|
207 | # @DESCRIPTION: |
|
|
208 | # Ensures the server SDK is installed if a driver is being built |
| 210 | x-modular_server_supports_drivers_check() { |
209 | x-modular_server_supports_drivers_check() { |
| 211 | # (#135873) Only certain servers will actually use or be capable of |
210 | # (#135873) Only certain servers will actually use or be capable of |
| 212 | # building external drivers, including binary drivers. |
211 | # building external drivers, including binary drivers. |
| 213 | if [[ -n "${DRIVER}" ]]; then |
212 | if [[ -n "${DRIVER}" ]]; then |
| 214 | if has_version '>=x11-base/xorg-server-1.1'; then |
213 | if has_version '>=x11-base/xorg-server-1.1'; then |
| … | |
… | |
| 218 | fi |
217 | fi |
| 219 | fi |
218 | fi |
| 220 | fi |
219 | fi |
| 221 | } |
220 | } |
| 222 | |
221 | |
|
|
222 | # @FUNCTION: x-modular_unpack_source |
|
|
223 | # @USAGE: |
|
|
224 | # @DESCRIPTION: |
|
|
225 | # Simply unpack source code. Nothing else. |
| 223 | x-modular_unpack_source() { |
226 | x-modular_unpack_source() { |
| 224 | if [[ -n ${GIT_ECLASS} ]]; then |
227 | if [[ -n ${GIT_ECLASS} ]]; then |
| 225 | git_src_unpack |
228 | git_src_unpack |
| 226 | else |
229 | else |
| 227 | unpack ${A} |
230 | unpack ${A} |
| … | |
… | |
| 231 | if [[ -n ${FONT_OPTIONS} ]]; then |
234 | if [[ -n ${FONT_OPTIONS} ]]; then |
| 232 | einfo "Detected font directory: ${FONT_DIR}" |
235 | einfo "Detected font directory: ${FONT_DIR}" |
| 233 | fi |
236 | fi |
| 234 | } |
237 | } |
| 235 | |
238 | |
|
|
239 | # @FUNCTION: x-modular_patch_source |
|
|
240 | # @USAGE: |
|
|
241 | # @DESCRIPTION: |
|
|
242 | # Apply all patches |
| 236 | x-modular_patch_source() { |
243 | x-modular_patch_source() { |
| 237 | # Use standardized names and locations with bulk patching |
244 | # Use standardized names and locations with bulk patching |
| 238 | # Patch directory is ${WORKDIR}/patch |
245 | # Patch directory is ${WORKDIR}/patch |
| 239 | # See epatch() in eutils.eclass for more documentation |
246 | # See epatch() in eutils.eclass for more documentation |
| 240 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
247 | if [[ -z "${EPATCH_SUFFIX}" ]] ; then |
| 241 | EPATCH_SUFFIX="patch" |
248 | EPATCH_SUFFIX="patch" |
| 242 | fi |
249 | fi |
| 243 | |
250 | |
| 244 | # If this is a driver package we need to fix man page install location. |
251 | # @VARIABLE: PATCHES |
| 245 | # Running autoreconf will use the patched util-macros to make the |
252 | # @DESCRIPTION: |
| 246 | # change for us, so we only need to patch if it is not going to run. |
253 | # If you have any patches to apply, set PATCHES to their locations and epatch |
| 247 | if [[ -n "${DRIVER}" ]] && [[ "${SNAPSHOT}" != "yes" ]]\ |
254 | # will apply them. It also handles epatch-style bulk patches, if you know how to |
| 248 | && [[ ${XDPVER} != -1 ]]; then |
255 | # use them and set the correct variables. If you don't, read eutils.eclass. |
| 249 | PATCHES="${PATCHES} ${DISTDIR}/x11-driver-patches-${XDPVER}.tar.bz2" |
256 | if [[ ${#PATCHES[@]} -gt 1 ]]; then |
| 250 | fi |
257 | for x in "${PATCHES[@]}"; do |
| 251 | |
258 | epatch "${x}" |
| 252 | # For specific list of patches |
259 | done |
| 253 | if [[ -n "${PATCHES}" ]] ; then |
260 | elif [[ -n "${PATCHES}" ]]; then |
| 254 | for PATCH in ${PATCHES} |
261 | for x in ${PATCHES}; do |
| 255 | do |
|
|
| 256 | epatch ${PATCH} |
262 | epatch "${x}" |
| 257 | done |
263 | done |
| 258 | # For non-default directory bulk patching |
264 | # For non-default directory bulk patching |
| 259 | elif [[ -n "${PATCH_LOC}" ]] ; then |
265 | elif [[ -n "${PATCH_LOC}" ]] ; then |
| 260 | epatch ${PATCH_LOC} |
266 | epatch ${PATCH_LOC} |
| 261 | # For standard bulk patching |
267 | # For standard bulk patching |
| 262 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
268 | elif [[ -d "${EPATCH_SOURCE}" ]] ; then |
| 263 | epatch |
269 | epatch |
| 264 | fi |
270 | fi |
| 265 | } |
271 | } |
| 266 | |
272 | |
|
|
273 | # @FUNCTION: x-modular_reconf_source |
|
|
274 | # @USAGE: |
|
|
275 | # @DESCRIPTION: |
|
|
276 | # Run eautoreconf if necessary, and run elibtoolize. |
| 267 | x-modular_reconf_source() { |
277 | x-modular_reconf_source() { |
| 268 | # Run autoreconf for CVS snapshots only |
|
|
| 269 | if [[ "${SNAPSHOT}" = "yes" ]] |
278 | if [[ "${SNAPSHOT}" = "yes" ]] |
| 270 | then |
279 | then |
| 271 | # If possible, generate configure if it doesn't exist |
280 | # If possible, generate configure if it doesn't exist |
| 272 | if [ -f "./configure.ac" ] |
281 | if [ -f "./configure.ac" ] |
| 273 | then |
282 | then |
| … | |
… | |
| 278 | # Joshua Baergen - October 23, 2005 |
287 | # Joshua Baergen - October 23, 2005 |
| 279 | # Fix shared lib issues on MIPS, FBSD, etc etc |
288 | # Fix shared lib issues on MIPS, FBSD, etc etc |
| 280 | elibtoolize |
289 | elibtoolize |
| 281 | } |
290 | } |
| 282 | |
291 | |
|
|
292 | # @FUNCTION: x-modular_src_unpack |
|
|
293 | # @USAGE: |
|
|
294 | # @DESCRIPTION: |
|
|
295 | # Unpack a package, performing all X-related tasks. |
| 283 | x-modular_src_unpack() { |
296 | x-modular_src_unpack() { |
| 284 | x-modular_specs_check |
297 | x-modular_specs_check |
| 285 | x-modular_server_supports_drivers_check |
298 | x-modular_server_supports_drivers_check |
| 286 | x-modular_dri_check |
299 | x-modular_dri_check |
| 287 | x-modular_unpack_source |
300 | x-modular_unpack_source |
| 288 | x-modular_patch_source |
301 | x-modular_patch_source |
| 289 | x-modular_reconf_source |
302 | x-modular_reconf_source |
| 290 | } |
303 | } |
| 291 | |
304 | |
|
|
305 | # @FUNCTION: x-modular_font_configure |
|
|
306 | # @USAGE: |
|
|
307 | # @DESCRIPTION: |
|
|
308 | # If a font package, perform any necessary configuration steps |
| 292 | x-modular_font_configure() { |
309 | x-modular_font_configure() { |
| 293 | if [[ -n "${FONT}" ]]; then |
310 | if [[ -n "${FONT}" ]]; then |
| 294 | # Might be worth adding an option to configure your desired font |
311 | # Might be worth adding an option to configure your desired font |
| 295 | # and exclude all others. Also, should this USE be nls or minimal? |
312 | # and exclude all others. Also, should this USE be nls or minimal? |
| 296 | if ! use nls; then |
313 | if ! use nls; then |
| … | |
… | |
| 314 | --disable-koi8-r" |
331 | --disable-koi8-r" |
| 315 | fi |
332 | fi |
| 316 | fi |
333 | fi |
| 317 | } |
334 | } |
| 318 | |
335 | |
|
|
336 | # @FUNCTION: x-modular_debug_setup |
|
|
337 | # @USAGE: |
|
|
338 | # @DESCRIPTION: |
|
|
339 | # Set up CFLAGS for a debug build |
| 319 | x-modular_debug_setup() { |
340 | x-modular_debug_setup() { |
| 320 | if [[ -n "${DEBUGGABLE}" ]]; then |
341 | if [[ -n "${DEBUGGABLE}" ]]; then |
| 321 | if use debug; then |
342 | if use debug; then |
| 322 | strip-flags |
343 | strip-flags |
| 323 | append-flags -g |
344 | append-flags -g |
| 324 | fi |
345 | fi |
| 325 | fi |
346 | fi |
| 326 | } |
347 | } |
| 327 | |
348 | |
|
|
349 | # @FUNCTION: x-modular_src_configure |
|
|
350 | # @USAGE: |
|
|
351 | # @DESCRIPTION: |
|
|
352 | # Perform any necessary pre-configuration steps, then run configure |
| 328 | x-modular_src_configure() { |
353 | x-modular_src_configure() { |
| 329 | x-modular_font_configure |
354 | x-modular_font_configure |
| 330 | x-modular_debug_setup |
355 | x-modular_debug_setup |
|
|
356 | |
|
|
357 | # @VARIABLE: CONFIGURE_OPTIONS |
|
|
358 | # @DESCRIPTION: |
|
|
359 | # Any options to pass to configure |
|
|
360 | [[ -n ${CONFIGURE_OPTIONS} ]] |
| 331 | |
361 | |
| 332 | # If prefix isn't set here, .pc files cause problems |
362 | # If prefix isn't set here, .pc files cause problems |
| 333 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
363 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
| 334 | econf --prefix=${XDIR} \ |
364 | econf --prefix=${XDIR} \ |
| 335 | --datadir=${XDIR}/share \ |
365 | --datadir=${XDIR}/share \ |
| … | |
… | |
| 337 | ${DRIVER_OPTIONS} \ |
367 | ${DRIVER_OPTIONS} \ |
| 338 | ${CONFIGURE_OPTIONS} |
368 | ${CONFIGURE_OPTIONS} |
| 339 | fi |
369 | fi |
| 340 | } |
370 | } |
| 341 | |
371 | |
|
|
372 | # @FUNCTION: x-modular_src_make |
|
|
373 | # @USAGE: |
|
|
374 | # @DESCRIPTION: |
|
|
375 | # Run make. |
| 342 | x-modular_src_make() { |
376 | x-modular_src_make() { |
| 343 | emake || die "emake failed" |
377 | emake || die "emake failed" |
| 344 | } |
378 | } |
| 345 | |
379 | |
|
|
380 | # @FUNCTION: x-modular_src_configure |
|
|
381 | # @USAGE: |
|
|
382 | # @DESCRIPTION: |
|
|
383 | # Compile a package, performing all X-related tasks. |
| 346 | x-modular_src_compile() { |
384 | x-modular_src_compile() { |
| 347 | x-modular_src_configure |
385 | x-modular_src_configure |
| 348 | x-modular_src_make |
386 | x-modular_src_make |
| 349 | } |
387 | } |
| 350 | |
388 | |
|
|
389 | # @FUNCTION: x-modular_src_install |
|
|
390 | # @USAGE: |
|
|
391 | # @DESCRIPTION: |
|
|
392 | # Install a built package to ${D}, performing any necessary steps. |
|
|
393 | # Creates a ChangeLog from git if using live ebuilds. |
| 351 | x-modular_src_install() { |
394 | x-modular_src_install() { |
| 352 | # Install everything to ${XDIR} |
395 | # Install everything to ${XDIR} |
| 353 | make \ |
396 | make \ |
| 354 | DESTDIR="${D}" \ |
397 | DESTDIR="${D}" \ |
| 355 | install |
398 | install \ |
|
|
399 | || die |
| 356 | # Shouldn't be necessary in XDIR=/usr |
400 | # Shouldn't be necessary in XDIR=/usr |
| 357 | # einstall forces datadir, so we need to re-force it |
401 | # einstall forces datadir, so we need to re-force it |
| 358 | # datadir=${XDIR}/share \ |
402 | # datadir=${XDIR}/share \ |
| 359 | # mandir=${XDIR}/share/man \ |
403 | # mandir=${XDIR}/share/man \ |
| 360 | |
404 | |
| … | |
… | |
| 365 | fi |
409 | fi |
| 366 | |
410 | |
| 367 | if [[ -e ${S}/ChangeLog ]]; then |
411 | if [[ -e ${S}/ChangeLog ]]; then |
| 368 | dodoc ${S}/ChangeLog |
412 | dodoc ${S}/ChangeLog |
| 369 | fi |
413 | fi |
|
|
414 | # @VARIABLE: DOCS |
|
|
415 | # @DESCRIPTION: |
|
|
416 | # Any documentation to install |
|
|
417 | [[ -n ${DOCS} ]] && dodoc ${DOCS} |
| 370 | |
418 | |
| 371 | # Make sure docs get compressed |
419 | # Make sure docs get compressed |
| 372 | prepalldocs |
420 | prepalldocs |
| 373 | |
421 | |
| 374 | # Don't install libtool archives for server modules |
422 | # Don't install libtool archives for server modules |
| 375 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
423 | if [[ -e ${D}/usr/$(get_libdir)/xorg/modules ]]; then |
| 376 | find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
424 | find ${D}/usr/$(get_libdir)/xorg/modules -name '*.la' \ |
| 377 | | xargs rm -f |
425 | | xargs rm -f |
| 378 | fi |
426 | fi |
| 379 | |
427 | |
| 380 | # Don't install overlapping fonts.* files |
|
|
| 381 | # Generate them instead when possible |
|
|
| 382 | if [[ -n "${FONT}" ]]; then |
428 | if [[ -n "${FONT}" ]]; then |
| 383 | remove_font_metadata |
429 | remove_font_metadata |
| 384 | fi |
430 | fi |
| 385 | |
431 | |
| 386 | if [[ -n "${DRIVER}" ]]; then |
432 | if [[ -n "${DRIVER}" ]]; then |
| 387 | install_driver_hwdata |
433 | install_driver_hwdata |
| 388 | fi |
434 | fi |
| 389 | } |
435 | } |
| 390 | |
436 | |
|
|
437 | # @FUNCTION: x-modular_pkg_preinst |
|
|
438 | # @USAGE: |
|
|
439 | # @DESCRIPTION: |
|
|
440 | # This function doesn't do anything right now, but it may in the future. |
| 391 | x-modular_pkg_preinst() { |
441 | x-modular_pkg_preinst() { |
| 392 | # We no longer do anything here, but we can't remove it from the API |
442 | # We no longer do anything here, but we can't remove it from the API |
| 393 | : |
443 | : |
| 394 | } |
444 | } |
| 395 | |
445 | |
|
|
446 | # @FUNCTION: x-modular_pkg_postinst |
|
|
447 | # @USAGE: |
|
|
448 | # @DESCRIPTION: |
|
|
449 | # Run X-specific post-installation tasks on the live filesystem. The |
|
|
450 | # only task right now is some setup for font packages. |
| 396 | x-modular_pkg_postinst() { |
451 | x-modular_pkg_postinst() { |
| 397 | if [[ -n "${FONT}" ]]; then |
452 | if [[ -n "${FONT}" ]]; then |
| 398 | setup_fonts |
453 | setup_fonts |
| 399 | fi |
454 | fi |
| 400 | } |
455 | } |
| 401 | |
456 | |
|
|
457 | # @FUNCTION: x-modular_pkg_postrm |
|
|
458 | # @USAGE: |
|
|
459 | # @DESCRIPTION: |
|
|
460 | # Run X-specific post-removal tasks on the live filesystem. The only |
|
|
461 | # task right now is some cleanup for font packages. |
| 402 | x-modular_pkg_postrm() { |
462 | x-modular_pkg_postrm() { |
| 403 | if [[ -n "${FONT}" ]]; then |
463 | if [[ -n "${FONT}" ]]; then |
| 404 | cleanup_fonts |
464 | cleanup_fonts |
| 405 | font_pkg_postrm |
465 | font_pkg_postrm |
| 406 | fi |
466 | fi |
| 407 | } |
467 | } |
| 408 | |
468 | |
|
|
469 | # @FUNCTION: cleanup_fonts |
|
|
470 | # @USAGE: |
|
|
471 | # @DESCRIPTION: |
|
|
472 | # Get rid of font directories that only contain generated files |
| 409 | cleanup_fonts() { |
473 | cleanup_fonts() { |
| 410 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
474 | local ALLOWED_FILES="encodings.dir fonts.cache-1 fonts.dir fonts.scale" |
| 411 | for DIR in ${FONT_DIR}; do |
475 | for DIR in ${FONT_DIR}; do |
| 412 | unset KEEP_FONTDIR |
476 | unset KEEP_FONTDIR |
| 413 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
477 | REAL_DIR=${ROOT}usr/share/fonts/${DIR} |
| … | |
… | |
| 439 | fi |
503 | fi |
| 440 | eend 0 |
504 | eend 0 |
| 441 | done |
505 | done |
| 442 | } |
506 | } |
| 443 | |
507 | |
|
|
508 | # @FUNCTION: setup_fonts |
|
|
509 | # @USAGE: |
|
|
510 | # @DESCRIPTION: |
|
|
511 | # Generates needed files for fonts and fixes font permissions |
| 444 | setup_fonts() { |
512 | setup_fonts() { |
| 445 | if [[ ! -n "${FONT_DIR}" ]]; then |
513 | if [[ ! -n "${FONT_DIR}" ]]; then |
| 446 | msg="FONT_DIR is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
514 | msg="FONT_DIR is empty. The ebuild should set it to at least one subdir of /usr/share/fonts." |
| 447 | eerror "${msg}" |
515 | eerror "${msg}" |
| 448 | die "${msg}" |
516 | die "${msg}" |
| … | |
… | |
| 452 | create_fonts_dir |
520 | create_fonts_dir |
| 453 | fix_font_permissions |
521 | fix_font_permissions |
| 454 | create_font_cache |
522 | create_font_cache |
| 455 | } |
523 | } |
| 456 | |
524 | |
|
|
525 | # @FUNCTION: remove_font_metadata |
|
|
526 | # @USAGE: |
|
|
527 | # @DESCRIPTION: |
|
|
528 | # Don't let the package install generated font files that may overlap |
|
|
529 | # with other packages. Instead, they're generated in pkg_postinst(). |
| 457 | remove_font_metadata() { |
530 | remove_font_metadata() { |
| 458 | local DIR |
531 | local DIR |
| 459 | for DIR in ${FONT_DIR}; do |
532 | for DIR in ${FONT_DIR}; do |
| 460 | if [[ "${DIR}" != "Speedo" ]] && \ |
533 | if [[ "${DIR}" != "Speedo" ]] && \ |
| 461 | [[ "${DIR}" != "CID" ]] ; then |
534 | [[ "${DIR}" != "CID" ]] ; then |
| … | |
… | |
| 464 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
537 | rm -f ${D}/usr/share/fonts/${DIR}/fonts.{scale,dir,cache-1} |
| 465 | fi |
538 | fi |
| 466 | done |
539 | done |
| 467 | } |
540 | } |
| 468 | |
541 | |
|
|
542 | # @FUNCTION: install_driver_hwdata |
|
|
543 | # @USAGE: |
|
|
544 | # @DESCRIPTION: |
| 469 | # Installs device-to-driver mappings for system-config-display |
545 | # Installs device-to-driver mappings for system-config-display and |
| 470 | # and anything else that uses hwdata |
546 | # anything else that uses hwdata. |
| 471 | install_driver_hwdata() { |
547 | install_driver_hwdata() { |
| 472 | insinto /usr/share/hwdata/videoaliases |
548 | insinto /usr/share/hwdata/videoaliases |
| 473 | for i in "${FILESDIR}"/*.xinf; do |
549 | for i in "${FILESDIR}"/*.xinf; do |
| 474 | # We need this for the case when none exist, |
550 | # We need this for the case when none exist, |
| 475 | # so *.xinf doesn't expand |
551 | # so *.xinf doesn't expand |
| … | |
… | |
| 477 | doins $i |
553 | doins $i |
| 478 | fi |
554 | fi |
| 479 | done |
555 | done |
| 480 | } |
556 | } |
| 481 | |
557 | |
|
|
558 | # @FUNCTION: discover_font_dirs |
|
|
559 | # @USAGE: |
|
|
560 | # @DESCRIPTION: |
|
|
561 | # Deprecated. Sets up the now-unused FONT_DIRS variable. |
| 482 | discover_font_dirs() { |
562 | discover_font_dirs() { |
| 483 | FONT_DIRS="${FONT_DIR}" |
563 | FONT_DIRS="${FONT_DIR}" |
| 484 | } |
564 | } |
| 485 | |
565 | |
|
|
566 | # @FUNCTION: create_fonts_scale |
|
|
567 | # @USAGE: |
|
|
568 | # @DESCRIPTION: |
|
|
569 | # Create fonts.scale file, used by the old server-side fonts subsystem. |
| 486 | create_fonts_scale() { |
570 | create_fonts_scale() { |
| 487 | ebegin "Creating fonts.scale files" |
571 | ebegin "Creating fonts.scale files" |
| 488 | local x |
572 | local x |
| 489 | for DIR in ${FONT_DIR}; do |
573 | for DIR in ${FONT_DIR}; do |
| 490 | x=${ROOT}/usr/share/fonts/${DIR} |
574 | x=${ROOT}/usr/share/fonts/${DIR} |
| … | |
… | |
| 504 | fi |
588 | fi |
| 505 | done |
589 | done |
| 506 | eend 0 |
590 | eend 0 |
| 507 | } |
591 | } |
| 508 | |
592 | |
|
|
593 | # @FUNCTION: create_fonts_dir |
|
|
594 | # @USAGE: |
|
|
595 | # @DESCRIPTION: |
|
|
596 | # Create fonts.dir file, used by the old server-side fonts subsystem. |
| 509 | create_fonts_dir() { |
597 | create_fonts_dir() { |
| 510 | ebegin "Generating fonts.dir files" |
598 | ebegin "Generating fonts.dir files" |
| 511 | for DIR in ${FONT_DIR}; do |
599 | for DIR in ${FONT_DIR}; do |
| 512 | x=${ROOT}/usr/share/fonts/${DIR} |
600 | x=${ROOT}/usr/share/fonts/${DIR} |
| 513 | [[ -z "$(ls ${x}/)" ]] && continue |
601 | [[ -z "$(ls ${x}/)" ]] && continue |
| … | |
… | |
| 521 | fi |
609 | fi |
| 522 | done |
610 | done |
| 523 | eend 0 |
611 | eend 0 |
| 524 | } |
612 | } |
| 525 | |
613 | |
|
|
614 | # @FUNCTION: fix_font_permissions |
|
|
615 | # @USAGE: |
|
|
616 | # @DESCRIPTION: |
|
|
617 | # Font files should have 644 permissions. Ensure this is the case. |
| 526 | fix_font_permissions() { |
618 | fix_font_permissions() { |
| 527 | ebegin "Fixing permissions" |
619 | ebegin "Fixing permissions" |
| 528 | for DIR in ${FONT_DIR}; do |
620 | for DIR in ${FONT_DIR}; do |
| 529 | find ${ROOT}/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
621 | find ${ROOT}/usr/share/fonts/${DIR} -type f -name 'font.*' \ |
| 530 | -exec chmod 0644 {} \; |
622 | -exec chmod 0644 {} \; |
| 531 | done |
623 | done |
| 532 | eend 0 |
624 | eend 0 |
| 533 | } |
625 | } |
| 534 | |
626 | |
|
|
627 | # @FUNCTION: create_font_cache |
|
|
628 | # @USAGE: |
|
|
629 | # @DESCRIPTION: |
|
|
630 | # Create fonts.cache-1 files, used by the new client-side fonts |
|
|
631 | # subsystem. |
| 535 | create_font_cache() { |
632 | create_font_cache() { |
| 536 | font_pkg_postinst |
633 | font_pkg_postinst |
| 537 | } |
634 | } |
| 538 | |
635 | |
| 539 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |
636 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm |