| 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.44 2012/01/19 21:49:38 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.54 2012/06/06 15:43:45 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). |
| … | |
… | |
| 304 | # Support running additional tools like gnome-autogen.sh. |
296 | # Support running additional tools like gnome-autogen.sh. |
| 305 | # Note: you need to add additional depends to the ebuild. |
297 | # Note: you need to add additional depends to the ebuild. |
| 306 | |
298 | |
| 307 | # gettext |
299 | # gettext |
| 308 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
300 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
| 309 | echo 'no' | autotools_run_tool glib-gettextize --copy |
301 | echo 'no' | autotools_run_tool glib-gettextize --copy --force |
| 310 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
302 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
| 311 | eautopoint --force |
303 | eautopoint --force |
| 312 | fi |
304 | fi |
| 313 | |
305 | |
| 314 | # intltool |
306 | # intltool |
| … | |
… | |
| 325 | # gnome-doc |
317 | # gnome-doc |
| 326 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
318 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
| 327 | autotools_run_tool gnome-doc-prepare --copy --force |
319 | autotools_run_tool gnome-doc-prepare --copy --force |
| 328 | fi |
320 | fi |
| 329 | |
321 | |
| 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) ]] |
322 | if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] |
| 333 | then |
323 | then |
| 334 | _elibtoolize --copy --force --install |
324 | _elibtoolize --copy --force --install |
| 335 | else |
325 | fi |
|
|
326 | |
| 336 | eaclocal |
327 | eaclocal |
| 337 | fi |
|
|
| 338 | |
|
|
| 339 | eautoconf |
328 | eautoconf |
| 340 | eautoheader |
329 | eautoheader |
| 341 | FROM_EAUTORECONF=sure eautomake |
330 | FROM_EAUTORECONF=sure eautomake |
| 342 | |
331 | |
| 343 | local x |
332 | local x |
| 344 | for x in $(autotools_get_subdirs); do |
333 | for x in $(autotools_check_macro_val AC_CONFIG_SUBDIRS); do |
| 345 | if [[ -d ${x} ]] ; then |
334 | if [[ -d ${x} ]] ; then |
| 346 | pushd "${x}" >/dev/null |
335 | pushd "${x}" >/dev/null || die |
| 347 | autotools-utils_eautoreconf |
336 | autotools-utils_autoreconf |
| 348 | popd >/dev/null |
337 | popd >/dev/null || die |
| 349 | fi |
338 | fi |
| 350 | done |
339 | done |
| 351 | } |
340 | } |
| 352 | |
341 | |
| 353 | # @FUNCTION: autotools-utils_src_prepare |
342 | # @FUNCTION: autotools-utils_src_prepare |
| … | |
… | |
| 358 | autotools-utils_src_prepare() { |
347 | autotools-utils_src_prepare() { |
| 359 | debug-print-function ${FUNCNAME} "$@" |
348 | debug-print-function ${FUNCNAME} "$@" |
| 360 | |
349 | |
| 361 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
350 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
| 362 | |
351 | |
| 363 | touch "${T}"/.autotools-utils.timestamp || die |
|
|
| 364 | [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" |
352 | [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" |
|
|
353 | |
|
|
354 | at_checksum() { |
|
|
355 | find '(' -name 'Makefile.am' \ |
|
|
356 | -o -name 'configure.ac' \ |
|
|
357 | -o -name 'configure.in' ')' \ |
|
|
358 | -exec cksum {} + | sort -k2 |
|
|
359 | } |
|
|
360 | |
|
|
361 | [[ ! ${want_autoreconf} ]] && local checksum=$(at_checksum) |
| 365 | epatch_user |
362 | epatch_user |
| 366 | if [[ ! ${want_autoreconf} ]]; then |
363 | if [[ ! ${want_autoreconf} ]]; then |
| 367 | if [[ $(find . -newer "${T}"/.autotools-utils.timestamp \ |
364 | if [[ ${checksum} != $(at_checksum) ]]; then |
| 368 | -a '(' -name 'Makefile.am' \ |
|
|
| 369 | -o -name 'configure.ac' \ |
|
|
| 370 | -o -name 'configure.in' ')' \ |
|
|
| 371 | -print -quit) ]]; then |
|
|
| 372 | einfo 'Will autoreconfigure due to patches applied.' |
365 | einfo 'Will autoreconfigure due to user patches applied.' |
| 373 | want_autoreconf=yep |
366 | want_autoreconf=yep |
| 374 | fi |
367 | fi |
| 375 | fi |
368 | fi |
| 376 | |
369 | |
| 377 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
370 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
| … | |
… | |
| 415 | |
408 | |
| 416 | # Append user args |
409 | # Append user args |
| 417 | econfargs+=("${myeconfargs[@]}") |
410 | econfargs+=("${myeconfargs[@]}") |
| 418 | |
411 | |
| 419 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
412 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
| 420 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
413 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 421 | econf "${econfargs[@]}" "$@" |
414 | econf "${econfargs[@]}" "$@" |
| 422 | popd > /dev/null |
415 | popd > /dev/null || die |
| 423 | } |
416 | } |
| 424 | |
417 | |
| 425 | # @FUNCTION: autotools-utils_src_compile |
418 | # @FUNCTION: autotools-utils_src_compile |
| 426 | # @DESCRIPTION: |
419 | # @DESCRIPTION: |
| 427 | # The autotools src_compile function, invokes emake in specified AUTOTOOLS_BUILD_DIR. |
420 | # The autotools src_compile function, invokes emake in specified AUTOTOOLS_BUILD_DIR. |
| 428 | autotools-utils_src_compile() { |
421 | autotools-utils_src_compile() { |
| 429 | debug-print-function ${FUNCNAME} "$@" |
422 | debug-print-function ${FUNCNAME} "$@" |
| 430 | |
423 | |
| 431 | _check_build_dir |
424 | _check_build_dir |
| 432 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
425 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 433 | emake "$@" || die 'emake failed' |
426 | emake "$@" || die 'emake failed' |
| 434 | popd > /dev/null |
427 | popd > /dev/null || die |
| 435 | } |
428 | } |
| 436 | |
429 | |
| 437 | # @FUNCTION: autotools-utils_src_install |
430 | # @FUNCTION: autotools-utils_src_install |
| 438 | # @DESCRIPTION: |
431 | # @DESCRIPTION: |
| 439 | # The autotools src_install function. Runs emake install, unconditionally |
432 | # The autotools src_install function. Runs emake install, unconditionally |
| … | |
… | |
| 444 | # DOCS and HTML_DOCS arrays are supported. See base.eclass(5) for reference. |
437 | # DOCS and HTML_DOCS arrays are supported. See base.eclass(5) for reference. |
| 445 | autotools-utils_src_install() { |
438 | autotools-utils_src_install() { |
| 446 | debug-print-function ${FUNCNAME} "$@" |
439 | debug-print-function ${FUNCNAME} "$@" |
| 447 | |
440 | |
| 448 | _check_build_dir |
441 | _check_build_dir |
| 449 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
442 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 450 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
443 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 451 | popd > /dev/null |
444 | popd > /dev/null || die |
| 452 | |
445 | |
| 453 | # Move docs installed by autotools (in EAPI < 4). |
446 | # Move docs installed by autotools (in EAPI < 4). |
| 454 | if [[ ${EAPI} == [23] ]] \ |
447 | if [[ ${EAPI} == [23] ]] \ |
| 455 | && path_exists "${D}${EPREFIX}"/usr/share/doc/${PF}/*; then |
448 | && path_exists "${D}${EPREFIX}"/usr/share/doc/${PF}/*; then |
| 456 | if [[ $(find "${D}${EPREFIX}"/usr/share/doc/${PF}/* -type d) ]]; then |
449 | if [[ $(find "${D}${EPREFIX}"/usr/share/doc/${PF}/* -type d) ]]; then |
| … | |
… | |
| 481 | if [[ ${HTML_DOCS} ]]; then |
474 | if [[ ${HTML_DOCS} ]]; then |
| 482 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
475 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
| 483 | fi |
476 | fi |
| 484 | |
477 | |
| 485 | # Remove libtool files and unnecessary static libs |
478 | # Remove libtool files and unnecessary static libs |
| 486 | remove_libtool_files |
479 | prune_libtool_files |
| 487 | } |
480 | } |
| 488 | |
481 | |
| 489 | # @FUNCTION: autotools-utils_src_test |
482 | # @FUNCTION: autotools-utils_src_test |
| 490 | # @DESCRIPTION: |
483 | # @DESCRIPTION: |
| 491 | # The autotools src_test function. Runs emake check in build directory. |
484 | # The autotools src_test function. Runs emake check in build directory. |
| 492 | autotools-utils_src_test() { |
485 | autotools-utils_src_test() { |
| 493 | debug-print-function ${FUNCNAME} "$@" |
486 | debug-print-function ${FUNCNAME} "$@" |
| 494 | |
487 | |
| 495 | _check_build_dir |
488 | _check_build_dir |
| 496 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
489 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 497 | # Run default src_test as defined in ebuild.sh |
490 | # Run default src_test as defined in ebuild.sh |
| 498 | default_src_test |
491 | default_src_test |
| 499 | popd > /dev/null |
492 | popd > /dev/null || die |
| 500 | } |
493 | } |