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