1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2010 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/xorg-2.eclass,v 1.23 2011/02/15 12:13:58 scarabeus Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/xorg-2.eclass,v 1.24 2011/02/28 18:16:40 mgorny Exp $ |
4 | # |
4 | # |
5 | # @ECLASS: xorg-2.eclass |
5 | # @ECLASS: xorg-2.eclass |
6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
7 | # x11@gentoo.org |
7 | # x11@gentoo.org |
8 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
8 | # @BLURB: Reduces code duplication in the modularized X11 ebuilds. |
… | |
… | |
36 | # Activate font code in the rest of the eclass |
36 | # Activate font code in the rest of the eclass |
37 | FONT="yes" |
37 | FONT="yes" |
38 | FONT_ECLASS="font" |
38 | FONT_ECLASS="font" |
39 | fi |
39 | fi |
40 | |
40 | |
41 | inherit eutils base libtool multilib toolchain-funcs flag-o-matic autotools \ |
41 | inherit autotools-utils eutils libtool multilib toolchain-funcs flag-o-matic autotools \ |
42 | ${FONT_ECLASS} ${GIT_ECLASS} |
42 | ${FONT_ECLASS} ${GIT_ECLASS} |
43 | |
43 | |
44 | EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_postinst pkg_postrm" |
44 | EXPORTED_FUNCTIONS="src_unpack src_compile src_install pkg_postinst pkg_postrm" |
45 | case "${EAPI:-0}" in |
45 | case "${EAPI:-0}" in |
46 | 3|4) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" ;; |
46 | 3|4) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare src_configure" ;; |
… | |
… | |
66 | # The subdirectory to download source from. Possible settings are app, |
66 | # The subdirectory to download source from. Possible settings are app, |
67 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
67 | # doc, data, util, driver, font, lib, proto, xserver. Set above the |
68 | # inherit to override the default autoconfigured module. |
68 | # inherit to override the default autoconfigured module. |
69 | if [[ -z ${MODULE} ]]; then |
69 | if [[ -z ${MODULE} ]]; then |
70 | case ${CATEGORY} in |
70 | case ${CATEGORY} in |
71 | app-doc) MODULE="doc" ;; |
71 | app-doc) MODULE=doc/ ;; |
72 | media-fonts) MODULE="font" ;; |
72 | media-fonts) MODULE=font/ ;; |
73 | x11-apps|x11-wm) MODULE="app" ;; |
73 | x11-apps|x11-wm) MODULE=app/ ;; |
74 | x11-misc|x11-themes) MODULE="util" ;; |
74 | x11-misc|x11-themes) MODULE=util/ ;; |
75 | x11-drivers) MODULE="driver" ;; |
|
|
76 | x11-base) MODULE="xserver" ;; |
75 | x11-base) MODULE=xserver/ ;; |
|
|
76 | x11-drivers) MODULE=driver/ ;; |
77 | x11-proto) MODULE="proto" ;; |
77 | x11-proto) MODULE=proto/ ;; |
78 | x11-libs) MODULE="lib" ;; |
78 | x11-libs) MODULE=lib/ ;; |
79 | *) MODULE="" ;; |
79 | *) MODULE= ;; |
80 | esac |
80 | esac |
81 | fi |
81 | fi |
82 | |
82 | |
83 | # @ECLASS-VARIABLE: PACKAGE_NAME |
83 | # @ECLASS-VARIABLE: PACKAGE_NAME |
84 | # @DESCRIPTION: |
84 | # @DESCRIPTION: |
85 | # For git checkout the git repository migth differ from package name. |
85 | # For git checkout the git repository might differ from package name. |
86 | # This variable can be used for proper directory specification |
86 | # This variable can be used for proper directory specification |
87 | : ${PACKAGE_NAME:=${PN}} |
87 | : ${PACKAGE_NAME:=${PN}} |
88 | |
88 | |
89 | if [[ -n ${GIT_ECLASS} ]]; then |
89 | if [[ -n ${GIT_ECLASS} ]]; then |
90 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}/${PACKAGE_NAME}" |
90 | EGIT_REPO_URI="git://anongit.freedesktop.org/git/xorg/${MODULE}${PACKAGE_NAME}" |
91 | else |
91 | else |
92 | SRC_URI+=" ${BASE_INDIVIDUAL_URI}/${MODULE}/${P}.tar.bz2" |
92 | SRC_URI+=" ${BASE_INDIVIDUAL_URI}/${MODULE}${P}.tar.bz2" |
93 | fi |
93 | fi |
94 | |
94 | |
95 | : ${SLOT:=0} |
95 | : ${SLOT:=0} |
96 | |
96 | |
97 | # Set the license for the package. This can be overridden by setting |
97 | # Set the license for the package. This can be overridden by setting |
… | |
… | |
172 | IUSE+=" static-libs" |
172 | IUSE+=" static-libs" |
173 | fi |
173 | fi |
174 | |
174 | |
175 | DEPEND+=" >=dev-util/pkgconfig-0.23" |
175 | DEPEND+=" >=dev-util/pkgconfig-0.23" |
176 | |
176 | |
177 | # Check deps on xorg-server |
177 | # Check deps on drivers |
178 | has dri ${IUSE//+} && DEPEND+=" dri? ( >=x11-base/xorg-server-1.6.3.901-r2[-minimal] )" |
178 | if has dri ${IUSE//+}; then |
179 | [[ -n "${DRIVER}" ]] && DEPEND+=" x11-base/xorg-server[xorg]" |
179 | COMMON_DEPEND+=" dri? ( |
|
|
180 | x11-base/xorg-server[-minimal] |
|
|
181 | x11-libs/libdrm |
|
|
182 | )" |
|
|
183 | DEPEND+=" dri? ( |
|
|
184 | x11-proto/xf86driproto |
|
|
185 | x11-proto/glproto |
|
|
186 | x11-proto/dri2proto |
|
|
187 | )" |
|
|
188 | fi |
|
|
189 | if [[ -n "${DRIVER}" ]]; then |
|
|
190 | COMMON_DEPEND+=" |
|
|
191 | x11-base/xorg-server[xorg] |
|
|
192 | x11-libs/libpciaccess |
|
|
193 | " |
|
|
194 | # we also needs some protos and libs in all cases |
|
|
195 | DEPEND+=" |
|
|
196 | x11-proto/fontsproto |
|
|
197 | x11-proto/randrproto |
|
|
198 | x11-proto/renderproto |
|
|
199 | x11-proto/videoproto |
|
|
200 | x11-proto/xextproto |
|
|
201 | x11-proto/xineramaproto |
|
|
202 | x11-proto/xproto |
|
|
203 | " |
|
|
204 | fi |
|
|
205 | |
|
|
206 | # Add deps on documentation |
|
|
207 | # Most docbooks use dtd version 4.2 and 4.3 add more when found |
|
|
208 | if has doc ${IUSE//+}; then |
|
|
209 | DEPEND+=" |
|
|
210 | doc? ( |
|
|
211 | app-text/xmlto |
|
|
212 | app-doc/doxygen |
|
|
213 | app-text/docbook-xml-dtd:4.2 |
|
|
214 | app-text/docbook-xml-dtd:4.3 |
|
|
215 | ) |
|
|
216 | " |
|
|
217 | fi |
|
|
218 | |
|
|
219 | DEPEND+=" ${COMMON_DEPEND}" |
|
|
220 | RDEPEND+=" ${COMMON_DEPEND}" |
|
|
221 | unset COMMON_DEPEND |
|
|
222 | |
|
|
223 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: DEPEND=${DEPEND}" |
|
|
224 | debug-print "${LINENO} ${ECLASS} ${FUNCNAME}: RDEPEND=${RDEPEND}" |
180 | |
225 | |
181 | # @FUNCTION: xorg-2_pkg_setup |
226 | # @FUNCTION: xorg-2_pkg_setup |
182 | # @DESCRIPTION: |
227 | # @DESCRIPTION: |
183 | # Setup prefix compat |
228 | # Setup prefix compat |
184 | xorg-2_pkg_setup() { |
229 | xorg-2_pkg_setup() { |
… | |
… | |
212 | # Patch directory is ${WORKDIR}/patch |
257 | # Patch directory is ${WORKDIR}/patch |
213 | # See epatch() in eutils.eclass for more documentation |
258 | # See epatch() in eutils.eclass for more documentation |
214 | EPATCH_SUFFIX=${EPATCH_SUFFIX:=patch} |
259 | EPATCH_SUFFIX=${EPATCH_SUFFIX:=patch} |
215 | |
260 | |
216 | [[ -d "${EPATCH_SOURCE}" ]] && epatch |
261 | [[ -d "${EPATCH_SOURCE}" ]] && epatch |
217 | base_src_prepare "$@" |
262 | autotools-utils_src_prepare "$@" |
218 | } |
263 | } |
219 | |
264 | |
220 | # @FUNCTION: xorg-2_reconf_source |
265 | # @FUNCTION: xorg-2_reconf_source |
221 | # @DESCRIPTION: |
266 | # @DESCRIPTION: |
222 | # Run eautoreconf if necessary, and run elibtoolize. |
267 | # Run eautoreconf if necessary, and run elibtoolize. |
… | |
… | |
251 | # If a font package, perform any necessary configuration steps |
296 | # If a font package, perform any necessary configuration steps |
252 | xorg-2_font_configure() { |
297 | xorg-2_font_configure() { |
253 | debug-print-function ${FUNCNAME} "$@" |
298 | debug-print-function ${FUNCNAME} "$@" |
254 | |
299 | |
255 | if has nls ${IUSE//+} && ! use nls; then |
300 | if has nls ${IUSE//+} && ! use nls; then |
|
|
301 | if grep -q -s "disable-all-encodings" ${ECONF_SOURCE:-.}/configure; then |
256 | FONT_OPTIONS+=" |
302 | FONT_OPTIONS+=" |
|
|
303 | --disable-all-encodings" |
|
|
304 | else |
|
|
305 | FONT_OPTIONS+=" |
257 | --disable-iso8859-2 |
306 | --disable-iso8859-2 |
258 | --disable-iso8859-3 |
307 | --disable-iso8859-3 |
259 | --disable-iso8859-4 |
308 | --disable-iso8859-4 |
260 | --disable-iso8859-5 |
309 | --disable-iso8859-5 |
261 | --disable-iso8859-6 |
310 | --disable-iso8859-6 |
262 | --disable-iso8859-7 |
311 | --disable-iso8859-7 |
263 | --disable-iso8859-8 |
312 | --disable-iso8859-8 |
264 | --disable-iso8859-9 |
313 | --disable-iso8859-9 |
265 | --disable-iso8859-10 |
314 | --disable-iso8859-10 |
266 | --disable-iso8859-11 |
315 | --disable-iso8859-11 |
267 | --disable-iso8859-12 |
316 | --disable-iso8859-12 |
268 | --disable-iso8859-13 |
317 | --disable-iso8859-13 |
269 | --disable-iso8859-14 |
318 | --disable-iso8859-14 |
270 | --disable-iso8859-15 |
319 | --disable-iso8859-15 |
271 | --disable-iso8859-16 |
320 | --disable-iso8859-16 |
272 | --disable-jisx0201 |
321 | --disable-jisx0201 |
273 | --disable-koi8-r" |
322 | --disable-koi8-r" |
|
|
323 | fi |
274 | fi |
324 | fi |
275 | } |
325 | } |
276 | |
326 | |
277 | # @FUNCTION: xorg-2_flags_setup |
327 | # @FUNCTION: xorg-2_flags_setup |
278 | # @DESCRIPTION: |
328 | # @DESCRIPTION: |
… | |
… | |
296 | # @FUNCTION: xorg-2_src_configure |
346 | # @FUNCTION: xorg-2_src_configure |
297 | # @DESCRIPTION: |
347 | # @DESCRIPTION: |
298 | # Perform any necessary pre-configuration steps, then run configure |
348 | # Perform any necessary pre-configuration steps, then run configure |
299 | xorg-2_src_configure() { |
349 | xorg-2_src_configure() { |
300 | debug-print-function ${FUNCNAME} "$@" |
350 | debug-print-function ${FUNCNAME} "$@" |
301 | local myopts="" |
|
|
302 | |
351 | |
303 | xorg-2_flags_setup |
352 | xorg-2_flags_setup |
304 | [[ -n "${FONT}" ]] && xorg-2_font_configure |
|
|
305 | |
353 | |
306 | # @VARIABLE: CONFIGURE_OPTIONS |
354 | # @VARIABLE: CONFIGURE_OPTIONS |
307 | # @DESCRIPTION: |
355 | # @DESCRIPTION: |
308 | # Any options to pass to configure |
356 | # Any options to pass to configure |
309 | # @DEFAULT_UNSET |
357 | # @DEFAULT_UNSET |
310 | CONFIGURE_OPTIONS=${CONFIGURE_OPTIONS:=""} |
358 | CONFIGURE_OPTIONS=${CONFIGURE_OPTIONS:=""} |
311 | if [[ -x ${ECONF_SOURCE:-.}/configure ]]; then |
359 | |
312 | if has static-libs ${IUSE//+}; then |
360 | [[ -n "${FONT}" ]] && xorg-2_font_configure |
313 | myopts+=" $(use_enable static-libs static)" |
361 | local myeconfargs=( |
314 | fi |
362 | --disable-dependency-tracking |
315 | econf \ |
|
|
316 | ${FONT_OPTIONS} \ |
|
|
317 | ${CONFIGURE_OPTIONS} \ |
363 | ${CONFIGURE_OPTIONS} |
318 | ${myopts} |
364 | ${FONT_OPTIONS} |
319 | fi |
365 | ) |
|
|
366 | |
|
|
367 | autotools-utils_src_configure "$@" |
320 | } |
368 | } |
321 | |
369 | |
322 | # @FUNCTION: xorg-2_src_compile |
370 | # @FUNCTION: xorg-2_src_compile |
323 | # @DESCRIPTION: |
371 | # @DESCRIPTION: |
324 | # Compile a package, performing all X-related tasks. |
372 | # Compile a package, performing all X-related tasks. |
325 | xorg-2_src_compile() { |
373 | xorg-2_src_compile() { |
326 | debug-print-function ${FUNCNAME} "$@" |
374 | debug-print-function ${FUNCNAME} "$@" |
327 | |
375 | |
328 | base_src_compile "$@" |
376 | autotools-utils_src_compile "$@" |
329 | } |
377 | } |
330 | |
378 | |
331 | # @FUNCTION: xorg-2_src_install |
379 | # @FUNCTION: xorg-2_src_install |
332 | # @DESCRIPTION: |
380 | # @DESCRIPTION: |
333 | # Install a built package to ${D}, performing any necessary steps. |
381 | # Install a built package to ${D}, performing any necessary steps. |
334 | # Creates a ChangeLog from git if using live ebuilds. |
382 | # Creates a ChangeLog from git if using live ebuilds. |
335 | xorg-2_src_install() { |
383 | xorg-2_src_install() { |
336 | debug-print-function ${FUNCNAME} "$@" |
384 | debug-print-function ${FUNCNAME} "$@" |
337 | |
385 | |
338 | if [[ ${CATEGORY} == x11-proto ]]; then |
386 | if [[ ${CATEGORY} == x11-proto ]]; then |
339 | emake \ |
387 | autotools-utils_src_install \ |
340 | ${PN/proto/}docdir=${EPREFIX}/usr/share/doc/${PF} \ |
388 | ${PN/proto/}docdir="${EPREFIX}/usr/share/doc/${PF}" \ |
341 | docdir=${EPREFIX}/usr/share/doc/${PF} \ |
389 | docdir="${EPREFIX}/usr/share/doc/${PF}" |
342 | DESTDIR="${D}" \ |
|
|
343 | install || die "emake install failed" |
|
|
344 | else |
390 | else |
345 | emake \ |
391 | autotools-utils_src_install \ |
346 | docdir=${EPREFIX}/usr/share/doc/${PF} \ |
392 | docdir="${EPREFIX}/usr/share/doc/${PF}" |
347 | DESTDIR="${D}" \ |
|
|
348 | install || die "emake install failed" |
|
|
349 | fi |
393 | fi |
350 | |
394 | |
351 | if [[ -n ${GIT_ECLASS} ]]; then |
395 | if [[ -n ${GIT_ECLASS} ]]; then |
352 | pushd "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" > /dev/null |
396 | pushd "${EGIT_STORE_DIR}/${EGIT_CLONE_DIR}" > /dev/null |
353 | git log ${EGIT_COMMIT} > "${S}"/ChangeLog |
397 | git log ${EGIT_COMMIT} > "${S}"/ChangeLog |
… | |
… | |
355 | fi |
399 | fi |
356 | |
400 | |
357 | if [[ -e "${S}"/ChangeLog ]]; then |
401 | if [[ -e "${S}"/ChangeLog ]]; then |
358 | dodoc "${S}"/ChangeLog || die "dodoc failed" |
402 | dodoc "${S}"/ChangeLog || die "dodoc failed" |
359 | fi |
403 | fi |
360 | # @VARIABLE: DOCS |
|
|
361 | # @DESCRIPTION: |
|
|
362 | # Any documentation to install |
|
|
363 | # @DEFAULT_UNSET |
|
|
364 | if [[ -n ${DOCS} ]]; then |
|
|
365 | dodoc ${DOCS} || die "dodoc failed" |
|
|
366 | fi |
|
|
367 | |
404 | |
368 | # Don't install libtool archives for server modules |
405 | # Don't install libtool archives (even with static-libs) |
369 | if [[ -e "${D%/}${EPREFIX}/usr/$(get_libdir)/xorg/modules" ]]; then |
406 | remove_libtool_files all |
370 | find "${D%/}${EPREFIX}/usr/$(get_libdir)/xorg/modules" -name '*.la' \ |
|
|
371 | -exec rm -f {} ';' |
|
|
372 | fi |
|
|
373 | |
407 | |
374 | [[ -n ${FONT} ]] && remove_font_metadata |
408 | [[ -n ${FONT} ]] && remove_font_metadata |
375 | } |
409 | } |
376 | |
410 | |
377 | # @FUNCTION: xorg-2_pkg_postinst |
411 | # @FUNCTION: xorg-2_pkg_postinst |