| 1 | # Copyright 1999-2011 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.30 2011/12/14 14:55:03 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.50 2012/05/22 14:29:06 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> |
| … | |
… | |
| 91 | case ${EAPI:-0} in |
91 | case ${EAPI:-0} in |
| 92 | 2|3|4) ;; |
92 | 2|3|4) ;; |
| 93 | *) die "EAPI=${EAPI} is not supported" ;; |
93 | *) die "EAPI=${EAPI} is not supported" ;; |
| 94 | esac |
94 | esac |
| 95 | |
95 | |
|
|
96 | # @ECLASS-VARIABLE: AUTOTOOLS_AUTORECONF |
|
|
97 | # @DEFAULT_UNSET |
|
|
98 | # @DESCRIPTION: |
|
|
99 | # Set to a non-empty value in order to enable running autoreconf |
|
|
100 | # in src_prepare() and adding autotools dependencies. |
|
|
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 | # |
|
|
107 | # The eclass will try to determine the correct autotools to run including a few |
|
|
108 | # external tools: gettext, glib-gettext, intltool, gtk-doc, gnome-doc-prepare. |
|
|
109 | # If your tool is not supported, please open a bug and we'll add support for it. |
|
|
110 | # |
|
|
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 |
|
|
113 | # appropriate packages to DEPEND yourself. |
|
|
114 | [[ ${AUTOTOOLS_AUTORECONF} ]] || _autotools_auto_dep=no |
|
|
115 | |
|
|
116 | AUTOTOOLS_AUTO_DEPEND=${_autotools_auto_dep} \ |
| 96 | inherit autotools eutils libtool |
117 | inherit autotools eutils libtool |
| 97 | |
118 | |
| 98 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
119 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
|
|
120 | |
|
|
121 | unset _autotools_auto_dep |
| 99 | |
122 | |
| 100 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
123 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
| 101 | # @DEFAULT_UNSET |
124 | # @DEFAULT_UNSET |
| 102 | # @DESCRIPTION: |
125 | # @DESCRIPTION: |
| 103 | # Build directory, location where all autotools generated files should be |
126 | # Build directory, location where all autotools generated files should be |
| … | |
… | |
| 248 | eqawarn "This is not supported and never was. Please report a bug against" |
271 | eqawarn "This is not supported and never was. Please report a bug against" |
| 249 | eqawarn "the offending ebuild. This will become a fatal error in a near future." |
272 | eqawarn "the offending ebuild. This will become a fatal error in a near future." |
| 250 | fi |
273 | fi |
| 251 | } |
274 | } |
| 252 | |
275 | |
|
|
276 | # @FUNCTION: autotools-utils_autoreconf |
|
|
277 | # @DESCRIPTION: |
|
|
278 | # Reconfigure the sources (like gnome-autogen.sh or eautoreconf). |
|
|
279 | autotools-utils_autoreconf() { |
|
|
280 | debug-print-function ${FUNCNAME} "$@" |
|
|
281 | |
|
|
282 | # Override this func to not require unnecessary eaclocal calls. |
|
|
283 | autotools_check_macro() { |
|
|
284 | local x |
|
|
285 | |
|
|
286 | # Add a few additional variants as we don't get expansions. |
|
|
287 | [[ ${1} = AC_CONFIG_HEADERS ]] && set -- "${@}" \ |
|
|
288 | AC_CONFIG_HEADER AM_CONFIG_HEADER |
|
|
289 | |
|
|
290 | for x; do |
|
|
291 | grep -h "^${x}" configure.{ac,in} 2>/dev/null |
|
|
292 | done |
|
|
293 | } |
|
|
294 | |
|
|
295 | einfo "Autoreconfiguring '${PWD}' ..." |
|
|
296 | |
|
|
297 | local auxdir=$(sed -n -e 's/^AC_CONFIG_AUX_DIR(\(.*\))$/\1/p' \ |
|
|
298 | configure.{ac,in} 2>/dev/null) |
|
|
299 | if [[ ${auxdir} ]]; then |
|
|
300 | auxdir=${auxdir%%]} |
|
|
301 | mkdir -p ${auxdir##[} |
|
|
302 | fi |
|
|
303 | |
|
|
304 | # Support running additional tools like gnome-autogen.sh. |
|
|
305 | # Note: you need to add additional depends to the ebuild. |
|
|
306 | |
|
|
307 | # gettext |
|
|
308 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
|
|
309 | echo 'no' | autotools_run_tool glib-gettextize --copy --force |
|
|
310 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
|
|
311 | eautopoint --force |
|
|
312 | fi |
|
|
313 | |
|
|
314 | # intltool |
|
|
315 | if [[ $(autotools_check_macro AC_PROG_INTLTOOL IT_PROG_INTLTOOL) ]] |
|
|
316 | then |
|
|
317 | autotools_run_tool intltoolize --copy --automake --force |
|
|
318 | fi |
|
|
319 | |
|
|
320 | # gtk-doc |
|
|
321 | if [[ $(autotools_check_macro GTK_DOC_CHECK) ]]; then |
|
|
322 | autotools_run_tool gtkdocize --copy |
|
|
323 | fi |
|
|
324 | |
|
|
325 | # gnome-doc |
|
|
326 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
|
|
327 | autotools_run_tool gnome-doc-prepare --copy --force |
|
|
328 | fi |
|
|
329 | |
|
|
330 | if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] |
|
|
331 | then |
|
|
332 | _elibtoolize --copy --force --install |
|
|
333 | fi |
|
|
334 | |
|
|
335 | eaclocal |
|
|
336 | eautoconf |
|
|
337 | eautoheader |
|
|
338 | FROM_EAUTORECONF=sure eautomake |
|
|
339 | |
|
|
340 | local x |
|
|
341 | for x in $(autotools_check_macro_val AC_CONFIG_SUBDIRS); do |
|
|
342 | if [[ -d ${x} ]] ; then |
|
|
343 | pushd "${x}" >/dev/null |
|
|
344 | autotools-utils_autoreconf |
|
|
345 | popd >/dev/null |
|
|
346 | fi |
|
|
347 | done |
|
|
348 | } |
|
|
349 | |
| 253 | # @FUNCTION: autotools-utils_src_prepare |
350 | # @FUNCTION: autotools-utils_src_prepare |
| 254 | # @DESCRIPTION: |
351 | # @DESCRIPTION: |
| 255 | # The src_prepare function. |
352 | # The src_prepare function. |
| 256 | # |
353 | # |
| 257 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
354 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
| 258 | autotools-utils_src_prepare() { |
355 | autotools-utils_src_prepare() { |
| 259 | debug-print-function ${FUNCNAME} "$@" |
356 | debug-print-function ${FUNCNAME} "$@" |
| 260 | |
357 | |
|
|
358 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
|
|
359 | |
| 261 | [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" |
360 | [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" |
|
|
361 | |
|
|
362 | at_checksum() { |
|
|
363 | find '(' -name 'Makefile.am' \ |
|
|
364 | -o -name 'configure.ac' \ |
|
|
365 | -o -name 'configure.in' ')' \ |
|
|
366 | -exec cksum {} + | sort -k2 |
|
|
367 | } |
|
|
368 | |
|
|
369 | [[ ! ${want_autoreconf} ]] && local checksum=$(at_checksum) |
| 262 | epatch_user |
370 | epatch_user |
|
|
371 | if [[ ! ${want_autoreconf} ]]; then |
|
|
372 | if [[ ${checksum} != $(at_checksum) ]]; then |
|
|
373 | einfo 'Will autoreconfigure due to user patches applied.' |
|
|
374 | want_autoreconf=yep |
|
|
375 | fi |
|
|
376 | fi |
| 263 | |
377 | |
|
|
378 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
| 264 | elibtoolize --patch-only |
379 | elibtoolize --patch-only |
| 265 | } |
380 | } |
| 266 | |
381 | |
| 267 | # @FUNCTION: autotools-utils_src_configure |
382 | # @FUNCTION: autotools-utils_src_configure |
| 268 | # @DESCRIPTION: |
383 | # @DESCRIPTION: |
| … | |
… | |
| 277 | debug-print-function ${FUNCNAME} "$@" |
392 | debug-print-function ${FUNCNAME} "$@" |
| 278 | |
393 | |
| 279 | [[ -z ${myeconfargs+1} || $(declare -p myeconfargs) == 'declare -a'* ]] \ |
394 | [[ -z ${myeconfargs+1} || $(declare -p myeconfargs) == 'declare -a'* ]] \ |
| 280 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
395 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
| 281 | |
396 | |
|
|
397 | [[ ${EAPI} == 2 ]] && ! use prefix && EPREFIX= |
|
|
398 | |
| 282 | # Common args |
399 | # Common args |
| 283 | local econfargs=() |
400 | local econfargs=() |
|
|
401 | |
|
|
402 | _check_build_dir |
|
|
403 | if "${ECONF_SOURCE}"/configure --help 2>&1 | grep -q '^ *--docdir='; then |
|
|
404 | econfargs+=( |
|
|
405 | --docdir="${EPREFIX}"/usr/share/doc/${PF} |
|
|
406 | ) |
|
|
407 | fi |
| 284 | |
408 | |
| 285 | # Handle static-libs found in IUSE, disable them by default |
409 | # Handle static-libs found in IUSE, disable them by default |
| 286 | if in_iuse static-libs; then |
410 | if in_iuse static-libs; then |
| 287 | econfargs+=( |
411 | econfargs+=( |
| 288 | --enable-shared |
412 | --enable-shared |
| … | |
… | |
| 291 | fi |
415 | fi |
| 292 | |
416 | |
| 293 | # Append user args |
417 | # Append user args |
| 294 | econfargs+=("${myeconfargs[@]}") |
418 | econfargs+=("${myeconfargs[@]}") |
| 295 | |
419 | |
| 296 | _check_build_dir |
|
|
| 297 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
420 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
| 298 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
421 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 299 | econf "${econfargs[@]}" "$@" |
422 | econf "${econfargs[@]}" "$@" |
| 300 | popd > /dev/null |
423 | popd > /dev/null |
| 301 | } |
424 | } |
| … | |
… | |
| 326 | _check_build_dir |
449 | _check_build_dir |
| 327 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
450 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 328 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
451 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 329 | popd > /dev/null |
452 | popd > /dev/null |
| 330 | |
453 | |
|
|
454 | # Move docs installed by autotools (in EAPI < 4). |
|
|
455 | if [[ ${EAPI} == [23] ]] \ |
|
|
456 | && path_exists "${D}${EPREFIX}"/usr/share/doc/${PF}/*; then |
|
|
457 | if [[ $(find "${D}${EPREFIX}"/usr/share/doc/${PF}/* -type d) ]]; then |
|
|
458 | eqawarn "autotools-utils: directories in docdir require at least EAPI 4" |
|
|
459 | else |
|
|
460 | mkdir "${T}"/temp-docdir |
|
|
461 | mv "${D}${EPREFIX}"/usr/share/doc/${PF}/* "${T}"/temp-docdir/ \ |
|
|
462 | || die "moving docs to tempdir failed" |
|
|
463 | |
|
|
464 | dodoc "${T}"/temp-docdir/* || die "docdir dodoc failed" |
|
|
465 | rm -r "${T}"/temp-docdir || die |
|
|
466 | fi |
|
|
467 | fi |
|
|
468 | |
| 331 | # XXX: support installing them from builddir as well? |
469 | # XXX: support installing them from builddir as well? |
| 332 | if [[ ${DOCS} ]]; then |
470 | if [[ ${DOCS} ]]; then |
| 333 | dodoc "${DOCS[@]}" || die "dodoc failed" |
471 | dodoc "${DOCS[@]}" || die "dodoc failed" |
|
|
472 | else |
|
|
473 | local f |
|
|
474 | # same list as in PMS |
|
|
475 | for f in README* ChangeLog AUTHORS NEWS TODO CHANGES \ |
|
|
476 | THANKS BUGS FAQ CREDITS CHANGELOG; do |
|
|
477 | if [[ -s ${f} ]]; then |
|
|
478 | dodoc "${f}" || die "(default) dodoc ${f} failed" |
|
|
479 | fi |
|
|
480 | done |
| 334 | fi |
481 | fi |
| 335 | if [[ ${HTML_DOCS} ]]; then |
482 | if [[ ${HTML_DOCS} ]]; then |
| 336 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
483 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
| 337 | fi |
484 | fi |
| 338 | |
485 | |