| 1 | # Copyright 1999-2012 Gentoo Foundation |
1 | # Copyright 1999-2012 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/autotools-utils.eclass,v 1.50 2012/05/22 14:29:06 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.55 2012/06/06 17:17:30 mgorny Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: autotools-utils.eclass |
5 | # @ECLASS: autotools-utils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Maciej Mrozowski <reavertm@gentoo.org> |
7 | # Maciej Mrozowski <reavertm@gentoo.org> |
| 8 | # Michał Górny <mgorny@gentoo.org> |
8 | # Michał Górny <mgorny@gentoo.org> |
| … | |
… | |
| 109 | # If your tool is not supported, please open a bug and we'll add support for it. |
109 | # If your tool is not supported, please open a bug and we'll add support for it. |
| 110 | # |
110 | # |
| 111 | # Note that dependencies are added for autoconf, automake and libtool only. |
111 | # Note that dependencies are added for autoconf, automake and libtool only. |
| 112 | # If your package needs one of the external tools listed above, you need to add |
112 | # If your package needs one of the external tools listed above, you need to add |
| 113 | # appropriate packages to DEPEND yourself. |
113 | # appropriate packages to DEPEND yourself. |
| 114 | [[ ${AUTOTOOLS_AUTORECONF} ]] || _autotools_auto_dep=no |
114 | [[ ${AUTOTOOLS_AUTORECONF} ]] || : ${AUTOTOOLS_AUTO_DEPEND:=no} |
| 115 | |
115 | |
| 116 | AUTOTOOLS_AUTO_DEPEND=${_autotools_auto_dep} \ |
|
|
| 117 | inherit autotools eutils libtool |
116 | inherit autotools eutils libtool |
| 118 | |
117 | |
| 119 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
118 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
| 120 | |
|
|
| 121 | unset _autotools_auto_dep |
|
|
| 122 | |
119 | |
| 123 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
120 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
| 124 | # @DEFAULT_UNSET |
121 | # @DEFAULT_UNSET |
| 125 | # @DESCRIPTION: |
122 | # @DESCRIPTION: |
| 126 | # Build directory, location where all autotools generated files should be |
123 | # Build directory, location where all autotools generated files should be |
| … | |
… | |
| 205 | # In most cases it's not necessary to manually invoke this function. |
202 | # In most cases it's not necessary to manually invoke this function. |
| 206 | # See autotools-utils_src_install for reference. |
203 | # See autotools-utils_src_install for reference. |
| 207 | remove_libtool_files() { |
204 | remove_libtool_files() { |
| 208 | debug-print-function ${FUNCNAME} "$@" |
205 | debug-print-function ${FUNCNAME} "$@" |
| 209 | local removing_all |
206 | local removing_all |
|
|
207 | |
|
|
208 | eqawarn "The remove_libtool_files() function was deprecated." |
|
|
209 | eqawarn "Please use prune_libtool_files() from eutils eclass instead." |
|
|
210 | |
| 210 | [[ ${#} -le 1 ]] || die "Invalid number of args to ${FUNCNAME}()" |
211 | [[ ${#} -le 1 ]] || die "Invalid number of args to ${FUNCNAME}()" |
| 211 | if [[ ${#} -eq 1 ]]; then |
212 | if [[ ${#} -eq 1 ]]; then |
| 212 | case "${1}" in |
213 | case "${1}" in |
| 213 | all) |
214 | all) |
| 214 | removing_all=1 |
215 | removing_all=1 |
| … | |
… | |
| 260 | if [[ ${removing} ]]; then |
261 | if [[ ${removing} ]]; then |
| 261 | einfo "Removing unnecessary ${f#${D%/}} (${removing})" |
262 | einfo "Removing unnecessary ${f#${D%/}} (${removing})" |
| 262 | rm -f "${f}" || die |
263 | rm -f "${f}" || die |
| 263 | fi |
264 | fi |
| 264 | done |
265 | done |
| 265 | |
|
|
| 266 | # check for invalid eclass use |
|
|
| 267 | # this is the most commonly used function, so do it here |
|
|
| 268 | _check_build_dir |
|
|
| 269 | if [[ ! -d "${AUTOTOOLS_BUILD_DIR}" ]]; then |
|
|
| 270 | eqawarn "autotools-utils used but autotools-utils_src_configure was never called." |
|
|
| 271 | eqawarn "This is not supported and never was. Please report a bug against" |
|
|
| 272 | eqawarn "the offending ebuild. This will become a fatal error in a near future." |
|
|
| 273 | fi |
|
|
| 274 | } |
266 | } |
| 275 | |
267 | |
| 276 | # @FUNCTION: autotools-utils_autoreconf |
268 | # @FUNCTION: autotools-utils_autoreconf |
| 277 | # @DESCRIPTION: |
269 | # @DESCRIPTION: |
| 278 | # Reconfigure the sources (like gnome-autogen.sh or eautoreconf). |
270 | # Reconfigure the sources (like gnome-autogen.sh or eautoreconf). |
| 279 | autotools-utils_autoreconf() { |
271 | autotools-utils_autoreconf() { |
| 280 | debug-print-function ${FUNCNAME} "$@" |
272 | debug-print-function ${FUNCNAME} "$@" |
|
|
273 | |
|
|
274 | eqawarn "The autotools-utils_autoreconf() function was deprecated." |
|
|
275 | eqawarn "Please call autotools-utils_src_prepare()" |
|
|
276 | eqawarn "with AUTOTOOLS_AUTORECONF set instead." |
| 281 | |
277 | |
| 282 | # Override this func to not require unnecessary eaclocal calls. |
278 | # Override this func to not require unnecessary eaclocal calls. |
| 283 | autotools_check_macro() { |
279 | autotools_check_macro() { |
| 284 | local x |
280 | local x |
| 285 | |
281 | |
| … | |
… | |
| 338 | FROM_EAUTORECONF=sure eautomake |
334 | FROM_EAUTORECONF=sure eautomake |
| 339 | |
335 | |
| 340 | local x |
336 | local x |
| 341 | for x in $(autotools_check_macro_val AC_CONFIG_SUBDIRS); do |
337 | for x in $(autotools_check_macro_val AC_CONFIG_SUBDIRS); do |
| 342 | if [[ -d ${x} ]] ; then |
338 | if [[ -d ${x} ]] ; then |
| 343 | pushd "${x}" >/dev/null |
339 | pushd "${x}" >/dev/null || die |
| 344 | autotools-utils_autoreconf |
340 | autotools-utils_autoreconf |
| 345 | popd >/dev/null |
341 | popd >/dev/null || die |
| 346 | fi |
342 | fi |
| 347 | done |
343 | done |
| 348 | } |
344 | } |
| 349 | |
345 | |
| 350 | # @FUNCTION: autotools-utils_src_prepare |
346 | # @FUNCTION: autotools-utils_src_prepare |
| … | |
… | |
| 373 | einfo 'Will autoreconfigure due to user patches applied.' |
369 | einfo 'Will autoreconfigure due to user patches applied.' |
| 374 | want_autoreconf=yep |
370 | want_autoreconf=yep |
| 375 | fi |
371 | fi |
| 376 | fi |
372 | fi |
| 377 | |
373 | |
| 378 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
374 | [[ ${want_autoreconf} ]] && eautoreconf |
| 379 | elibtoolize --patch-only |
375 | elibtoolize --patch-only |
| 380 | } |
376 | } |
| 381 | |
377 | |
| 382 | # @FUNCTION: autotools-utils_src_configure |
378 | # @FUNCTION: autotools-utils_src_configure |
| 383 | # @DESCRIPTION: |
379 | # @DESCRIPTION: |
| … | |
… | |
| 416 | |
412 | |
| 417 | # Append user args |
413 | # Append user args |
| 418 | econfargs+=("${myeconfargs[@]}") |
414 | econfargs+=("${myeconfargs[@]}") |
| 419 | |
415 | |
| 420 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
416 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
| 421 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
417 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 422 | econf "${econfargs[@]}" "$@" |
418 | econf "${econfargs[@]}" "$@" |
| 423 | popd > /dev/null |
419 | popd > /dev/null || die |
| 424 | } |
420 | } |
| 425 | |
421 | |
| 426 | # @FUNCTION: autotools-utils_src_compile |
422 | # @FUNCTION: autotools-utils_src_compile |
| 427 | # @DESCRIPTION: |
423 | # @DESCRIPTION: |
| 428 | # The autotools src_compile function, invokes emake in specified AUTOTOOLS_BUILD_DIR. |
424 | # The autotools src_compile function, invokes emake in specified AUTOTOOLS_BUILD_DIR. |
| 429 | autotools-utils_src_compile() { |
425 | autotools-utils_src_compile() { |
| 430 | debug-print-function ${FUNCNAME} "$@" |
426 | debug-print-function ${FUNCNAME} "$@" |
| 431 | |
427 | |
| 432 | _check_build_dir |
428 | _check_build_dir |
| 433 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
429 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 434 | emake "$@" || die 'emake failed' |
430 | emake "$@" || die 'emake failed' |
| 435 | popd > /dev/null |
431 | popd > /dev/null || die |
| 436 | } |
432 | } |
| 437 | |
433 | |
| 438 | # @FUNCTION: autotools-utils_src_install |
434 | # @FUNCTION: autotools-utils_src_install |
| 439 | # @DESCRIPTION: |
435 | # @DESCRIPTION: |
| 440 | # The autotools src_install function. Runs emake install, unconditionally |
436 | # The autotools src_install function. Runs emake install, unconditionally |
| … | |
… | |
| 445 | # DOCS and HTML_DOCS arrays are supported. See base.eclass(5) for reference. |
441 | # DOCS and HTML_DOCS arrays are supported. See base.eclass(5) for reference. |
| 446 | autotools-utils_src_install() { |
442 | autotools-utils_src_install() { |
| 447 | debug-print-function ${FUNCNAME} "$@" |
443 | debug-print-function ${FUNCNAME} "$@" |
| 448 | |
444 | |
| 449 | _check_build_dir |
445 | _check_build_dir |
| 450 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
446 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 451 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
447 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 452 | popd > /dev/null |
448 | popd > /dev/null || die |
| 453 | |
449 | |
| 454 | # Move docs installed by autotools (in EAPI < 4). |
450 | # Move docs installed by autotools (in EAPI < 4). |
| 455 | if [[ ${EAPI} == [23] ]] \ |
451 | if [[ ${EAPI} == [23] ]] \ |
| 456 | && path_exists "${D}${EPREFIX}"/usr/share/doc/${PF}/*; then |
452 | && path_exists "${D}${EPREFIX}"/usr/share/doc/${PF}/*; then |
| 457 | if [[ $(find "${D}${EPREFIX}"/usr/share/doc/${PF}/* -type d) ]]; then |
453 | if [[ $(find "${D}${EPREFIX}"/usr/share/doc/${PF}/* -type d) ]]; then |
| … | |
… | |
| 482 | if [[ ${HTML_DOCS} ]]; then |
478 | if [[ ${HTML_DOCS} ]]; then |
| 483 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
479 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
| 484 | fi |
480 | fi |
| 485 | |
481 | |
| 486 | # Remove libtool files and unnecessary static libs |
482 | # Remove libtool files and unnecessary static libs |
| 487 | remove_libtool_files |
483 | prune_libtool_files |
| 488 | } |
484 | } |
| 489 | |
485 | |
| 490 | # @FUNCTION: autotools-utils_src_test |
486 | # @FUNCTION: autotools-utils_src_test |
| 491 | # @DESCRIPTION: |
487 | # @DESCRIPTION: |
| 492 | # The autotools src_test function. Runs emake check in build directory. |
488 | # The autotools src_test function. Runs emake check in build directory. |
| 493 | autotools-utils_src_test() { |
489 | autotools-utils_src_test() { |
| 494 | debug-print-function ${FUNCNAME} "$@" |
490 | debug-print-function ${FUNCNAME} "$@" |
| 495 | |
491 | |
| 496 | _check_build_dir |
492 | _check_build_dir |
| 497 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
493 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 498 | # Run default src_test as defined in ebuild.sh |
494 | # Run default src_test as defined in ebuild.sh |
| 499 | default_src_test |
495 | default_src_test |
| 500 | popd > /dev/null |
496 | popd > /dev/null || die |
| 501 | } |
497 | } |