| 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.eclass,v 1.118 2012/01/06 21:06:17 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.134 2012/05/20 12:31:32 vapier Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: autotools.eclass |
5 | # @ECLASS: autotools.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # base-system@gentoo.org |
7 | # base-system@gentoo.org |
| 8 | # @BLURB: Regenerates auto* build scripts |
8 | # @BLURB: Regenerates auto* build scripts |
| … | |
… | |
| 14 | # from the GNU version of m4 without worrying about other variants (i.e. BSD). |
14 | # from the GNU version of m4 without worrying about other variants (i.e. BSD). |
| 15 | |
15 | |
| 16 | if [[ ${___ECLASS_ONCE_AUTOTOOLS} != "recur -_+^+_- spank" ]] ; then |
16 | if [[ ${___ECLASS_ONCE_AUTOTOOLS} != "recur -_+^+_- spank" ]] ; then |
| 17 | ___ECLASS_ONCE_AUTOTOOLS="recur -_+^+_- spank" |
17 | ___ECLASS_ONCE_AUTOTOOLS="recur -_+^+_- spank" |
| 18 | |
18 | |
| 19 | inherit eutils libtool |
19 | inherit libtool |
| 20 | |
20 | |
| 21 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
21 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
| 22 | # @DESCRIPTION: |
22 | # @DESCRIPTION: |
| 23 | # The major version of autoconf your package needs |
23 | # The major version of autoconf your package needs |
| 24 | : ${WANT_AUTOCONF:=latest} |
24 | : ${WANT_AUTOCONF:=latest} |
| … | |
… | |
| 35 | |
35 | |
| 36 | # @ECLASS-VARIABLE: _LATEST_AUTOMAKE |
36 | # @ECLASS-VARIABLE: _LATEST_AUTOMAKE |
| 37 | # @INTERNAL |
37 | # @INTERNAL |
| 38 | # @DESCRIPTION: |
38 | # @DESCRIPTION: |
| 39 | # CONSTANT! |
39 | # CONSTANT! |
| 40 | # The latest major version/slot of automake available on each arch. |
40 | # The latest major version/slot of automake available on each arch. #312315 |
| 41 | # If a newer version is stable on any arch, and is NOT reflected in this list, |
41 | # If a newer slot is stable on any arch, and is NOT reflected in this list, |
| 42 | # then circular dependencies may arise during emerge @system bootstraps. |
42 | # then circular dependencies may arise during emerge @system bootstraps. |
| 43 | # Do NOT change this variable in your ebuilds! |
43 | # Do NOT change this variable in your ebuilds! |
|
|
44 | # If you want to force a newer minor version, you can specify the correct |
|
|
45 | # WANT value by using a colon: <PV>[:<WANT_AUTOMAKE>] |
| 44 | _LATEST_AUTOMAKE='1.11' |
46 | _LATEST_AUTOMAKE=( 1.11.1:1.11 ) |
| 45 | |
47 | |
| 46 | _automake_atom="sys-devel/automake" |
48 | _automake_atom="sys-devel/automake" |
| 47 | _autoconf_atom="sys-devel/autoconf" |
49 | _autoconf_atom="sys-devel/autoconf" |
| 48 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
50 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
| 49 | case ${WANT_AUTOMAKE} in |
51 | case ${WANT_AUTOMAKE} in |
| 50 | none) _automake_atom="" ;; # some packages don't require automake at all |
52 | # Even if the package doesn't use automake, we still need to depend |
| 51 | # if you change the "latest" version here, change also autotools_run_tool |
53 | # on it because we run aclocal to process m4 macros. This matches |
| 52 | # this MUST reflect the latest stable major version for each arch! |
54 | # the autoreconf tool, so this requirement is correct. #401605 |
|
|
55 | none) ;; |
|
|
56 | latest) |
|
|
57 | # Use SLOT deps if we can. For EAPI=0, we get pretty close. |
|
|
58 | if [[ ${EAPI:-0} != 0 ]] ; then |
|
|
59 | _automake_atom="|| ( `printf '>=sys-devel/automake-%s:%s ' ${_LATEST_AUTOMAKE[@]/:/ }` )" |
|
|
60 | else |
| 53 | latest) _automake_atom="|| ( `printf '=sys-devel/automake-%s* ' ${_LATEST_AUTOMAKE}` )" ;; |
61 | _automake_atom="|| ( `printf '>=sys-devel/automake-%s ' ${_LATEST_AUTOMAKE[@]/%:*}` )" |
|
|
62 | fi |
|
|
63 | ;; |
| 54 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
64 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
| 55 | esac |
65 | esac |
| 56 | export WANT_AUTOMAKE |
66 | export WANT_AUTOMAKE |
| 57 | fi |
67 | fi |
| 58 | |
68 | |
| 59 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
69 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
| 60 | case ${WANT_AUTOCONF} in |
70 | case ${WANT_AUTOCONF} in |
| 61 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
71 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
| 62 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
72 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
| 63 | # if you change the “latest” version here, change also autotools_run_tool |
73 | # if you change the "latest" version here, change also autotools_env_setup |
| 64 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.61" ;; |
74 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.68" ;; |
| 65 | *) die "Invalid WANT_AUTOCONF value '${WANT_AUTOCONF}'" ;; |
75 | *) die "Invalid WANT_AUTOCONF value '${WANT_AUTOCONF}'" ;; |
| 66 | esac |
76 | esac |
| 67 | export WANT_AUTOCONF |
77 | export WANT_AUTOCONF |
| 68 | fi |
78 | fi |
| 69 | |
79 | |
| … | |
… | |
| 96 | # @DEFAULT_UNSET |
106 | # @DEFAULT_UNSET |
| 97 | # @DESCRIPTION: |
107 | # @DESCRIPTION: |
| 98 | # Additional options to pass to automake during |
108 | # Additional options to pass to automake during |
| 99 | # eautoreconf call. |
109 | # eautoreconf call. |
| 100 | |
110 | |
|
|
111 | # @ECLASS-VARIABLE: AT_NOEAUTOMAKE |
|
|
112 | # @DEFAULT_UNSET |
|
|
113 | # @DESCRIPTION: |
|
|
114 | # Don't run eautomake command if set to 'yes'; only used to workaround |
|
|
115 | # broken packages. Generally you should, instead, fix the package to |
|
|
116 | # not call AM_INIT_AUTOMAKE if it doesn't actually use automake. |
|
|
117 | |
| 101 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
118 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
| 102 | # @DEFAULT_UNSET |
119 | # @DEFAULT_UNSET |
| 103 | # @DESCRIPTION: |
120 | # @DESCRIPTION: |
| 104 | # Don't run elibtoolize command if set to 'yes', |
121 | # Don't run elibtoolize command if set to 'yes', |
| 105 | # useful when elibtoolize needs to be ran with |
122 | # useful when elibtoolize needs to be ran with |
| … | |
… | |
| 125 | # the directory with include files can be specified with AT_M4DIR variable. |
142 | # the directory with include files can be specified with AT_M4DIR variable. |
| 126 | # |
143 | # |
| 127 | # Should do a full autoreconf - normally what most people will be interested in. |
144 | # Should do a full autoreconf - normally what most people will be interested in. |
| 128 | # Also should handle additional directories specified by AC_CONFIG_SUBDIRS. |
145 | # Also should handle additional directories specified by AC_CONFIG_SUBDIRS. |
| 129 | eautoreconf() { |
146 | eautoreconf() { |
| 130 | local x auxdir g |
147 | local x g |
| 131 | |
148 | |
| 132 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
149 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
| 133 | # Take care of subdirs |
150 | # Take care of subdirs |
| 134 | for x in $(autotools_get_subdirs); do |
151 | for x in $(autotools_get_subdirs); do |
| 135 | if [[ -d ${x} ]] ; then |
152 | if [[ -d ${x} ]] ; then |
| … | |
… | |
| 138 | popd >/dev/null |
155 | popd >/dev/null |
| 139 | fi |
156 | fi |
| 140 | done |
157 | done |
| 141 | fi |
158 | fi |
| 142 | |
159 | |
| 143 | auxdir=$(autotools_get_auxdir) |
160 | local auxdir=$(autotools_get_auxdir) |
|
|
161 | local macdir=$(autotools_get_macrodir) |
| 144 | |
162 | |
| 145 | einfo "Running eautoreconf in '${PWD}' ..." |
163 | einfo "Running eautoreconf in '${PWD}' ..." |
| 146 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
164 | [[ -n ${auxdir}${macdir} ]] && mkdir -p ${auxdir} ${macdir} |
| 147 | eaclocal |
165 | eaclocal |
|
|
166 | if grep -q '^AM_GNU_GETTEXT_VERSION' configure.?? ; then |
|
|
167 | eautopoint --force |
|
|
168 | fi |
| 148 | [[ ${CHOST} == *-darwin* ]] && g=g |
169 | [[ ${CHOST} == *-darwin* ]] && g=g |
| 149 | if ${LIBTOOLIZE:-${g}libtoolize} -n --install >& /dev/null ; then |
170 | if ${LIBTOOLIZE:-${g}libtoolize} -n --install >& /dev/null ; then |
| 150 | _elibtoolize --copy --force --install |
171 | _elibtoolize --copy --force --install |
| 151 | else |
172 | else |
| 152 | _elibtoolize --copy --force |
173 | _elibtoolize --copy --force |
| 153 | fi |
174 | fi |
| 154 | eautoconf |
175 | eautoconf |
| 155 | eautoheader |
176 | eautoheader |
| 156 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
177 | [[ ${AT_NOEAUTOMAKE} != "yes" ]] && FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
| 157 | |
178 | |
| 158 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
179 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
| 159 | |
180 | |
| 160 | # Call it here to prevent failures due to elibtoolize called _before_ |
181 | # Call it here to prevent failures due to elibtoolize called _before_ |
| 161 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
182 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
| … | |
… | |
| 260 | for makefile_name in {GNUmakefile,{M,m}akefile}.am "" ; do |
281 | for makefile_name in {GNUmakefile,{M,m}akefile}.am "" ; do |
| 261 | [[ -f ${makefile_name} ]] && break |
282 | [[ -f ${makefile_name} ]] && break |
| 262 | done |
283 | done |
| 263 | |
284 | |
| 264 | if [[ -z ${makefile_name} ]] ; then |
285 | if [[ -z ${makefile_name} ]] ; then |
| 265 | if ! grep -qs AM_INIT_AUTOMAKE configure.?? ; then |
286 | # Really we should just use autotools_check_macro ... |
|
|
287 | local am_init_automake=$(sed -n '/AM_INIT_AUTOMAKE/{s:#.*::;s:\<dnl\>.*::;p}' configure.??) |
|
|
288 | if [[ ${am_init_automake} != *"AM_INIT_AUTOMAKE"* ]] ; then |
| 266 | return 0 |
289 | return 0 |
| 267 | fi |
290 | fi |
| 268 | |
291 | |
| 269 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
292 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
| 270 | local used_automake |
293 | local used_automake |
| … | |
… | |
| 316 | done |
339 | done |
| 317 | } |
340 | } |
| 318 | |
341 | |
| 319 | # Internal function to run an autotools' tool |
342 | # Internal function to run an autotools' tool |
| 320 | autotools_env_setup() { |
343 | autotools_env_setup() { |
| 321 | # We do the “latest” → version switch here because it solves |
344 | # We do the "latest" → version switch here because it solves |
| 322 | # possible order problems, see bug #270010 as an example. |
345 | # possible order problems, see bug #270010 as an example. |
| 323 | if [[ ${WANT_AUTOMAKE} == "latest" ]]; then |
346 | if [[ ${WANT_AUTOMAKE} == "latest" ]]; then |
| 324 | local pv |
347 | local pv |
| 325 | for pv in ${_LATEST_AUTOMAKE} ; do |
348 | for pv in ${_LATEST_AUTOMAKE[@]/#*:} ; do |
| 326 | # has_version respects ROOT, but in this case, we don't want it to, |
349 | # has_version respects ROOT, but in this case, we don't want it to, |
| 327 | # thus "ROOT=/" prefix: |
350 | # thus "ROOT=/" prefix: |
| 328 | ROOT=/ has_version "=sys-devel/automake-${pv}*" && export WANT_AUTOMAKE="$pv" |
351 | ROOT=/ has_version "=sys-devel/automake-${pv}*" && export WANT_AUTOMAKE="${pv}" |
| 329 | done |
352 | done |
| 330 | [[ ${WANT_AUTOMAKE} == "latest" ]] && \ |
353 | [[ ${WANT_AUTOMAKE} == "latest" ]] && \ |
| 331 | die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}" |
354 | die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}" |
| 332 | fi |
355 | fi |
| 333 | [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 |
356 | [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 |
| … | |
… | |
| 408 | } |
431 | } |
| 409 | |
432 | |
| 410 | # Internal function to get additional subdirs to configure |
433 | # Internal function to get additional subdirs to configure |
| 411 | autotools_get_subdirs() { autotools_check_macro_val AC_CONFIG_SUBDIRS ; } |
434 | autotools_get_subdirs() { autotools_check_macro_val AC_CONFIG_SUBDIRS ; } |
| 412 | autotools_get_auxdir() { autotools_check_macro_val AC_CONFIG_AUX_DIR ; } |
435 | autotools_get_auxdir() { autotools_check_macro_val AC_CONFIG_AUX_DIR ; } |
|
|
436 | autotools_get_macrodir() { autotools_check_macro_val AC_CONFIG_MACRO_DIR ; } |
| 413 | |
437 | |
| 414 | _autotools_m4dir_include() { |
438 | _autotools_m4dir_include() { |
| 415 | local x include_opts |
439 | local x include_opts |
| 416 | |
440 | |
| 417 | for x in "$@" ; do |
441 | for x in "$@" ; do |