| 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.47 2012/02/02 22:01:13 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.52 2012/05/28 07:45:19 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 |
| … | |
… | |
| 325 | # gnome-doc |
322 | # gnome-doc |
| 326 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
323 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
| 327 | autotools_run_tool gnome-doc-prepare --copy --force |
324 | autotools_run_tool gnome-doc-prepare --copy --force |
| 328 | fi |
325 | fi |
| 329 | |
326 | |
| 330 | # We need to perform the check twice to know whether to run eaclocal. |
|
|
| 331 | # (_elibtoolize does that itself) |
|
|
| 332 | if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] |
327 | if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] |
| 333 | then |
328 | then |
| 334 | _elibtoolize --copy --force --install |
329 | _elibtoolize --copy --force --install |
| 335 | else |
330 | fi |
|
|
331 | |
| 336 | eaclocal |
332 | eaclocal |
| 337 | fi |
|
|
| 338 | |
|
|
| 339 | eautoconf |
333 | eautoconf |
| 340 | eautoheader |
334 | eautoheader |
| 341 | FROM_EAUTORECONF=sure eautomake |
335 | FROM_EAUTORECONF=sure eautomake |
| 342 | |
336 | |
| 343 | local x |
337 | local x |
| 344 | for x in $(autotools_get_subdirs); do |
338 | for x in $(autotools_check_macro_val AC_CONFIG_SUBDIRS); do |
| 345 | if [[ -d ${x} ]] ; then |
339 | if [[ -d ${x} ]] ; then |
| 346 | pushd "${x}" >/dev/null |
340 | pushd "${x}" >/dev/null || die |
| 347 | autotools-utils_eautoreconf |
341 | autotools-utils_autoreconf |
| 348 | popd >/dev/null |
342 | popd >/dev/null || die |
| 349 | fi |
343 | fi |
| 350 | done |
344 | done |
| 351 | } |
345 | } |
| 352 | |
346 | |
| 353 | # @FUNCTION: autotools-utils_src_prepare |
347 | # @FUNCTION: autotools-utils_src_prepare |
| … | |
… | |
| 419 | |
413 | |
| 420 | # Append user args |
414 | # Append user args |
| 421 | econfargs+=("${myeconfargs[@]}") |
415 | econfargs+=("${myeconfargs[@]}") |
| 422 | |
416 | |
| 423 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
417 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
| 424 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
418 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 425 | econf "${econfargs[@]}" "$@" |
419 | econf "${econfargs[@]}" "$@" |
| 426 | popd > /dev/null |
420 | popd > /dev/null || die |
| 427 | } |
421 | } |
| 428 | |
422 | |
| 429 | # @FUNCTION: autotools-utils_src_compile |
423 | # @FUNCTION: autotools-utils_src_compile |
| 430 | # @DESCRIPTION: |
424 | # @DESCRIPTION: |
| 431 | # The autotools src_compile function, invokes emake in specified AUTOTOOLS_BUILD_DIR. |
425 | # The autotools src_compile function, invokes emake in specified AUTOTOOLS_BUILD_DIR. |
| 432 | autotools-utils_src_compile() { |
426 | autotools-utils_src_compile() { |
| 433 | debug-print-function ${FUNCNAME} "$@" |
427 | debug-print-function ${FUNCNAME} "$@" |
| 434 | |
428 | |
| 435 | _check_build_dir |
429 | _check_build_dir |
| 436 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
430 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 437 | emake "$@" || die 'emake failed' |
431 | emake "$@" || die 'emake failed' |
| 438 | popd > /dev/null |
432 | popd > /dev/null || die |
| 439 | } |
433 | } |
| 440 | |
434 | |
| 441 | # @FUNCTION: autotools-utils_src_install |
435 | # @FUNCTION: autotools-utils_src_install |
| 442 | # @DESCRIPTION: |
436 | # @DESCRIPTION: |
| 443 | # The autotools src_install function. Runs emake install, unconditionally |
437 | # The autotools src_install function. Runs emake install, unconditionally |
| … | |
… | |
| 448 | # DOCS and HTML_DOCS arrays are supported. See base.eclass(5) for reference. |
442 | # DOCS and HTML_DOCS arrays are supported. See base.eclass(5) for reference. |
| 449 | autotools-utils_src_install() { |
443 | autotools-utils_src_install() { |
| 450 | debug-print-function ${FUNCNAME} "$@" |
444 | debug-print-function ${FUNCNAME} "$@" |
| 451 | |
445 | |
| 452 | _check_build_dir |
446 | _check_build_dir |
| 453 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
447 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 454 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
448 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 455 | popd > /dev/null |
449 | popd > /dev/null || die |
| 456 | |
450 | |
| 457 | # Move docs installed by autotools (in EAPI < 4). |
451 | # Move docs installed by autotools (in EAPI < 4). |
| 458 | if [[ ${EAPI} == [23] ]] \ |
452 | if [[ ${EAPI} == [23] ]] \ |
| 459 | && path_exists "${D}${EPREFIX}"/usr/share/doc/${PF}/*; then |
453 | && path_exists "${D}${EPREFIX}"/usr/share/doc/${PF}/*; then |
| 460 | if [[ $(find "${D}${EPREFIX}"/usr/share/doc/${PF}/* -type d) ]]; then |
454 | if [[ $(find "${D}${EPREFIX}"/usr/share/doc/${PF}/* -type d) ]]; then |
| … | |
… | |
| 495 | # The autotools src_test function. Runs emake check in build directory. |
489 | # The autotools src_test function. Runs emake check in build directory. |
| 496 | autotools-utils_src_test() { |
490 | autotools-utils_src_test() { |
| 497 | debug-print-function ${FUNCNAME} "$@" |
491 | debug-print-function ${FUNCNAME} "$@" |
| 498 | |
492 | |
| 499 | _check_build_dir |
493 | _check_build_dir |
| 500 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
494 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 501 | # Run default src_test as defined in ebuild.sh |
495 | # Run default src_test as defined in ebuild.sh |
| 502 | default_src_test |
496 | default_src_test |
| 503 | popd > /dev/null |
497 | popd > /dev/null || die |
| 504 | } |
498 | } |