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