| 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.38 2012/01/14 15:18:05 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 |
| … | |
… | |
| 282 | # Override this func to not require unnecessary eaclocal calls. |
279 | # Override this func to not require unnecessary eaclocal calls. |
| 283 | autotools_check_macro() { |
280 | autotools_check_macro() { |
| 284 | local x |
281 | local x |
| 285 | |
282 | |
| 286 | # Add a few additional variants as we don't get expansions. |
283 | # Add a few additional variants as we don't get expansions. |
| 287 | [[ ${1} = AC_CONFIG_HEADERS ]] && set -- "${@}" AC_CONFIG_HEADER |
284 | [[ ${1} = AC_CONFIG_HEADERS ]] && set -- "${@}" \ |
|
|
285 | AC_CONFIG_HEADER AM_CONFIG_HEADER |
| 288 | |
286 | |
| 289 | for x; do |
287 | for x; do |
| 290 | grep -h "^${x}" configure.{ac,in} 2>/dev/null |
288 | grep -h "^${x}" configure.{ac,in} 2>/dev/null |
| 291 | done |
289 | done |
| 292 | } |
290 | } |
| … | |
… | |
| 303 | # Support running additional tools like gnome-autogen.sh. |
301 | # Support running additional tools like gnome-autogen.sh. |
| 304 | # Note: you need to add additional depends to the ebuild. |
302 | # Note: you need to add additional depends to the ebuild. |
| 305 | |
303 | |
| 306 | # gettext |
304 | # gettext |
| 307 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
305 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
| 308 | echo 'no' | autotools_run_tool glib-gettextize --copy |
306 | echo 'no' | autotools_run_tool glib-gettextize --copy --force |
| 309 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
307 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
| 310 | eautopoint --force |
308 | eautopoint --force |
| 311 | fi |
309 | fi |
| 312 | |
310 | |
| 313 | # intltool |
311 | # intltool |
| … | |
… | |
| 324 | # gnome-doc |
322 | # gnome-doc |
| 325 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
323 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
| 326 | autotools_run_tool gnome-doc-prepare --copy --force |
324 | autotools_run_tool gnome-doc-prepare --copy --force |
| 327 | fi |
325 | fi |
| 328 | |
326 | |
| 329 | # We need to perform the check twice to know whether to run eaclocal. |
|
|
| 330 | # (_elibtoolize does that itself) |
|
|
| 331 | 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) ]] |
| 332 | then |
328 | then |
| 333 | _elibtoolize --copy --force --install |
329 | _elibtoolize --copy --force --install |
| 334 | else |
330 | fi |
|
|
331 | |
| 335 | eaclocal |
332 | eaclocal |
| 336 | fi |
|
|
| 337 | |
|
|
| 338 | eautoconf |
333 | eautoconf |
| 339 | eautoheader |
334 | eautoheader |
| 340 | FROM_EAUTORECONF=sure eautomake |
335 | FROM_EAUTORECONF=sure eautomake |
| 341 | |
336 | |
| 342 | local x |
337 | local x |
| 343 | for x in $(autotools_get_subdirs); do |
338 | for x in $(autotools_check_macro_val AC_CONFIG_SUBDIRS); do |
| 344 | if [[ -d ${x} ]] ; then |
339 | if [[ -d ${x} ]] ; then |
| 345 | pushd "${x}" >/dev/null |
340 | pushd "${x}" >/dev/null || die |
| 346 | autotools-utils_eautoreconf |
341 | autotools-utils_autoreconf |
| 347 | popd >/dev/null |
342 | popd >/dev/null || die |
| 348 | fi |
343 | fi |
| 349 | done |
344 | done |
| 350 | } |
345 | } |
| 351 | |
346 | |
| 352 | # @FUNCTION: autotools-utils_src_prepare |
347 | # @FUNCTION: autotools-utils_src_prepare |
| … | |
… | |
| 357 | autotools-utils_src_prepare() { |
352 | autotools-utils_src_prepare() { |
| 358 | debug-print-function ${FUNCNAME} "$@" |
353 | debug-print-function ${FUNCNAME} "$@" |
| 359 | |
354 | |
| 360 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
355 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
| 361 | |
356 | |
| 362 | touch "${T}"/.autotools-utils.timestamp || die |
|
|
| 363 | [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" |
357 | [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" |
|
|
358 | |
|
|
359 | at_checksum() { |
|
|
360 | find '(' -name 'Makefile.am' \ |
|
|
361 | -o -name 'configure.ac' \ |
|
|
362 | -o -name 'configure.in' ')' \ |
|
|
363 | -exec cksum {} + | sort -k2 |
|
|
364 | } |
|
|
365 | |
|
|
366 | [[ ! ${want_autoreconf} ]] && local checksum=$(at_checksum) |
| 364 | epatch_user |
367 | epatch_user |
| 365 | if [[ ! ${want_autoreconf} ]]; then |
368 | if [[ ! ${want_autoreconf} ]]; then |
| 366 | if [[ $(find . -newer "${T}"/.autotools-utils.timestamp \ |
369 | if [[ ${checksum} != $(at_checksum) ]]; then |
| 367 | -a '(' -name 'Makefile.am' \ |
|
|
| 368 | -o -name 'configure.ac' \ |
|
|
| 369 | -o -name 'configure.in' ')' \ |
|
|
| 370 | -print -quit) ]]; then |
|
|
| 371 | einfo 'Will autoreconfigure due to patches applied.' |
370 | einfo 'Will autoreconfigure due to user patches applied.' |
| 372 | want_autoreconf=yep |
371 | want_autoreconf=yep |
| 373 | fi |
372 | fi |
| 374 | fi |
373 | fi |
| 375 | |
374 | |
| 376 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
375 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
| … | |
… | |
| 393 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
392 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
| 394 | |
393 | |
| 395 | [[ ${EAPI} == 2 ]] && ! use prefix && EPREFIX= |
394 | [[ ${EAPI} == 2 ]] && ! use prefix && EPREFIX= |
| 396 | |
395 | |
| 397 | # Common args |
396 | # Common args |
| 398 | local econfargs=( |
397 | local econfargs=() |
|
|
398 | |
|
|
399 | _check_build_dir |
|
|
400 | if "${ECONF_SOURCE}"/configure --help 2>&1 | grep -q '^ *--docdir='; then |
|
|
401 | econfargs+=( |
| 399 | --docdir="${EPREFIX}/usr/share/doc/${PF}" |
402 | --docdir="${EPREFIX}"/usr/share/doc/${PF} |
| 400 | ) |
403 | ) |
|
|
404 | fi |
| 401 | |
405 | |
| 402 | # Handle static-libs found in IUSE, disable them by default |
406 | # Handle static-libs found in IUSE, disable them by default |
| 403 | if in_iuse static-libs; then |
407 | if in_iuse static-libs; then |
| 404 | econfargs+=( |
408 | econfargs+=( |
| 405 | --enable-shared |
409 | --enable-shared |
| … | |
… | |
| 408 | fi |
412 | fi |
| 409 | |
413 | |
| 410 | # Append user args |
414 | # Append user args |
| 411 | econfargs+=("${myeconfargs[@]}") |
415 | econfargs+=("${myeconfargs[@]}") |
| 412 | |
416 | |
| 413 | _check_build_dir |
|
|
| 414 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
417 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
| 415 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
418 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 416 | econf "${econfargs[@]}" "$@" |
419 | econf "${econfargs[@]}" "$@" |
| 417 | popd > /dev/null |
420 | popd > /dev/null || die |
| 418 | } |
421 | } |
| 419 | |
422 | |
| 420 | # @FUNCTION: autotools-utils_src_compile |
423 | # @FUNCTION: autotools-utils_src_compile |
| 421 | # @DESCRIPTION: |
424 | # @DESCRIPTION: |
| 422 | # 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. |
| 423 | autotools-utils_src_compile() { |
426 | autotools-utils_src_compile() { |
| 424 | debug-print-function ${FUNCNAME} "$@" |
427 | debug-print-function ${FUNCNAME} "$@" |
| 425 | |
428 | |
| 426 | _check_build_dir |
429 | _check_build_dir |
| 427 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
430 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 428 | emake "$@" || die 'emake failed' |
431 | emake "$@" || die 'emake failed' |
| 429 | popd > /dev/null |
432 | popd > /dev/null || die |
| 430 | } |
433 | } |
| 431 | |
434 | |
| 432 | # @FUNCTION: autotools-utils_src_install |
435 | # @FUNCTION: autotools-utils_src_install |
| 433 | # @DESCRIPTION: |
436 | # @DESCRIPTION: |
| 434 | # The autotools src_install function. Runs emake install, unconditionally |
437 | # The autotools src_install function. Runs emake install, unconditionally |
| … | |
… | |
| 439 | # 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. |
| 440 | autotools-utils_src_install() { |
443 | autotools-utils_src_install() { |
| 441 | debug-print-function ${FUNCNAME} "$@" |
444 | debug-print-function ${FUNCNAME} "$@" |
| 442 | |
445 | |
| 443 | _check_build_dir |
446 | _check_build_dir |
| 444 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
447 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 445 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
448 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 446 | popd > /dev/null |
449 | popd > /dev/null || die |
| 447 | |
450 | |
| 448 | # Move docs installed by autotools (in EAPI < 4). |
451 | # Move docs installed by autotools (in EAPI < 4). |
| 449 | if [[ ${EAPI} == [23] && -d ${D}${EPREFIX}/usr/share/doc/${PF} ]]; then |
452 | if [[ ${EAPI} == [23] ]] \ |
|
|
453 | && path_exists "${D}${EPREFIX}"/usr/share/doc/${PF}/*; then |
|
|
454 | if [[ $(find "${D}${EPREFIX}"/usr/share/doc/${PF}/* -type d) ]]; then |
|
|
455 | eqawarn "autotools-utils: directories in docdir require at least EAPI 4" |
|
|
456 | else |
| 450 | mkdir "${T}"/temp-docdir |
457 | mkdir "${T}"/temp-docdir |
| 451 | mv "${D}${EPREFIX}"/usr/share/doc/${PF}/* "${T}"/temp-docdir/ \ |
458 | mv "${D}${EPREFIX}"/usr/share/doc/${PF}/* "${T}"/temp-docdir/ \ |
| 452 | || die "moving docs to tempdir failed" |
459 | || die "moving docs to tempdir failed" |
| 453 | |
460 | |
| 454 | local f |
|
|
| 455 | for f in "${T}"/temp-docdir/*; do |
|
|
| 456 | [[ -d ${f} ]] \ |
|
|
| 457 | && die "directories in docdir require at least EAPI 4" |
|
|
| 458 | done |
|
|
| 459 | |
|
|
| 460 | dodoc "${T}"/temp-docdir/* || die "docdir dodoc failed" |
461 | dodoc "${T}"/temp-docdir/* || die "docdir dodoc failed" |
| 461 | rm -r "${T}"/temp-docdir || die |
462 | rm -r "${T}"/temp-docdir || die |
|
|
463 | fi |
| 462 | fi |
464 | fi |
| 463 | |
465 | |
| 464 | # XXX: support installing them from builddir as well? |
466 | # XXX: support installing them from builddir as well? |
| 465 | if [[ ${DOCS} ]]; then |
467 | if [[ ${DOCS} ]]; then |
| 466 | dodoc "${DOCS[@]}" || die "dodoc failed" |
468 | dodoc "${DOCS[@]}" || die "dodoc failed" |
| … | |
… | |
| 487 | # The autotools src_test function. Runs emake check in build directory. |
489 | # The autotools src_test function. Runs emake check in build directory. |
| 488 | autotools-utils_src_test() { |
490 | autotools-utils_src_test() { |
| 489 | debug-print-function ${FUNCNAME} "$@" |
491 | debug-print-function ${FUNCNAME} "$@" |
| 490 | |
492 | |
| 491 | _check_build_dir |
493 | _check_build_dir |
| 492 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
494 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 493 | # Run default src_test as defined in ebuild.sh |
495 | # Run default src_test as defined in ebuild.sh |
| 494 | default_src_test |
496 | default_src_test |
| 495 | popd > /dev/null |
497 | popd > /dev/null || die |
| 496 | } |
498 | } |