| 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.51 2012/05/28 07:34:43 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 |
| … | |
… | |
| 304 | # Support running additional tools like gnome-autogen.sh. |
301 | # Support running additional tools like gnome-autogen.sh. |
| 305 | # Note: you need to add additional depends to the ebuild. |
302 | # Note: you need to add additional depends to the ebuild. |
| 306 | |
303 | |
| 307 | # gettext |
304 | # gettext |
| 308 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
305 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
| 309 | echo 'no' | autotools_run_tool glib-gettextize --copy |
306 | echo 'no' | autotools_run_tool glib-gettextize --copy --force |
| 310 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
307 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
| 311 | eautopoint --force |
308 | eautopoint --force |
| 312 | fi |
309 | fi |
| 313 | |
310 | |
| 314 | # intltool |
311 | # intltool |
| … | |
… | |
| 325 | # gnome-doc |
322 | # gnome-doc |
| 326 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
323 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
| 327 | autotools_run_tool gnome-doc-prepare --copy --force |
324 | autotools_run_tool gnome-doc-prepare --copy --force |
| 328 | fi |
325 | fi |
| 329 | |
326 | |
| 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) ]] |
327 | if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] |
| 333 | then |
328 | then |
| 334 | _elibtoolize --copy --force --install |
329 | _elibtoolize --copy --force --install |
| 335 | else |
330 | fi |
|
|
331 | |
| 336 | eaclocal |
332 | eaclocal |
| 337 | fi |
|
|
| 338 | |
|
|
| 339 | eautoconf |
333 | eautoconf |
| 340 | eautoheader |
334 | eautoheader |
| 341 | FROM_EAUTORECONF=sure eautomake |
335 | FROM_EAUTORECONF=sure eautomake |
| 342 | |
336 | |
| 343 | local x |
337 | local x |
| 344 | for x in $(autotools_get_subdirs); do |
338 | for x in $(autotools_check_macro_val AC_CONFIG_SUBDIRS); do |
| 345 | if [[ -d ${x} ]] ; then |
339 | if [[ -d ${x} ]] ; then |
| 346 | pushd "${x}" >/dev/null |
340 | pushd "${x}" >/dev/null |
| 347 | autotools-utils_eautoreconf |
341 | autotools-utils_autoreconf |
| 348 | popd >/dev/null |
342 | popd >/dev/null |
| 349 | fi |
343 | fi |
| 350 | done |
344 | done |
| 351 | } |
345 | } |
| 352 | |
346 | |
| … | |
… | |
| 358 | autotools-utils_src_prepare() { |
352 | autotools-utils_src_prepare() { |
| 359 | debug-print-function ${FUNCNAME} "$@" |
353 | debug-print-function ${FUNCNAME} "$@" |
| 360 | |
354 | |
| 361 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
355 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
| 362 | |
356 | |
| 363 | touch "${T}"/.autotools-utils.timestamp || die |
|
|
| 364 | [[ ${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) |
| 365 | epatch_user |
367 | epatch_user |
| 366 | if [[ ! ${want_autoreconf} ]]; then |
368 | if [[ ! ${want_autoreconf} ]]; then |
| 367 | if [[ $(find . -newer "${T}"/.autotools-utils.timestamp \ |
369 | 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.' |
370 | einfo 'Will autoreconfigure due to user patches applied.' |
| 373 | want_autoreconf=yep |
371 | want_autoreconf=yep |
| 374 | fi |
372 | fi |
| 375 | fi |
373 | fi |
| 376 | |
374 | |
| 377 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
375 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |