| 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.106 2011/08/22 19:39:52 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.146 2012/06/07 06:00:05 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 |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # This eclass is for safely handling autotooled software packages that need to |
10 | # This eclass is for safely handling autotooled software packages that need to |
| 11 | # regenerate their build scripts. All functions will abort in case of errors. |
11 | # regenerate their build scripts. All functions will abort in case of errors. |
| 12 | # |
|
|
| 13 | # NB: If you add anything, please comment it! |
|
|
| 14 | |
12 | |
| 15 | inherit eutils libtool |
13 | # Note: We require GNU m4, as does autoconf. So feel free to use any features |
|
|
14 | # from the GNU version of m4 without worrying about other variants (i.e. BSD). |
|
|
15 | |
|
|
16 | if [[ ${___ECLASS_ONCE_AUTOTOOLS} != "recur -_+^+_- spank" ]] ; then |
|
|
17 | ___ECLASS_ONCE_AUTOTOOLS="recur -_+^+_- spank" |
|
|
18 | |
|
|
19 | inherit libtool multiprocessing |
| 16 | |
20 | |
| 17 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
21 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
| 18 | # @DESCRIPTION: |
22 | # @DESCRIPTION: |
| 19 | # The major version of autoconf your package needs |
23 | # The major version of autoconf your package needs |
| 20 | : ${WANT_AUTOCONF:=latest} |
24 | : ${WANT_AUTOCONF:=latest} |
| … | |
… | |
| 31 | |
35 | |
| 32 | # @ECLASS-VARIABLE: _LATEST_AUTOMAKE |
36 | # @ECLASS-VARIABLE: _LATEST_AUTOMAKE |
| 33 | # @INTERNAL |
37 | # @INTERNAL |
| 34 | # @DESCRIPTION: |
38 | # @DESCRIPTION: |
| 35 | # CONSTANT! |
39 | # CONSTANT! |
| 36 | # The latest major version/slot of automake available on each arch. |
40 | # The latest major version/slot of automake available on each arch. #312315 |
| 37 | # 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, |
| 38 | # then circular dependencies may arise during emerge @system bootstraps. |
42 | # then circular dependencies may arise during emerge @system bootstraps. |
| 39 | # 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>] |
| 40 | _LATEST_AUTOMAKE='1.11' |
46 | _LATEST_AUTOMAKE=( 1.11.1:1.11 ) |
| 41 | |
47 | |
| 42 | _automake_atom="sys-devel/automake" |
48 | _automake_atom="sys-devel/automake" |
| 43 | _autoconf_atom="sys-devel/autoconf" |
49 | _autoconf_atom="sys-devel/autoconf" |
| 44 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
50 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
| 45 | case ${WANT_AUTOMAKE} in |
51 | case ${WANT_AUTOMAKE} in |
| 46 | 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 |
| 47 | # 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 |
| 48 | # 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 |
| 49 | latest) _automake_atom="|| ( `printf '=sys-devel/automake-%s* ' ${_LATEST_AUTOMAKE}` )" ;; |
61 | _automake_atom="|| ( `printf '>=sys-devel/automake-%s ' ${_LATEST_AUTOMAKE[@]/%:*}` )" |
|
|
62 | fi |
|
|
63 | ;; |
| 50 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
64 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
| 51 | esac |
65 | esac |
| 52 | export WANT_AUTOMAKE |
66 | export WANT_AUTOMAKE |
| 53 | fi |
67 | fi |
| 54 | |
68 | |
| 55 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
69 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
| 56 | case ${WANT_AUTOCONF} in |
70 | case ${WANT_AUTOCONF} in |
| 57 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
71 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
| 58 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
72 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
| 59 | # 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 |
| 60 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.61" ;; |
74 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.68" ;; |
| 61 | *) die "Invalid WANT_AUTOCONF value '${WANT_AUTOCONF}'" ;; |
75 | *) die "Invalid WANT_AUTOCONF value '${WANT_AUTOCONF}'" ;; |
| 62 | esac |
76 | esac |
| 63 | export WANT_AUTOCONF |
77 | export WANT_AUTOCONF |
| 64 | fi |
78 | fi |
| 65 | |
79 | |
| … | |
… | |
| 92 | # @DEFAULT_UNSET |
106 | # @DEFAULT_UNSET |
| 93 | # @DESCRIPTION: |
107 | # @DESCRIPTION: |
| 94 | # Additional options to pass to automake during |
108 | # Additional options to pass to automake during |
| 95 | # eautoreconf call. |
109 | # eautoreconf call. |
| 96 | |
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 | |
| 97 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
118 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
| 98 | # @DEFAULT_UNSET |
119 | # @DEFAULT_UNSET |
| 99 | # @DESCRIPTION: |
120 | # @DESCRIPTION: |
| 100 | # Don't run elibtoolize command if set to 'yes', |
121 | # Don't run elibtoolize command if set to 'yes', |
| 101 | # useful when elibtoolize needs to be ran with |
122 | # useful when elibtoolize needs to be ran with |
| 102 | # particular options |
123 | # particular options |
| 103 | |
124 | |
| 104 | # XXX: M4DIR should be deprecated |
|
|
| 105 | # @ECLASS-VARIABLE: AT_M4DIR |
125 | # @ECLASS-VARIABLE: AT_M4DIR |
| 106 | # @DESCRIPTION: |
126 | # @DESCRIPTION: |
| 107 | # Additional director(y|ies) aclocal should search |
127 | # Additional director(y|ies) aclocal should search |
| 108 | : ${AT_M4DIR:=${M4DIR}} |
128 | : ${AT_M4DIR:=} |
|
|
129 | |
|
|
130 | # @ECLASS-VARIABLE: AT_SYS_M4DIR |
|
|
131 | # @INTERNAL |
|
|
132 | # @DESCRIPTION: |
|
|
133 | # For system integrators, a list of additional aclocal search paths. |
|
|
134 | # This variable gets eval-ed, so you can use variables in the definition |
|
|
135 | # that may not be valid until eautoreconf & friends are run. |
|
|
136 | : ${AT_SYS_M4DIR:=} |
| 109 | |
137 | |
| 110 | # @FUNCTION: eautoreconf |
138 | # @FUNCTION: eautoreconf |
| 111 | # @DESCRIPTION: |
139 | # @DESCRIPTION: |
| 112 | # This function mimes the behavior of autoreconf, but uses the different |
140 | # This function mimes the behavior of autoreconf, but uses the different |
| 113 | # eauto* functions to run the tools. It doesn't accept parameters, but |
141 | # eauto* functions to run the tools. It doesn't accept parameters, but |
| 114 | # 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. |
| 115 | # |
143 | # |
| 116 | # 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. |
| 117 | # Also should handle additional directories specified by AC_CONFIG_SUBDIRS. |
145 | # Also should handle additional directories specified by AC_CONFIG_SUBDIRS. |
| 118 | eautoreconf() { |
146 | eautoreconf() { |
| 119 | local x auxdir g |
147 | local x g multitop |
| 120 | |
148 | |
|
|
149 | if [[ -z ${AT_TOPLEVEL_EAUTORECONF} ]] ; then |
|
|
150 | AT_TOPLEVEL_EAUTORECONF="yes" |
|
|
151 | multitop="yes" |
|
|
152 | multijob_init |
|
|
153 | fi |
|
|
154 | |
| 121 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
155 | if [[ -z ${AT_NO_RECURSIVE} ]] ; then |
| 122 | # Take care of subdirs |
156 | # Take care of subdirs |
| 123 | for x in $(autotools_get_subdirs); do |
157 | for x in $(autotools_check_macro_val AC_CONFIG_SUBDIRS) ; do |
| 124 | if [[ -d ${x} ]] ; then |
158 | if [[ -d ${x} ]] ; then |
| 125 | pushd "${x}" >/dev/null |
159 | pushd "${x}" >/dev/null |
| 126 | AT_NOELIBTOOLIZE="yes" eautoreconf |
160 | AT_NOELIBTOOLIZE="yes" multijob_child_init eautoreconf || die |
| 127 | popd >/dev/null |
161 | popd >/dev/null |
| 128 | fi |
162 | fi |
| 129 | done |
163 | done |
| 130 | fi |
164 | fi |
| 131 | |
165 | |
| 132 | auxdir=$(autotools_get_auxdir) |
|
|
| 133 | |
|
|
| 134 | einfo "Running eautoreconf in '${PWD}' ..." |
166 | einfo "Running eautoreconf in '${PWD}' ..." |
|
|
167 | |
|
|
168 | local m4dirs=$(autotools_check_macro_val AC_CONFIG_{AUX,MACRO}_DIR) |
| 135 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
169 | [[ -n ${m4dirs} ]] && mkdir -p ${m4dirs} |
|
|
170 | |
|
|
171 | # Run all the tools before aclocal so we can gather the .m4 files. |
|
|
172 | local i tools=( |
|
|
173 | # <tool> <was run> <command> |
|
|
174 | glibgettext false "autotools_run_tool glib-gettextize --copy --force" |
|
|
175 | gettext false "autotools_run_tool --at-missing autopoint --force" |
|
|
176 | # intltool must come after autopoint. |
|
|
177 | intltool false "autotools_run_tool intltoolize --automake --copy --force" |
|
|
178 | gtkdoc false "autotools_run_tool --at-missing gtkdocize --copy" |
|
|
179 | gnomedoc false "autotools_run_tool --at-missing gnome-doc-prepare --copy --force" |
|
|
180 | libtool false "_elibtoolize --install --copy --force" |
|
|
181 | ) |
|
|
182 | for (( i = 0; i < ${#tools[@]}; i += 3 )) ; do |
|
|
183 | if _at_uses_${tools[i]} ; then |
|
|
184 | tools[i+1]=true |
|
|
185 | ${tools[i+2]} |
|
|
186 | fi |
|
|
187 | done |
|
|
188 | |
|
|
189 | # Generate aclocal.m4 with our up-to-date m4 files. |
|
|
190 | local rerun_aclocal=false |
| 136 | eaclocal |
191 | eaclocal |
| 137 | [[ ${CHOST} == *-darwin* ]] && g=g |
192 | |
| 138 | if ${LIBTOOLIZE:-${g}libtoolize} -n --install >& /dev/null ; then |
193 | # Check to see if we had macros expanded by other macros or in other |
| 139 | _elibtoolize --copy --force --install |
194 | # m4 files that we couldn't detect early. This is uncommon, but some |
| 140 | else |
195 | # packages do this, so we have to handle it correctly. |
| 141 | _elibtoolize --copy --force |
196 | for (( i = 0; i < ${#tools[@]}; i += 3 )) ; do |
|
|
197 | if ! ${tools[i+1]} && _at_uses_${tools[i]} ; then |
|
|
198 | ${tools[i+2]} |
|
|
199 | rerun_aclocal=true |
| 142 | fi |
200 | fi |
|
|
201 | done |
|
|
202 | ${rerun_aclocal} && eaclocal |
|
|
203 | |
| 143 | eautoconf |
204 | eautoconf |
| 144 | eautoheader |
205 | eautoheader |
| 145 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
206 | [[ ${AT_NOEAUTOMAKE} != "yes" ]] && FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
| 146 | |
207 | |
| 147 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
208 | if [[ ${AT_NOELIBTOOLIZE} != "yes" ]] ; then |
| 148 | |
|
|
| 149 | # Call it here to prevent failures due to elibtoolize called _before_ |
209 | # Call it here to prevent failures due to elibtoolize called _before_ |
| 150 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
210 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
| 151 | S=${PWD} elibtoolize |
211 | S=${PWD} elibtoolize --force |
|
|
212 | fi |
|
|
213 | |
|
|
214 | if [[ -n ${multitop} ]] ; then |
|
|
215 | unset AT_TOPLEVEL_EAUTORECONF |
|
|
216 | multijob_finish || die |
|
|
217 | fi |
| 152 | |
218 | |
| 153 | return 0 |
219 | return 0 |
|
|
220 | } |
|
|
221 | |
|
|
222 | # @FUNCTION: _at_uses_pkg |
|
|
223 | # @USAGE: <macros> |
|
|
224 | # @INTERNAL |
|
|
225 | # See if the specified macros are enabled. |
|
|
226 | _at_uses_pkg() { |
|
|
227 | if [[ -n $(autotools_check_macro "$@") ]] ; then |
|
|
228 | return 0 |
|
|
229 | else |
|
|
230 | # If the trace didn't find it (perhaps because aclocal.m4 hasn't |
|
|
231 | # been generated yet), cheat, but be conservative. |
|
|
232 | local macro args=() |
|
|
233 | for macro ; do |
|
|
234 | args+=( -e "^[[:space:]]*${macro}\>" ) |
|
|
235 | done |
|
|
236 | egrep -q "${args[@]}" configure.?? |
|
|
237 | fi |
|
|
238 | } |
|
|
239 | _at_uses_autoheader() { _at_uses_pkg AC_CONFIG_HEADERS; } |
|
|
240 | _at_uses_automake() { _at_uses_pkg AM_INIT_AUTOMAKE; } |
|
|
241 | _at_uses_gettext() { _at_uses_pkg AM_GNU_GETTEXT_VERSION; } |
|
|
242 | _at_uses_glibgettext() { _at_uses_pkg AM_GLIB_GNU_GETTEXT; } |
|
|
243 | _at_uses_intltool() { _at_uses_pkg {AC,IT}_PROG_INTLTOOL; } |
|
|
244 | _at_uses_gtkdoc() { _at_uses_pkg GTK_DOC_CHECK; } |
|
|
245 | _at_uses_gnomedoc() { _at_uses_pkg GNOME_DOC_INIT; } |
|
|
246 | _at_uses_libtool() { _at_uses_pkg A{C,M}_PROG_LIBTOOL LT_INIT; } |
|
|
247 | |
|
|
248 | # @FUNCTION: eaclocal_amflags |
|
|
249 | # @DESCRIPTION: |
|
|
250 | # Extract the ACLOCAL_AMFLAGS value from the Makefile.am and try to handle |
|
|
251 | # (most) of the crazy crap that people throw at us. |
|
|
252 | eaclocal_amflags() { |
|
|
253 | local aclocal_opts amflags_file |
|
|
254 | |
|
|
255 | for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do |
|
|
256 | [[ -e ${amflags_file} ]] || continue |
|
|
257 | # setup the env in case the pkg does something crazy |
|
|
258 | # in their ACLOCAL_AMFLAGS. like run a shell script |
|
|
259 | # which turns around and runs autotools. #365401 |
|
|
260 | # or split across multiple lines. #383525 |
|
|
261 | autotools_env_setup |
|
|
262 | aclocal_opts=$(sed -n \ |
|
|
263 | "/^ACLOCAL_AMFLAGS[[:space:]]*=/{ \ |
|
|
264 | # match the first line |
|
|
265 | s:[^=]*=::p; \ |
|
|
266 | # then gobble up all escaped lines |
|
|
267 | : nextline /\\\\$/{ n; p; b nextline; } \ |
|
|
268 | }" ${amflags_file}) |
|
|
269 | eval aclocal_opts=\""${aclocal_opts}"\" |
|
|
270 | break |
|
|
271 | done |
|
|
272 | |
|
|
273 | echo ${aclocal_opts} |
| 154 | } |
274 | } |
| 155 | |
275 | |
| 156 | # @FUNCTION: eaclocal |
276 | # @FUNCTION: eaclocal |
| 157 | # @DESCRIPTION: |
277 | # @DESCRIPTION: |
| 158 | # These functions runs the autotools using autotools_run_tool with the |
278 | # These functions runs the autotools using autotools_run_tool with the |
| 159 | # specified parametes. The name of the tool run is the same of the function |
279 | # specified parametes. The name of the tool run is the same of the function |
| 160 | # without e prefix. |
280 | # without e prefix. |
| 161 | # They also force installing the support files for safety. |
281 | # They also force installing the support files for safety. |
| 162 | # Respects AT_M4DIR for additional directories to search for macro's. |
282 | # Respects AT_M4DIR for additional directories to search for macro's. |
| 163 | eaclocal() { |
283 | eaclocal() { |
| 164 | local aclocal_opts |
|
|
| 165 | |
|
|
| 166 | local amflags_file |
|
|
| 167 | for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do |
|
|
| 168 | [[ -e ${amflags_file} ]] || continue |
|
|
| 169 | # setup the env in case the pkg does something crazy |
|
|
| 170 | # in their ACLOCAL_AMFLAGS. like run a shell script |
|
|
| 171 | # which turns around and runs autotools #365401 |
|
|
| 172 | autotools_env_setup |
|
|
| 173 | aclocal_opts=$(sed -n '/^ACLOCAL_AMFLAGS[[:space:]]*=/s:[^=]*=::p' ${amflags_file}) |
|
|
| 174 | eval aclocal_opts=\"${aclocal_opts}\" |
|
|
| 175 | break |
|
|
| 176 | done |
|
|
| 177 | |
|
|
| 178 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
284 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
| 179 | autotools_run_tool aclocal $(autotools_m4dir_include) "$@" ${aclocal_opts} |
285 | autotools_run_tool --at-m4flags aclocal "$@" $(eaclocal_amflags) |
| 180 | } |
286 | } |
| 181 | |
287 | |
| 182 | # @FUNCTION: _elibtoolize |
288 | # @FUNCTION: _elibtoolize |
| 183 | # @DESCRIPTION: |
289 | # @DESCRIPTION: |
|
|
290 | # Runs libtoolize. If --install is the first arg, automatically drop it if |
|
|
291 | # the active libtool version doesn't support it. |
|
|
292 | # |
| 184 | # Runs libtoolize. Note the '_' prefix .. to not collide with elibtoolize() from |
293 | # Note the '_' prefix .. to not collide with elibtoolize() from libtool.eclass. |
| 185 | # libtool.eclass. |
|
|
| 186 | _elibtoolize() { |
294 | _elibtoolize() { |
| 187 | local opts g= |
295 | local LIBTOOLIZE=${LIBTOOLIZE:-libtoolize} |
|
|
296 | type -P glibtoolize > /dev/null && LIBTOOLIZE=glibtoolize |
| 188 | |
297 | |
| 189 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
|
|
| 190 | # check for both it and the current AC_PROG_LIBTOOL) |
|
|
| 191 | [[ -n $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] || return 0 |
|
|
| 192 | |
|
|
| 193 | [[ -f GNUmakefile.am || -f Makefile.am ]] && opts="--automake" |
298 | [[ -f GNUmakefile.am || -f Makefile.am ]] && set -- "$@" --automake |
|
|
299 | if [[ $1 == "--install" ]] ; then |
|
|
300 | ${LIBTOOLIZE} -n --install >& /dev/null || shift |
|
|
301 | fi |
| 194 | |
302 | |
| 195 | [[ ${CHOST} == *-darwin* ]] && g=g |
|
|
| 196 | autotools_run_tool ${LIBTOOLIZE:-${g}libtoolize} "$@" ${opts} |
303 | autotools_run_tool ${LIBTOOLIZE} "$@" ${opts} |
| 197 | |
|
|
| 198 | # Need to rerun aclocal |
|
|
| 199 | eaclocal |
|
|
| 200 | } |
304 | } |
| 201 | |
305 | |
| 202 | # @FUNCTION: eautoheader |
306 | # @FUNCTION: eautoheader |
| 203 | # @DESCRIPTION: |
307 | # @DESCRIPTION: |
| 204 | # Runs autoheader. |
308 | # Runs autoheader. |
| 205 | eautoheader() { |
309 | eautoheader() { |
| 206 | # Check if we should run autoheader |
310 | _at_uses_autoheader || return 0 |
| 207 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
311 | autotools_run_tool --at-no-fail --at-m4flags autoheader "$@" |
| 208 | NO_FAIL=1 autotools_run_tool autoheader $(autotools_m4dir_include) "$@" |
|
|
| 209 | } |
312 | } |
| 210 | |
313 | |
| 211 | # @FUNCTION: eautoconf |
314 | # @FUNCTION: eautoconf |
| 212 | # @DESCRIPTION: |
315 | # @DESCRIPTION: |
| 213 | # Runs autoconf. |
316 | # Runs autoconf. |
| … | |
… | |
| 217 | eerror "No configure.{ac,in} present in '${PWD}'!" |
320 | eerror "No configure.{ac,in} present in '${PWD}'!" |
| 218 | echo |
321 | echo |
| 219 | die "No configure.{ac,in} present!" |
322 | die "No configure.{ac,in} present!" |
| 220 | fi |
323 | fi |
| 221 | |
324 | |
| 222 | autotools_run_tool autoconf $(autotools_m4dir_include) "$@" |
325 | autotools_run_tool --at-m4flags autoconf "$@" |
| 223 | } |
326 | } |
| 224 | |
327 | |
| 225 | # @FUNCTION: eautomake |
328 | # @FUNCTION: eautomake |
| 226 | # @DESCRIPTION: |
329 | # @DESCRIPTION: |
| 227 | # Runs automake. |
330 | # Runs automake. |
| … | |
… | |
| 229 | local extra_opts |
332 | local extra_opts |
| 230 | local makefile_name |
333 | local makefile_name |
| 231 | |
334 | |
| 232 | # Run automake if: |
335 | # Run automake if: |
| 233 | # - a Makefile.am type file exists |
336 | # - a Makefile.am type file exists |
| 234 | # - a Makefile.in type file exists and the configure |
|
|
| 235 | # script is using the AM_INIT_AUTOMAKE directive |
337 | # - the configure script is using the AM_INIT_AUTOMAKE directive |
| 236 | for makefile_name in {GNUmakefile,{M,m}akefile}.{am,in} "" ; do |
338 | for makefile_name in {GNUmakefile,{M,m}akefile}.am "" ; do |
| 237 | [[ -f ${makefile_name} ]] && break |
339 | [[ -f ${makefile_name} ]] && break |
| 238 | done |
340 | done |
| 239 | [[ -z ${makefile_name} ]] && return 0 |
|
|
| 240 | |
341 | |
| 241 | if [[ ${makefile_name} == *.in ]] ; then |
342 | if [[ -z ${makefile_name} ]] ; then |
| 242 | if ! grep -qs AM_INIT_AUTOMAKE configure.?? ; then |
343 | _at_uses_automake || return 0 |
| 243 | return 0 |
|
|
| 244 | fi |
|
|
| 245 | |
344 | |
| 246 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
345 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
| 247 | local used_automake |
346 | local used_automake |
| 248 | local installed_automake |
347 | local installed_automake |
| 249 | |
348 | |
| … | |
… | |
| 258 | eautoreconf |
357 | eautoreconf |
| 259 | return 0 |
358 | return 0 |
| 260 | fi |
359 | fi |
| 261 | fi |
360 | fi |
| 262 | |
361 | |
| 263 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS ]] \ |
362 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS && -f README ]] \ |
| 264 | || extra_opts="${extra_opts} --foreign" |
363 | || extra_opts="${extra_opts} --foreign" |
| 265 | |
364 | |
| 266 | # --force-missing seems not to be recognized by some flavours of automake |
365 | # --force-missing seems not to be recognized by some flavours of automake |
| 267 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
366 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 268 | } |
367 | } |
| … | |
… | |
| 272 | # Runs autopoint (from the gettext package). |
371 | # Runs autopoint (from the gettext package). |
| 273 | eautopoint() { |
372 | eautopoint() { |
| 274 | autotools_run_tool autopoint "$@" |
373 | autotools_run_tool autopoint "$@" |
| 275 | } |
374 | } |
| 276 | |
375 | |
| 277 | # Internal function to run an autotools' tool |
376 | # @FUNCTION: config_rpath_update |
|
|
377 | # @USAGE: [destination] |
|
|
378 | # @DESCRIPTION: |
|
|
379 | # Some packages utilize the config.rpath helper script, but don't |
|
|
380 | # use gettext directly. So we have to copy it in manually since |
|
|
381 | # we can't let `autopoint` do it for us. |
|
|
382 | config_rpath_update() { |
|
|
383 | local dst src=$(type -P gettext | sed 's:bin/gettext:share/gettext/config.rpath:') |
|
|
384 | |
|
|
385 | [[ $# -eq 0 ]] && set -- $(find -name config.rpath) |
|
|
386 | [[ $# -eq 0 ]] && return 0 |
|
|
387 | |
|
|
388 | einfo "Updating all config.rpath files" |
|
|
389 | for dst in "$@" ; do |
|
|
390 | einfo " ${dst}" |
|
|
391 | cp "${src}" "${dst}" || die |
|
|
392 | done |
|
|
393 | } |
|
|
394 | |
|
|
395 | # @FUNCTION: autotools_env_setup |
|
|
396 | # @INTERNAL |
|
|
397 | # @DESCRIPTION: |
|
|
398 | # Process the WANT_AUTO{CONF,MAKE} flags. |
| 278 | autotools_env_setup() { |
399 | autotools_env_setup() { |
| 279 | # We do the “latest” → version switch here because it solves |
400 | # We do the "latest" → version switch here because it solves |
| 280 | # possible order problems, see bug #270010 as an example. |
401 | # possible order problems, see bug #270010 as an example. |
| 281 | if [[ ${WANT_AUTOMAKE} == "latest" ]]; then |
402 | if [[ ${WANT_AUTOMAKE} == "latest" ]]; then |
| 282 | local pv |
403 | local pv |
| 283 | for pv in ${_LATEST_AUTOMAKE} ; do |
404 | for pv in ${_LATEST_AUTOMAKE[@]/#*:} ; do |
| 284 | # has_version respects ROOT, but in this case, we don't want it to, |
405 | # has_version respects ROOT, but in this case, we don't want it to, |
| 285 | # thus "ROOT=/" prefix: |
406 | # thus "ROOT=/" prefix: |
| 286 | ROOT=/ has_version "=sys-devel/automake-${pv}*" && export WANT_AUTOMAKE="$pv" |
407 | ROOT=/ has_version "=sys-devel/automake-${pv}*" && export WANT_AUTOMAKE="${pv}" |
| 287 | done |
408 | done |
| 288 | [[ ${WANT_AUTOMAKE} == "latest" ]] && \ |
409 | [[ ${WANT_AUTOMAKE} == "latest" ]] && \ |
| 289 | die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}" |
410 | die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}" |
| 290 | fi |
411 | fi |
| 291 | [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 |
412 | [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 |
| 292 | } |
413 | } |
|
|
414 | |
|
|
415 | # @FUNCTION: autotools_run_tool |
|
|
416 | # @USAGE: [--at-no-fail] [--at-m4flags] [--at-missing] <autotool> [tool-specific flags] |
|
|
417 | # @INTERNAL |
|
|
418 | # @DESCRIPTION: |
|
|
419 | # Run the specified autotool helper, but do logging and error checking |
|
|
420 | # around it in the process. |
| 293 | autotools_run_tool() { |
421 | autotools_run_tool() { |
|
|
422 | # Process our own internal flags first |
|
|
423 | local autofail=true m4flags=false missing_ok=false |
|
|
424 | while [[ -n $1 ]] ; do |
|
|
425 | case $1 in |
|
|
426 | --at-no-fail) autofail=false;; |
|
|
427 | --at-m4flags) m4flags=true;; |
|
|
428 | --at-missing) missing_ok=true;; |
|
|
429 | # whatever is left goes to the actual tool |
|
|
430 | *) break;; |
|
|
431 | esac |
|
|
432 | shift |
|
|
433 | done |
|
|
434 | |
| 294 | if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then |
435 | if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then |
| 295 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
436 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
|
|
437 | fi |
|
|
438 | |
|
|
439 | if ${missing_ok} && ! type -P ${1} >/dev/null ; then |
|
|
440 | einfo "Skipping '$*' due $1 not installed" |
|
|
441 | return 0 |
| 296 | fi |
442 | fi |
| 297 | |
443 | |
| 298 | autotools_env_setup |
444 | autotools_env_setup |
| 299 | |
445 | |
| 300 | local STDERR_TARGET="${T}/$1.out" |
446 | local STDERR_TARGET="${T}/$1.out" |
| … | |
… | |
| 307 | [[ -e ${STDERR_TARGET} ]] || break |
453 | [[ -e ${STDERR_TARGET} ]] || break |
| 308 | : $(( i++ )) |
454 | : $(( i++ )) |
| 309 | done |
455 | done |
| 310 | fi |
456 | fi |
| 311 | |
457 | |
|
|
458 | if ${m4flags} ; then |
|
|
459 | set -- "${1}" $(autotools_m4dir_include) "${@:2}" $(autotools_m4sysdir_include) |
|
|
460 | fi |
|
|
461 | |
| 312 | printf "***** $1 *****\n***** PWD: ${PWD}\n***** $*\n\n" > "${STDERR_TARGET}" |
462 | printf "***** $1 *****\n***** PWD: ${PWD}\n***** $*\n\n" > "${STDERR_TARGET}" |
| 313 | |
463 | |
| 314 | ebegin "Running $@" |
464 | ebegin "Running $@" |
| 315 | "$@" >> "${STDERR_TARGET}" 2>&1 |
465 | "$@" >> "${STDERR_TARGET}" 2>&1 |
| 316 | eend $? |
466 | if ! eend $? && ${autofail} ; then |
| 317 | |
|
|
| 318 | if [[ $? != 0 && ${NO_FAIL} != 1 ]] ; then |
|
|
| 319 | echo |
467 | echo |
| 320 | eerror "Failed Running $1 !" |
468 | eerror "Failed Running $1 !" |
| 321 | eerror |
469 | eerror |
| 322 | eerror "Include in your bugreport the contents of:" |
470 | eerror "Include in your bugreport the contents of:" |
| 323 | eerror |
471 | eerror |
| … | |
… | |
| 326 | die "Failed Running $1 !" |
474 | die "Failed Running $1 !" |
| 327 | fi |
475 | fi |
| 328 | } |
476 | } |
| 329 | |
477 | |
| 330 | # Internal function to check for support |
478 | # Internal function to check for support |
|
|
479 | |
|
|
480 | # Keep a list of all the macros we might use so that we only |
|
|
481 | # have to run the trace code once. Order doesn't matter. |
|
|
482 | ALL_AUTOTOOLS_MACROS=( |
|
|
483 | AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT |
|
|
484 | AC_CONFIG_HEADERS |
|
|
485 | AC_CONFIG_SUBDIRS |
|
|
486 | AC_CONFIG_AUX_DIR AC_CONFIG_MACRO_DIR |
|
|
487 | AM_INIT_AUTOMAKE |
|
|
488 | AM_GLIB_GNU_GETTEXT |
|
|
489 | AM_GNU_GETTEXT_VERSION |
|
|
490 | {AC,IT}_PROG_INTLTOOL |
|
|
491 | GTK_DOC_CHECK |
|
|
492 | GNOME_DOC_INIT |
|
|
493 | ) |
| 331 | autotools_check_macro() { |
494 | autotools_check_macro() { |
| 332 | [[ -f configure.ac || -f configure.in ]] || return 0 |
495 | [[ -f configure.ac || -f configure.in ]] || return 0 |
|
|
496 | |
|
|
497 | # We can run in multiple dirs, so we have to cache the trace |
|
|
498 | # data in $PWD rather than an env var. |
|
|
499 | local trace_file=".__autoconf_trace_data" |
|
|
500 | if [[ ! -e ${trace_file} ]] || [[ aclocal.m4 -nt ${trace_file} ]] ; then |
|
|
501 | WANT_AUTOCONF="2.5" autoconf \ |
|
|
502 | $(autotools_m4dir_include) \ |
|
|
503 | ${ALL_AUTOTOOLS_MACROS[@]/#/--trace=} > ${trace_file} 2>/dev/null |
|
|
504 | fi |
|
|
505 | |
| 333 | local macro |
506 | local macro args=() |
| 334 | for macro ; do |
507 | for macro ; do |
| 335 | WANT_AUTOCONF="2.5" autoconf $(autotools_m4dir_include) --trace="${macro}" 2>/dev/null |
508 | has ${macro} ${ALL_AUTOTOOLS_MACROS[@]} || die "internal error: add ${macro} to ALL_AUTOTOOLS_MACROS" |
|
|
509 | args+=( -e ":${macro}:" ) |
| 336 | done |
510 | done |
|
|
511 | grep "${args[@]}" ${trace_file} |
|
|
512 | } |
|
|
513 | |
|
|
514 | # @FUNCTION: autotools_check_macro_val |
|
|
515 | # @USAGE: <macro> [macros] |
|
|
516 | # @INTERNAL |
|
|
517 | # @DESCRIPTION: |
|
|
518 | # Look for a macro and extract its value. |
|
|
519 | autotools_check_macro_val() { |
|
|
520 | local macro scan_out |
|
|
521 | |
|
|
522 | for macro ; do |
|
|
523 | autotools_check_macro "${macro}" | \ |
|
|
524 | gawk -v macro="${macro}" \ |
|
|
525 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
|
|
526 | if (match($0, macro ":(.*)$", res)) |
|
|
527 | print res[1] |
|
|
528 | }' | uniq |
|
|
529 | done |
|
|
530 | |
| 337 | return 0 |
531 | return 0 |
| 338 | } |
532 | } |
| 339 | |
533 | |
| 340 | # Internal function to get additional subdirs to configure |
|
|
| 341 | autotools_get_subdirs() { |
|
|
| 342 | local subdirs_scan_out |
|
|
| 343 | |
|
|
| 344 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
|
|
| 345 | [[ -n ${subdirs_scan_out} ]] || return 0 |
|
|
| 346 | |
|
|
| 347 | echo "${subdirs_scan_out}" | gawk \ |
|
|
| 348 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
|
|
| 349 | if (match($0, /AC_CONFIG_SUBDIRS:(.*)$/, res)) |
|
|
| 350 | print res[1] |
|
|
| 351 | }' | uniq |
|
|
| 352 | |
|
|
| 353 | return 0 |
|
|
| 354 | } |
|
|
| 355 | |
|
|
| 356 | autotools_get_auxdir() { |
|
|
| 357 | local auxdir_scan_out |
|
|
| 358 | |
|
|
| 359 | auxdir_scan_out=$(autotools_check_macro "AC_CONFIG_AUX_DIR") |
|
|
| 360 | [[ -n ${auxdir_scan_out} ]] || return 0 |
|
|
| 361 | |
|
|
| 362 | echo ${auxdir_scan_out} | gawk \ |
|
|
| 363 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
|
|
| 364 | if (match($0, /AC_CONFIG_AUX_DIR:(.*)$/, res)) |
|
|
| 365 | print res[1] |
|
|
| 366 | }' | uniq |
|
|
| 367 | |
|
|
| 368 | return 0 |
|
|
| 369 | } |
|
|
| 370 | |
|
|
| 371 | autotools_m4dir_include() { |
534 | _autotools_m4dir_include() { |
| 372 | [[ -n ${AT_M4DIR} ]] || return |
|
|
| 373 | |
|
|
| 374 | local include_opts= |
535 | local x include_opts |
| 375 | |
536 | |
| 376 | for x in ${AT_M4DIR} ; do |
537 | for x in "$@" ; do |
| 377 | case "${x}" in |
538 | case ${x} in |
| 378 | "-I") |
|
|
| 379 | # We handle it below |
539 | # We handle it below |
| 380 | ;; |
540 | -I) ;; |
| 381 | *) |
541 | *) |
| 382 | [[ ! -d ${x} ]] && ewarn "autotools.eclass: '${x}' does not exist" |
542 | [[ ! -d ${x} ]] && ewarn "autotools.eclass: '${x}' does not exist" |
| 383 | include_opts="${include_opts} -I ${x}" |
543 | include_opts+=" -I ${x}" |
| 384 | ;; |
544 | ;; |
| 385 | esac |
545 | esac |
| 386 | done |
546 | done |
| 387 | |
547 | |
| 388 | echo $include_opts |
548 | echo ${include_opts} |
| 389 | } |
549 | } |
|
|
550 | autotools_m4dir_include() { _autotools_m4dir_include ${AT_M4DIR} ; } |
|
|
551 | autotools_m4sysdir_include() { _autotools_m4dir_include $(eval echo ${AT_SYS_M4DIR}) ; } |
|
|
552 | |
|
|
553 | fi |