| 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.34 2012/01/14 14:41:10 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.44 2012/01/19 21:49:38 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> |
| … | |
… | |
| 97 | # @DEFAULT_UNSET |
97 | # @DEFAULT_UNSET |
| 98 | # @DESCRIPTION: |
98 | # @DESCRIPTION: |
| 99 | # Set to a non-empty value in order to enable running autoreconf |
99 | # Set to a non-empty value in order to enable running autoreconf |
| 100 | # in src_prepare() and adding autotools dependencies. |
100 | # in src_prepare() and adding autotools dependencies. |
| 101 | # |
101 | # |
|
|
102 | # This is usually necessary when using live sources or applying patches |
|
|
103 | # modifying configure.ac or Makefile.am files. Note that in the latter case |
|
|
104 | # setting this variable is obligatory even though the eclass will work without |
|
|
105 | # it (to add the necessary dependencies). |
|
|
106 | # |
| 102 | # The eclass will try to determine the correct autotools to run including a few |
107 | # The eclass will try to determine the correct autotools to run including a few |
| 103 | # external tools: gettext, glib-gettext, intltool, gtk-doc, gnome-doc-prepare. |
108 | # external tools: gettext, glib-gettext, intltool, gtk-doc, gnome-doc-prepare. |
| 104 | # 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. |
| 105 | # |
110 | # |
| 106 | # Note that dependencies are added for autoconf, automake and libtool only. |
111 | # Note that dependencies are added for autoconf, automake and libtool only. |
| … | |
… | |
| 277 | # Override this func to not require unnecessary eaclocal calls. |
282 | # Override this func to not require unnecessary eaclocal calls. |
| 278 | autotools_check_macro() { |
283 | autotools_check_macro() { |
| 279 | local x |
284 | local x |
| 280 | |
285 | |
| 281 | # Add a few additional variants as we don't get expansions. |
286 | # Add a few additional variants as we don't get expansions. |
| 282 | [[ ${1} = AC_CONFIG_HEADERS ]] && set -- "${@}" AC_CONFIG_HEADER |
287 | [[ ${1} = AC_CONFIG_HEADERS ]] && set -- "${@}" \ |
|
|
288 | AC_CONFIG_HEADER AM_CONFIG_HEADER |
| 283 | |
289 | |
| 284 | for x; do |
290 | for x; do |
| 285 | grep -h "^${x}" configure.{ac,in} 2>/dev/null |
291 | grep -h "^${x}" configure.{ac,in} 2>/dev/null |
| 286 | done |
292 | done |
| 287 | } |
293 | } |
| … | |
… | |
| 300 | |
306 | |
| 301 | # gettext |
307 | # gettext |
| 302 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
308 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
| 303 | echo 'no' | autotools_run_tool glib-gettextize --copy |
309 | echo 'no' | autotools_run_tool glib-gettextize --copy |
| 304 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
310 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
| 305 | eautopoint |
311 | eautopoint --force |
| 306 | fi |
312 | fi |
| 307 | |
313 | |
| 308 | # intltool |
314 | # intltool |
| 309 | if [[ $(autotools_check_macro AC_PROG_INTLTOOL IT_PROG_INTLTOOL) ]] |
315 | if [[ $(autotools_check_macro AC_PROG_INTLTOOL IT_PROG_INTLTOOL) ]] |
| 310 | then |
316 | then |
| 311 | autotools_run_tool intltoolize --copy --automake |
317 | autotools_run_tool intltoolize --copy --automake --force |
| 312 | fi |
318 | fi |
| 313 | |
319 | |
| 314 | # gtk-doc |
320 | # gtk-doc |
| 315 | if [[ $(autotools_check_macro GTK_DOC_CHECK) ]]; then |
321 | if [[ $(autotools_check_macro GTK_DOC_CHECK) ]]; then |
| 316 | autotools_run_tool gtkdocize --copy |
322 | autotools_run_tool gtkdocize --copy |
| 317 | fi |
323 | fi |
| 318 | |
324 | |
| 319 | # gnome-doc |
325 | # gnome-doc |
| 320 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
326 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
| 321 | autotools_run_tool gnome-doc-prepare --copy |
327 | autotools_run_tool gnome-doc-prepare --copy --force |
| 322 | fi |
328 | fi |
| 323 | |
329 | |
| 324 | # We need to perform the check twice to know whether to run eaclocal. |
330 | # We need to perform the check twice to know whether to run eaclocal. |
| 325 | # (_elibtoolize does that itself) |
331 | # (_elibtoolize does that itself) |
| 326 | if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] |
332 | if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] |
| … | |
… | |
| 330 | eaclocal |
336 | eaclocal |
| 331 | fi |
337 | fi |
| 332 | |
338 | |
| 333 | eautoconf |
339 | eautoconf |
| 334 | eautoheader |
340 | eautoheader |
| 335 | eautomake |
341 | FROM_EAUTORECONF=sure eautomake |
| 336 | |
342 | |
| 337 | local x |
343 | local x |
| 338 | for x in $(autotools_get_subdirs); do |
344 | for x in $(autotools_get_subdirs); do |
| 339 | if [[ -d ${x} ]] ; then |
345 | if [[ -d ${x} ]] ; then |
| 340 | pushd "${x}" >/dev/null |
346 | pushd "${x}" >/dev/null |
| … | |
… | |
| 352 | autotools-utils_src_prepare() { |
358 | autotools-utils_src_prepare() { |
| 353 | debug-print-function ${FUNCNAME} "$@" |
359 | debug-print-function ${FUNCNAME} "$@" |
| 354 | |
360 | |
| 355 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
361 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
| 356 | |
362 | |
|
|
363 | touch "${T}"/.autotools-utils.timestamp || die |
| 357 | [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" |
364 | [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" |
| 358 | epatch_user |
365 | epatch_user |
|
|
366 | if [[ ! ${want_autoreconf} ]]; then |
|
|
367 | if [[ $(find . -newer "${T}"/.autotools-utils.timestamp \ |
|
|
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.' |
|
|
373 | want_autoreconf=yep |
|
|
374 | fi |
|
|
375 | fi |
| 359 | |
376 | |
| 360 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
377 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
| 361 | elibtoolize --patch-only |
378 | elibtoolize --patch-only |
| 362 | } |
379 | } |
| 363 | |
380 | |
| … | |
… | |
| 374 | debug-print-function ${FUNCNAME} "$@" |
391 | debug-print-function ${FUNCNAME} "$@" |
| 375 | |
392 | |
| 376 | [[ -z ${myeconfargs+1} || $(declare -p myeconfargs) == 'declare -a'* ]] \ |
393 | [[ -z ${myeconfargs+1} || $(declare -p myeconfargs) == 'declare -a'* ]] \ |
| 377 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
394 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
| 378 | |
395 | |
|
|
396 | [[ ${EAPI} == 2 ]] && ! use prefix && EPREFIX= |
|
|
397 | |
| 379 | # Common args |
398 | # Common args |
| 380 | local econfargs=() |
399 | local econfargs=() |
|
|
400 | |
|
|
401 | _check_build_dir |
|
|
402 | if "${ECONF_SOURCE}"/configure --help 2>&1 | grep -q '^ *--docdir='; then |
|
|
403 | econfargs+=( |
|
|
404 | --docdir="${EPREFIX}"/usr/share/doc/${PF} |
|
|
405 | ) |
|
|
406 | fi |
| 381 | |
407 | |
| 382 | # Handle static-libs found in IUSE, disable them by default |
408 | # Handle static-libs found in IUSE, disable them by default |
| 383 | if in_iuse static-libs; then |
409 | if in_iuse static-libs; then |
| 384 | econfargs+=( |
410 | econfargs+=( |
| 385 | --enable-shared |
411 | --enable-shared |
| … | |
… | |
| 388 | fi |
414 | fi |
| 389 | |
415 | |
| 390 | # Append user args |
416 | # Append user args |
| 391 | econfargs+=("${myeconfargs[@]}") |
417 | econfargs+=("${myeconfargs[@]}") |
| 392 | |
418 | |
| 393 | _check_build_dir |
|
|
| 394 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
419 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
| 395 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
420 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 396 | econf "${econfargs[@]}" "$@" |
421 | econf "${econfargs[@]}" "$@" |
| 397 | popd > /dev/null |
422 | popd > /dev/null |
| 398 | } |
423 | } |
| … | |
… | |
| 422 | |
447 | |
| 423 | _check_build_dir |
448 | _check_build_dir |
| 424 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
449 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 425 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
450 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 426 | popd > /dev/null |
451 | popd > /dev/null |
|
|
452 | |
|
|
453 | # Move docs installed by autotools (in EAPI < 4). |
|
|
454 | if [[ ${EAPI} == [23] ]] \ |
|
|
455 | && path_exists "${D}${EPREFIX}"/usr/share/doc/${PF}/*; then |
|
|
456 | if [[ $(find "${D}${EPREFIX}"/usr/share/doc/${PF}/* -type d) ]]; then |
|
|
457 | eqawarn "autotools-utils: directories in docdir require at least EAPI 4" |
|
|
458 | else |
|
|
459 | mkdir "${T}"/temp-docdir |
|
|
460 | mv "${D}${EPREFIX}"/usr/share/doc/${PF}/* "${T}"/temp-docdir/ \ |
|
|
461 | || die "moving docs to tempdir failed" |
|
|
462 | |
|
|
463 | dodoc "${T}"/temp-docdir/* || die "docdir dodoc failed" |
|
|
464 | rm -r "${T}"/temp-docdir || die |
|
|
465 | fi |
|
|
466 | fi |
| 427 | |
467 | |
| 428 | # XXX: support installing them from builddir as well? |
468 | # XXX: support installing them from builddir as well? |
| 429 | if [[ ${DOCS} ]]; then |
469 | if [[ ${DOCS} ]]; then |
| 430 | dodoc "${DOCS[@]}" || die "dodoc failed" |
470 | dodoc "${DOCS[@]}" || die "dodoc failed" |
| 431 | else |
471 | else |