| 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.34 2012/01/14 14:41:10 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 | # 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. |
|
|
104 | # If your tool is not supported, please open a bug and we'll add support for it. |
|
|
105 | # |
|
|
106 | # Note that dependencies are added for autoconf, automake and libtool only. |
|
|
107 | # If your package needs one of the external tools listed above, you need to add |
|
|
108 | # appropriate packages to DEPEND yourself. |
|
|
109 | [[ ${AUTOTOOLS_AUTORECONF} ]] || _autotools_auto_dep=no |
|
|
110 | |
|
|
111 | AUTOTOOLS_AUTO_DEPEND=${_autotools_auto_dep} \ |
| 96 | inherit autotools eutils libtool |
112 | inherit autotools eutils libtool |
| 97 | |
113 | |
| 98 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
114 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
|
|
115 | |
|
|
116 | unset _autotools_auto_dep |
| 99 | |
117 | |
| 100 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
118 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
| 101 | # @DEFAULT_UNSET |
119 | # @DEFAULT_UNSET |
| 102 | # @DESCRIPTION: |
120 | # @DESCRIPTION: |
| 103 | # Build directory, location where all autotools generated files should be |
121 | # Build directory, location where all autotools generated files should be |
| … | |
… | |
| 248 | eqawarn "This is not supported and never was. Please report a bug against" |
266 | 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." |
267 | eqawarn "the offending ebuild. This will become a fatal error in a near future." |
| 250 | fi |
268 | fi |
| 251 | } |
269 | } |
| 252 | |
270 | |
|
|
271 | # @FUNCTION: autotools-utils_autoreconf |
|
|
272 | # @DESCRIPTION: |
|
|
273 | # Reconfigure the sources (like gnome-autogen.sh or eautoreconf). |
|
|
274 | autotools-utils_autoreconf() { |
|
|
275 | debug-print-function ${FUNCNAME} "$@" |
|
|
276 | |
|
|
277 | # Override this func to not require unnecessary eaclocal calls. |
|
|
278 | autotools_check_macro() { |
|
|
279 | local x |
|
|
280 | |
|
|
281 | # Add a few additional variants as we don't get expansions. |
|
|
282 | [[ ${1} = AC_CONFIG_HEADERS ]] && set -- "${@}" AC_CONFIG_HEADER |
|
|
283 | |
|
|
284 | for x; do |
|
|
285 | grep -h "^${x}" configure.{ac,in} 2>/dev/null |
|
|
286 | done |
|
|
287 | } |
|
|
288 | |
|
|
289 | einfo "Autoreconfiguring '${PWD}' ..." |
|
|
290 | |
|
|
291 | local auxdir=$(sed -n -e 's/^AC_CONFIG_AUX_DIR(\(.*\))$/\1/p' \ |
|
|
292 | configure.{ac,in} 2>/dev/null) |
|
|
293 | if [[ ${auxdir} ]]; then |
|
|
294 | auxdir=${auxdir%%]} |
|
|
295 | mkdir -p ${auxdir##[} |
|
|
296 | fi |
|
|
297 | |
|
|
298 | # Support running additional tools like gnome-autogen.sh. |
|
|
299 | # Note: you need to add additional depends to the ebuild. |
|
|
300 | |
|
|
301 | # gettext |
|
|
302 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
|
|
303 | echo 'no' | autotools_run_tool glib-gettextize --copy |
|
|
304 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
|
|
305 | eautopoint |
|
|
306 | fi |
|
|
307 | |
|
|
308 | # intltool |
|
|
309 | if [[ $(autotools_check_macro AC_PROG_INTLTOOL IT_PROG_INTLTOOL) ]] |
|
|
310 | then |
|
|
311 | autotools_run_tool intltoolize --copy --automake |
|
|
312 | fi |
|
|
313 | |
|
|
314 | # gtk-doc |
|
|
315 | if [[ $(autotools_check_macro GTK_DOC_CHECK) ]]; then |
|
|
316 | autotools_run_tool gtkdocize --copy |
|
|
317 | fi |
|
|
318 | |
|
|
319 | # gnome-doc |
|
|
320 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
|
|
321 | autotools_run_tool gnome-doc-prepare --copy |
|
|
322 | fi |
|
|
323 | |
|
|
324 | # We need to perform the check twice to know whether to run eaclocal. |
|
|
325 | # (_elibtoolize does that itself) |
|
|
326 | if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] |
|
|
327 | then |
|
|
328 | _elibtoolize --copy --force --install |
|
|
329 | else |
|
|
330 | eaclocal |
|
|
331 | fi |
|
|
332 | |
|
|
333 | eautoconf |
|
|
334 | eautoheader |
|
|
335 | eautomake |
|
|
336 | |
|
|
337 | local x |
|
|
338 | for x in $(autotools_get_subdirs); do |
|
|
339 | if [[ -d ${x} ]] ; then |
|
|
340 | pushd "${x}" >/dev/null |
|
|
341 | autotools-utils_eautoreconf |
|
|
342 | popd >/dev/null |
|
|
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[@]}" |
| 262 | epatch_user |
358 | epatch_user |
| 263 | |
359 | |
|
|
360 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
| 264 | elibtoolize --patch-only |
361 | elibtoolize --patch-only |
| 265 | } |
362 | } |
| 266 | |
363 | |
| 267 | # @FUNCTION: autotools-utils_src_configure |
364 | # @FUNCTION: autotools-utils_src_configure |
| 268 | # @DESCRIPTION: |
365 | # @DESCRIPTION: |
| … | |
… | |
| 329 | popd > /dev/null |
426 | popd > /dev/null |
| 330 | |
427 | |
| 331 | # XXX: support installing them from builddir as well? |
428 | # XXX: support installing them from builddir as well? |
| 332 | if [[ ${DOCS} ]]; then |
429 | if [[ ${DOCS} ]]; then |
| 333 | dodoc "${DOCS[@]}" || die "dodoc failed" |
430 | dodoc "${DOCS[@]}" || die "dodoc failed" |
|
|
431 | else |
|
|
432 | local f |
|
|
433 | # same list as in PMS |
|
|
434 | for f in README* ChangeLog AUTHORS NEWS TODO CHANGES \ |
|
|
435 | THANKS BUGS FAQ CREDITS CHANGELOG; do |
|
|
436 | if [[ -s ${f} ]]; then |
|
|
437 | dodoc "${f}" || die "(default) dodoc ${f} failed" |
|
|
438 | fi |
|
|
439 | done |
| 334 | fi |
440 | fi |
| 335 | if [[ ${HTML_DOCS} ]]; then |
441 | if [[ ${HTML_DOCS} ]]; then |
| 336 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
442 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
| 337 | fi |
443 | fi |
| 338 | |
444 | |