| 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.36 2012/01/14 14:58:29 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.40 2012/01/14 18:53:56 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. |
| … | |
… | |
| 300 | |
305 | |
| 301 | # gettext |
306 | # gettext |
| 302 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
307 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
| 303 | echo 'no' | autotools_run_tool glib-gettextize --copy |
308 | echo 'no' | autotools_run_tool glib-gettextize --copy |
| 304 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
309 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
| 305 | eautopoint |
310 | eautopoint --force |
| 306 | fi |
311 | fi |
| 307 | |
312 | |
| 308 | # intltool |
313 | # intltool |
| 309 | if [[ $(autotools_check_macro AC_PROG_INTLTOOL IT_PROG_INTLTOOL) ]] |
314 | if [[ $(autotools_check_macro AC_PROG_INTLTOOL IT_PROG_INTLTOOL) ]] |
| 310 | then |
315 | then |
| 311 | autotools_run_tool intltoolize --copy --automake |
316 | autotools_run_tool intltoolize --copy --automake --force |
| 312 | fi |
317 | fi |
| 313 | |
318 | |
| 314 | # gtk-doc |
319 | # gtk-doc |
| 315 | if [[ $(autotools_check_macro GTK_DOC_CHECK) ]]; then |
320 | if [[ $(autotools_check_macro GTK_DOC_CHECK) ]]; then |
| 316 | autotools_run_tool gtkdocize --copy |
321 | autotools_run_tool gtkdocize --copy |
| 317 | fi |
322 | fi |
| 318 | |
323 | |
| 319 | # gnome-doc |
324 | # gnome-doc |
| 320 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
325 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
| 321 | autotools_run_tool gnome-doc-prepare --copy |
326 | autotools_run_tool gnome-doc-prepare --copy --force |
| 322 | fi |
327 | fi |
| 323 | |
328 | |
| 324 | # We need to perform the check twice to know whether to run eaclocal. |
329 | # We need to perform the check twice to know whether to run eaclocal. |
| 325 | # (_elibtoolize does that itself) |
330 | # (_elibtoolize does that itself) |
| 326 | if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] |
331 | if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] |
| … | |
… | |
| 352 | autotools-utils_src_prepare() { |
357 | autotools-utils_src_prepare() { |
| 353 | debug-print-function ${FUNCNAME} "$@" |
358 | debug-print-function ${FUNCNAME} "$@" |
| 354 | |
359 | |
| 355 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
360 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
| 356 | |
361 | |
|
|
362 | touch "${T}"/.autotools-utils.timestamp || die |
| 357 | [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" |
363 | [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" |
| 358 | epatch_user |
364 | epatch_user |
|
|
365 | if [[ ! ${want_autoreconf} ]]; then |
|
|
366 | if [[ $(find . -newer "${T}"/.autotools-utils.timestamp \ |
|
|
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.' |
|
|
372 | want_autoreconf=yep |
|
|
373 | fi |
|
|
374 | fi |
| 359 | |
375 | |
| 360 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
376 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
| 361 | elibtoolize --patch-only |
377 | elibtoolize --patch-only |
| 362 | } |
378 | } |
| 363 | |
379 | |
| … | |
… | |
| 428 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
444 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 429 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
445 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 430 | popd > /dev/null |
446 | popd > /dev/null |
| 431 | |
447 | |
| 432 | # Move docs installed by autotools (in EAPI < 4). |
448 | # Move docs installed by autotools (in EAPI < 4). |
| 433 | if [[ ${EAPI} == [23] && -d ${D}${EPREFIX}/usr/share/doc/${PF} ]]; then |
449 | if [[ ${EAPI} == [23] ]] \ |
|
|
450 | && path_exists "${D}${EPREFIX}"/usr/share/doc/${PF}/*; then |
|
|
451 | if [[ $(find "${D}${EPREFIX}"/usr/share/doc/${PF}/* -type d) ]]; then |
|
|
452 | eqawarn "autotools-utils: directories in docdir require at least EAPI 4" |
|
|
453 | else |
| 434 | mkdir "${T}"/temp-docdir |
454 | mkdir "${T}"/temp-docdir |
| 435 | mv "${D}${EPREFIX}"/usr/share/doc/${PF}/* "${T}"/temp-docdir/ \ |
455 | mv "${D}${EPREFIX}"/usr/share/doc/${PF}/* "${T}"/temp-docdir/ \ |
| 436 | || die "moving docs to tempdir failed" |
456 | || die "moving docs to tempdir failed" |
| 437 | |
457 | |
| 438 | local f |
|
|
| 439 | for f in "${T}"/temp-docdir/*; do |
|
|
| 440 | [[ -d ${f} ]] \ |
|
|
| 441 | && die "directories in docdir require at least EAPI 4" |
|
|
| 442 | done |
|
|
| 443 | |
|
|
| 444 | dodoc "${T}"/temp-docdir/* || die "docdir dodoc failed" |
458 | dodoc "${T}"/temp-docdir/* || die "docdir dodoc failed" |
| 445 | rm -r "${T}"/temp-docdir || die |
459 | rm -r "${T}"/temp-docdir || die |
|
|
460 | fi |
| 446 | fi |
461 | fi |
| 447 | |
462 | |
| 448 | # XXX: support installing them from builddir as well? |
463 | # XXX: support installing them from builddir as well? |
| 449 | if [[ ${DOCS} ]]; then |
464 | if [[ ${DOCS} ]]; then |
| 450 | dodoc "${DOCS[@]}" || die "dodoc failed" |
465 | dodoc "${DOCS[@]}" || die "dodoc failed" |