| 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.52 2012/05/28 07:45:19 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_DEPEND:=no} |
|
|
115 | |
| 96 | inherit autotools eutils libtool |
116 | inherit autotools eutils libtool |
| 97 | |
117 | |
| 98 | 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 |
| 99 | |
119 | |
| 100 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
120 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
| … | |
… | |
| 248 | eqawarn "This is not supported and never was. Please report a bug against" |
268 | 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." |
269 | eqawarn "the offending ebuild. This will become a fatal error in a near future." |
| 250 | fi |
270 | fi |
| 251 | } |
271 | } |
| 252 | |
272 | |
|
|
273 | # @FUNCTION: autotools-utils_autoreconf |
|
|
274 | # @DESCRIPTION: |
|
|
275 | # Reconfigure the sources (like gnome-autogen.sh or eautoreconf). |
|
|
276 | autotools-utils_autoreconf() { |
|
|
277 | debug-print-function ${FUNCNAME} "$@" |
|
|
278 | |
|
|
279 | # Override this func to not require unnecessary eaclocal calls. |
|
|
280 | autotools_check_macro() { |
|
|
281 | local x |
|
|
282 | |
|
|
283 | # Add a few additional variants as we don't get expansions. |
|
|
284 | [[ ${1} = AC_CONFIG_HEADERS ]] && set -- "${@}" \ |
|
|
285 | AC_CONFIG_HEADER AM_CONFIG_HEADER |
|
|
286 | |
|
|
287 | for x; do |
|
|
288 | grep -h "^${x}" configure.{ac,in} 2>/dev/null |
|
|
289 | done |
|
|
290 | } |
|
|
291 | |
|
|
292 | einfo "Autoreconfiguring '${PWD}' ..." |
|
|
293 | |
|
|
294 | local auxdir=$(sed -n -e 's/^AC_CONFIG_AUX_DIR(\(.*\))$/\1/p' \ |
|
|
295 | configure.{ac,in} 2>/dev/null) |
|
|
296 | if [[ ${auxdir} ]]; then |
|
|
297 | auxdir=${auxdir%%]} |
|
|
298 | mkdir -p ${auxdir##[} |
|
|
299 | fi |
|
|
300 | |
|
|
301 | # Support running additional tools like gnome-autogen.sh. |
|
|
302 | # Note: you need to add additional depends to the ebuild. |
|
|
303 | |
|
|
304 | # gettext |
|
|
305 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
|
|
306 | echo 'no' | autotools_run_tool glib-gettextize --copy --force |
|
|
307 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
|
|
308 | eautopoint --force |
|
|
309 | fi |
|
|
310 | |
|
|
311 | # intltool |
|
|
312 | if [[ $(autotools_check_macro AC_PROG_INTLTOOL IT_PROG_INTLTOOL) ]] |
|
|
313 | then |
|
|
314 | autotools_run_tool intltoolize --copy --automake --force |
|
|
315 | fi |
|
|
316 | |
|
|
317 | # gtk-doc |
|
|
318 | if [[ $(autotools_check_macro GTK_DOC_CHECK) ]]; then |
|
|
319 | autotools_run_tool gtkdocize --copy |
|
|
320 | fi |
|
|
321 | |
|
|
322 | # gnome-doc |
|
|
323 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
|
|
324 | autotools_run_tool gnome-doc-prepare --copy --force |
|
|
325 | fi |
|
|
326 | |
|
|
327 | if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] |
|
|
328 | then |
|
|
329 | _elibtoolize --copy --force --install |
|
|
330 | fi |
|
|
331 | |
|
|
332 | eaclocal |
|
|
333 | eautoconf |
|
|
334 | eautoheader |
|
|
335 | FROM_EAUTORECONF=sure eautomake |
|
|
336 | |
|
|
337 | local x |
|
|
338 | for x in $(autotools_check_macro_val AC_CONFIG_SUBDIRS); do |
|
|
339 | if [[ -d ${x} ]] ; then |
|
|
340 | pushd "${x}" >/dev/null || die |
|
|
341 | autotools-utils_autoreconf |
|
|
342 | popd >/dev/null || die |
|
|
343 | fi |
|
|
344 | done |
|
|
345 | } |
|
|
346 | |
| 253 | # @FUNCTION: autotools-utils_src_prepare |
347 | # @FUNCTION: autotools-utils_src_prepare |
| 254 | # @DESCRIPTION: |
348 | # @DESCRIPTION: |
| 255 | # The src_prepare function. |
349 | # The src_prepare function. |
| 256 | # |
350 | # |
| 257 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
351 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
| 258 | autotools-utils_src_prepare() { |
352 | autotools-utils_src_prepare() { |
| 259 | debug-print-function ${FUNCNAME} "$@" |
353 | debug-print-function ${FUNCNAME} "$@" |
| 260 | |
354 | |
|
|
355 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
|
|
356 | |
| 261 | [[ ${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) |
| 262 | epatch_user |
367 | epatch_user |
|
|
368 | if [[ ! ${want_autoreconf} ]]; then |
|
|
369 | if [[ ${checksum} != $(at_checksum) ]]; then |
|
|
370 | einfo 'Will autoreconfigure due to user patches applied.' |
|
|
371 | want_autoreconf=yep |
|
|
372 | fi |
|
|
373 | fi |
| 263 | |
374 | |
|
|
375 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
| 264 | elibtoolize --patch-only |
376 | elibtoolize --patch-only |
| 265 | } |
377 | } |
| 266 | |
378 | |
| 267 | # @FUNCTION: autotools-utils_src_configure |
379 | # @FUNCTION: autotools-utils_src_configure |
| 268 | # @DESCRIPTION: |
380 | # @DESCRIPTION: |
| … | |
… | |
| 277 | debug-print-function ${FUNCNAME} "$@" |
389 | debug-print-function ${FUNCNAME} "$@" |
| 278 | |
390 | |
| 279 | [[ -z ${myeconfargs+1} || $(declare -p myeconfargs) == 'declare -a'* ]] \ |
391 | [[ -z ${myeconfargs+1} || $(declare -p myeconfargs) == 'declare -a'* ]] \ |
| 280 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
392 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
| 281 | |
393 | |
|
|
394 | [[ ${EAPI} == 2 ]] && ! use prefix && EPREFIX= |
|
|
395 | |
| 282 | # Common args |
396 | # Common args |
| 283 | local econfargs=() |
397 | local econfargs=() |
|
|
398 | |
|
|
399 | _check_build_dir |
|
|
400 | if "${ECONF_SOURCE}"/configure --help 2>&1 | grep -q '^ *--docdir='; then |
|
|
401 | econfargs+=( |
|
|
402 | --docdir="${EPREFIX}"/usr/share/doc/${PF} |
|
|
403 | ) |
|
|
404 | fi |
| 284 | |
405 | |
| 285 | # Handle static-libs found in IUSE, disable them by default |
406 | # Handle static-libs found in IUSE, disable them by default |
| 286 | if in_iuse static-libs; then |
407 | if in_iuse static-libs; then |
| 287 | econfargs+=( |
408 | econfargs+=( |
| 288 | --enable-shared |
409 | --enable-shared |
| … | |
… | |
| 291 | fi |
412 | fi |
| 292 | |
413 | |
| 293 | # Append user args |
414 | # Append user args |
| 294 | econfargs+=("${myeconfargs[@]}") |
415 | econfargs+=("${myeconfargs[@]}") |
| 295 | |
416 | |
| 296 | _check_build_dir |
|
|
| 297 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
417 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
| 298 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
418 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 299 | econf "${econfargs[@]}" "$@" |
419 | econf "${econfargs[@]}" "$@" |
| 300 | popd > /dev/null |
420 | popd > /dev/null || die |
| 301 | } |
421 | } |
| 302 | |
422 | |
| 303 | # @FUNCTION: autotools-utils_src_compile |
423 | # @FUNCTION: autotools-utils_src_compile |
| 304 | # @DESCRIPTION: |
424 | # @DESCRIPTION: |
| 305 | # The autotools src_compile function, invokes emake in specified AUTOTOOLS_BUILD_DIR. |
425 | # The autotools src_compile function, invokes emake in specified AUTOTOOLS_BUILD_DIR. |
| 306 | autotools-utils_src_compile() { |
426 | autotools-utils_src_compile() { |
| 307 | debug-print-function ${FUNCNAME} "$@" |
427 | debug-print-function ${FUNCNAME} "$@" |
| 308 | |
428 | |
| 309 | _check_build_dir |
429 | _check_build_dir |
| 310 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
430 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 311 | emake "$@" || die 'emake failed' |
431 | emake "$@" || die 'emake failed' |
| 312 | popd > /dev/null |
432 | popd > /dev/null || die |
| 313 | } |
433 | } |
| 314 | |
434 | |
| 315 | # @FUNCTION: autotools-utils_src_install |
435 | # @FUNCTION: autotools-utils_src_install |
| 316 | # @DESCRIPTION: |
436 | # @DESCRIPTION: |
| 317 | # The autotools src_install function. Runs emake install, unconditionally |
437 | # The autotools src_install function. Runs emake install, unconditionally |
| … | |
… | |
| 322 | # DOCS and HTML_DOCS arrays are supported. See base.eclass(5) for reference. |
442 | # DOCS and HTML_DOCS arrays are supported. See base.eclass(5) for reference. |
| 323 | autotools-utils_src_install() { |
443 | autotools-utils_src_install() { |
| 324 | debug-print-function ${FUNCNAME} "$@" |
444 | debug-print-function ${FUNCNAME} "$@" |
| 325 | |
445 | |
| 326 | _check_build_dir |
446 | _check_build_dir |
| 327 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
447 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 328 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
448 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 329 | popd > /dev/null |
449 | popd > /dev/null || die |
|
|
450 | |
|
|
451 | # Move docs installed by autotools (in EAPI < 4). |
|
|
452 | if [[ ${EAPI} == [23] ]] \ |
|
|
453 | && path_exists "${D}${EPREFIX}"/usr/share/doc/${PF}/*; then |
|
|
454 | if [[ $(find "${D}${EPREFIX}"/usr/share/doc/${PF}/* -type d) ]]; then |
|
|
455 | eqawarn "autotools-utils: directories in docdir require at least EAPI 4" |
|
|
456 | else |
|
|
457 | mkdir "${T}"/temp-docdir |
|
|
458 | mv "${D}${EPREFIX}"/usr/share/doc/${PF}/* "${T}"/temp-docdir/ \ |
|
|
459 | || die "moving docs to tempdir failed" |
|
|
460 | |
|
|
461 | dodoc "${T}"/temp-docdir/* || die "docdir dodoc failed" |
|
|
462 | rm -r "${T}"/temp-docdir || die |
|
|
463 | fi |
|
|
464 | fi |
| 330 | |
465 | |
| 331 | # XXX: support installing them from builddir as well? |
466 | # XXX: support installing them from builddir as well? |
| 332 | if [[ ${DOCS} ]]; then |
467 | if [[ ${DOCS} ]]; then |
| 333 | dodoc "${DOCS[@]}" || die "dodoc failed" |
468 | dodoc "${DOCS[@]}" || die "dodoc failed" |
|
|
469 | else |
|
|
470 | local f |
|
|
471 | # same list as in PMS |
|
|
472 | for f in README* ChangeLog AUTHORS NEWS TODO CHANGES \ |
|
|
473 | THANKS BUGS FAQ CREDITS CHANGELOG; do |
|
|
474 | if [[ -s ${f} ]]; then |
|
|
475 | dodoc "${f}" || die "(default) dodoc ${f} failed" |
|
|
476 | fi |
|
|
477 | done |
| 334 | fi |
478 | fi |
| 335 | if [[ ${HTML_DOCS} ]]; then |
479 | if [[ ${HTML_DOCS} ]]; then |
| 336 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
480 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
| 337 | fi |
481 | fi |
| 338 | |
482 | |
| … | |
… | |
| 345 | # The autotools src_test function. Runs emake check in build directory. |
489 | # The autotools src_test function. Runs emake check in build directory. |
| 346 | autotools-utils_src_test() { |
490 | autotools-utils_src_test() { |
| 347 | debug-print-function ${FUNCNAME} "$@" |
491 | debug-print-function ${FUNCNAME} "$@" |
| 348 | |
492 | |
| 349 | _check_build_dir |
493 | _check_build_dir |
| 350 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
494 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 351 | # Run default src_test as defined in ebuild.sh |
495 | # Run default src_test as defined in ebuild.sh |
| 352 | default_src_test |
496 | default_src_test |
| 353 | popd > /dev/null |
497 | popd > /dev/null || die |
| 354 | } |
498 | } |