| 1 | # Copyright 1999-2010 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.99 2010/07/06 18:55:50 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.121 2012/02/13 17:26:17 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 | # |
12 | |
| 13 | # NB: If you add anything, please comment it! |
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" |
| 14 | |
18 | |
| 15 | inherit eutils libtool |
19 | inherit eutils libtool |
| 16 | |
20 | |
| 17 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
21 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
| 18 | # @DESCRIPTION: |
22 | # @DESCRIPTION: |
| … | |
… | |
| 22 | # @ECLASS-VARIABLE: WANT_AUTOMAKE |
26 | # @ECLASS-VARIABLE: WANT_AUTOMAKE |
| 23 | # @DESCRIPTION: |
27 | # @DESCRIPTION: |
| 24 | # The major version of automake your package needs |
28 | # The major version of automake your package needs |
| 25 | : ${WANT_AUTOMAKE:=latest} |
29 | : ${WANT_AUTOMAKE:=latest} |
| 26 | |
30 | |
|
|
31 | # @ECLASS-VARIABLE: WANT_LIBTOOL |
|
|
32 | # @DESCRIPTION: |
|
|
33 | # Do you want libtool? Valid values here are "latest" and "none". |
|
|
34 | : ${WANT_LIBTOOL:=latest} |
|
|
35 | |
| 27 | # @ECLASS-VARIABLE: _LATEST_AUTOMAKE |
36 | # @ECLASS-VARIABLE: _LATEST_AUTOMAKE |
|
|
37 | # @INTERNAL |
| 28 | # @DESCRIPTION: |
38 | # @DESCRIPTION: |
| 29 | # CONSTANT! |
39 | # CONSTANT! |
| 30 | # The latest major version/slot of automake available on each arch. |
40 | # The latest major version/slot of automake available on each arch. |
| 31 | # If a newer version is stable on any arch, and is NOT reflected in this list, |
41 | # If a newer version is stable on any arch, and is NOT reflected in this list, |
| 32 | # then circular dependencies may arise during emerge @system bootstraps. |
42 | # then circular dependencies may arise during emerge @system bootstraps. |
| … | |
… | |
| 48 | |
58 | |
| 49 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
59 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
| 50 | case ${WANT_AUTOCONF} in |
60 | case ${WANT_AUTOCONF} in |
| 51 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
61 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
| 52 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
62 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
| 53 | # if you change the “latest” version here, change also autotools_run_tool |
63 | # if you change the "latest" version here, change also autotools_env_setup |
| 54 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.61" ;; |
64 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.68" ;; |
| 55 | *) _autoconf_atom="INCORRECT-WANT_AUTOCONF-SETTING-IN-EBUILD" ;; |
65 | *) die "Invalid WANT_AUTOCONF value '${WANT_AUTOCONF}'" ;; |
| 56 | esac |
66 | esac |
| 57 | export WANT_AUTOCONF |
67 | export WANT_AUTOCONF |
| 58 | fi |
68 | fi |
| 59 | |
69 | |
|
|
70 | _libtool_atom="sys-devel/libtool" |
|
|
71 | if [[ -n ${WANT_LIBTOOL} ]] ; then |
|
|
72 | case ${WANT_LIBTOOL} in |
|
|
73 | none) _libtool_atom="" ;; |
|
|
74 | latest) ;; |
|
|
75 | *) die "Invalid WANT_LIBTOOL value '${WANT_LIBTOOL}'" ;; |
|
|
76 | esac |
|
|
77 | export WANT_LIBTOOL |
|
|
78 | fi |
|
|
79 | |
| 60 | AUTOTOOLS_DEPEND="${_automake_atom} ${_autoconf_atom}" |
80 | AUTOTOOLS_DEPEND="${_automake_atom} ${_autoconf_atom} ${_libtool_atom}" |
| 61 | [[ ${CATEGORY}/${PN} != "sys-devel/libtool" ]] && AUTOTOOLS_DEPEND="${AUTOTOOLS_DEPEND} >=sys-devel/libtool-2.2.6b" |
|
|
| 62 | RDEPEND="" |
81 | RDEPEND="" |
| 63 | |
82 | |
| 64 | # @ECLASS-VARIABLE: AUTOTOOLS_AUTO_DEPEND |
83 | # @ECLASS-VARIABLE: AUTOTOOLS_AUTO_DEPEND |
| 65 | # @DESCRIPTION: |
84 | # @DESCRIPTION: |
| 66 | # Set to 'no' to disable automatically adding to DEPEND. This lets |
85 | # Set to 'no' to disable automatically adding to DEPEND. This lets |
| … | |
… | |
| 72 | fi |
91 | fi |
| 73 | |
92 | |
| 74 | unset _automake_atom _autoconf_atom |
93 | unset _automake_atom _autoconf_atom |
| 75 | |
94 | |
| 76 | # @ECLASS-VARIABLE: AM_OPTS |
95 | # @ECLASS-VARIABLE: AM_OPTS |
|
|
96 | # @DEFAULT_UNSET |
| 77 | # @DESCRIPTION: |
97 | # @DESCRIPTION: |
| 78 | # Additional options to pass to automake during |
98 | # Additional options to pass to automake during |
| 79 | # eautoreconf call. |
99 | # eautoreconf call. |
| 80 | |
100 | |
| 81 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
101 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
|
|
102 | # @DEFAULT_UNSET |
| 82 | # @DESCRIPTION: |
103 | # @DESCRIPTION: |
| 83 | # Don't run elibtoolize command if set to 'yes', |
104 | # Don't run elibtoolize command if set to 'yes', |
| 84 | # useful when elibtoolize needs to be ran with |
105 | # useful when elibtoolize needs to be ran with |
| 85 | # particular options |
106 | # particular options |
| 86 | |
107 | |
| 87 | # XXX: M4DIR should be deprecated |
|
|
| 88 | # @ECLASS-VARIABLE: AT_M4DIR |
108 | # @ECLASS-VARIABLE: AT_M4DIR |
| 89 | # @DESCRIPTION: |
109 | # @DESCRIPTION: |
| 90 | # Additional director(y|ies) aclocal should search |
110 | # Additional director(y|ies) aclocal should search |
| 91 | : ${AT_M4DIR:=${M4DIR}} |
111 | : ${AT_M4DIR:=} |
| 92 | AT_GNUCONF_UPDATE="no" |
|
|
| 93 | |
112 | |
|
|
113 | # @ECLASS-VARIABLE: AT_SYS_M4DIR |
|
|
114 | # @INTERNAL |
|
|
115 | # @DESCRIPTION: |
|
|
116 | # For system integrators, a list of additional aclocal search paths. |
|
|
117 | # This variable gets eval-ed, so you can use variables in the definition |
|
|
118 | # that may not be valid until eautoreconf & friends are run. |
|
|
119 | : ${AT_SYS_M4DIR:=} |
| 94 | |
120 | |
| 95 | # @FUNCTION: eautoreconf |
121 | # @FUNCTION: eautoreconf |
| 96 | # @DESCRIPTION: |
122 | # @DESCRIPTION: |
| 97 | # This function mimes the behavior of autoreconf, but uses the different |
123 | # This function mimes the behavior of autoreconf, but uses the different |
| 98 | # eauto* functions to run the tools. It doesn't accept parameters, but |
124 | # eauto* functions to run the tools. It doesn't accept parameters, but |
| … | |
… | |
| 131 | |
157 | |
| 132 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
158 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
| 133 | |
159 | |
| 134 | # Call it here to prevent failures due to elibtoolize called _before_ |
160 | # Call it here to prevent failures due to elibtoolize called _before_ |
| 135 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
161 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
| 136 | S=${PWD} elibtoolize |
162 | S=${PWD} elibtoolize --force |
| 137 | |
163 | |
| 138 | return 0 |
164 | return 0 |
|
|
165 | } |
|
|
166 | |
|
|
167 | # @FUNCTION: eaclocal_amflags |
|
|
168 | # @DESCRIPTION: |
|
|
169 | # Extract the ACLOCAL_AMFLAGS value from the Makefile.am and try to handle |
|
|
170 | # (most) of the crazy crap that people throw at us. |
|
|
171 | eaclocal_amflags() { |
|
|
172 | local aclocal_opts amflags_file |
|
|
173 | |
|
|
174 | for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do |
|
|
175 | [[ -e ${amflags_file} ]] || continue |
|
|
176 | # setup the env in case the pkg does something crazy |
|
|
177 | # in their ACLOCAL_AMFLAGS. like run a shell script |
|
|
178 | # which turns around and runs autotools. #365401 |
|
|
179 | # or split across multiple lines. #383525 |
|
|
180 | autotools_env_setup |
|
|
181 | aclocal_opts=$(sed -n \ |
|
|
182 | "/^ACLOCAL_AMFLAGS[[:space:]]*=/{ \ |
|
|
183 | # match the first line |
|
|
184 | s:[^=]*=::p; \ |
|
|
185 | # then gobble up all escaped lines |
|
|
186 | : nextline /\\\\$/{ n; p; b nextline; } \ |
|
|
187 | }" ${amflags_file}) |
|
|
188 | eval aclocal_opts=\""${aclocal_opts}"\" |
|
|
189 | break |
|
|
190 | done |
|
|
191 | |
|
|
192 | echo ${aclocal_opts} |
| 139 | } |
193 | } |
| 140 | |
194 | |
| 141 | # @FUNCTION: eaclocal |
195 | # @FUNCTION: eaclocal |
| 142 | # @DESCRIPTION: |
196 | # @DESCRIPTION: |
| 143 | # These functions runs the autotools using autotools_run_tool with the |
197 | # These functions runs the autotools using autotools_run_tool with the |
| 144 | # specified parametes. The name of the tool run is the same of the function |
198 | # specified parametes. The name of the tool run is the same of the function |
| 145 | # without e prefix. |
199 | # without e prefix. |
| 146 | # They also force installing the support files for safety. |
200 | # They also force installing the support files for safety. |
| 147 | # Respects AT_M4DIR for additional directories to search for macro's. |
201 | # Respects AT_M4DIR for additional directories to search for macro's. |
| 148 | eaclocal() { |
202 | eaclocal() { |
| 149 | local aclocal_opts |
|
|
| 150 | |
|
|
| 151 | local amflags_file |
|
|
| 152 | for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do |
|
|
| 153 | [[ -e ${amflags_file} ]] || continue |
|
|
| 154 | aclocal_opts=$(sed -n '/^ACLOCAL_AMFLAGS[[:space:]]*=/s:[^=]*=::p' ${amflags_file}) |
|
|
| 155 | eval aclocal_opts=\"${aclocal_opts}\" |
|
|
| 156 | break |
|
|
| 157 | done |
|
|
| 158 | |
|
|
| 159 | if [[ -n ${AT_M4DIR} ]] ; then |
|
|
| 160 | for x in ${AT_M4DIR} ; do |
|
|
| 161 | case "${x}" in |
|
|
| 162 | "-I") |
|
|
| 163 | # We handle it below |
|
|
| 164 | ;; |
|
|
| 165 | *) |
|
|
| 166 | [[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist" |
|
|
| 167 | aclocal_opts="${aclocal_opts} -I ${x}" |
|
|
| 168 | ;; |
|
|
| 169 | esac |
|
|
| 170 | done |
|
|
| 171 | fi |
|
|
| 172 | |
|
|
| 173 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
203 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
| 174 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
204 | autotools_run_tool --at-m4flags aclocal "$@" $(eaclocal_amflags) |
| 175 | } |
205 | } |
| 176 | |
206 | |
| 177 | # @FUNCTION: _elibtoolize |
207 | # @FUNCTION: _elibtoolize |
| 178 | # @DESCRIPTION: |
208 | # @DESCRIPTION: |
| 179 | # Runs libtoolize. Note the '_' prefix .. to not collide with elibtoolize() from |
209 | # Runs libtoolize. Note the '_' prefix .. to not collide with elibtoolize() from |
| … | |
… | |
| 198 | # @DESCRIPTION: |
228 | # @DESCRIPTION: |
| 199 | # Runs autoheader. |
229 | # Runs autoheader. |
| 200 | eautoheader() { |
230 | eautoheader() { |
| 201 | # Check if we should run autoheader |
231 | # Check if we should run autoheader |
| 202 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
232 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
| 203 | NO_FAIL=1 autotools_run_tool autoheader "$@" |
233 | autotools_run_tool --at-no-fail --at-m4flags autoheader "$@" |
| 204 | } |
234 | } |
| 205 | |
235 | |
| 206 | # @FUNCTION: eautoconf |
236 | # @FUNCTION: eautoconf |
| 207 | # @DESCRIPTION: |
237 | # @DESCRIPTION: |
| 208 | # Runs autoconf. |
238 | # Runs autoconf. |
| … | |
… | |
| 212 | eerror "No configure.{ac,in} present in '${PWD}'!" |
242 | eerror "No configure.{ac,in} present in '${PWD}'!" |
| 213 | echo |
243 | echo |
| 214 | die "No configure.{ac,in} present!" |
244 | die "No configure.{ac,in} present!" |
| 215 | fi |
245 | fi |
| 216 | |
246 | |
| 217 | autotools_run_tool autoconf "$@" |
247 | autotools_run_tool --at-m4flags autoconf "$@" |
| 218 | } |
248 | } |
| 219 | |
249 | |
| 220 | # @FUNCTION: eautomake |
250 | # @FUNCTION: eautomake |
| 221 | # @DESCRIPTION: |
251 | # @DESCRIPTION: |
| 222 | # Runs automake. |
252 | # Runs automake. |
| 223 | eautomake() { |
253 | eautomake() { |
| 224 | local extra_opts |
254 | local extra_opts |
| 225 | local makefile_name |
255 | local makefile_name |
| 226 | |
256 | |
|
|
257 | # Some packages might need to skip automake |
|
|
258 | # OpenLDAP is a good example. It does not use automake (all the .in files are |
|
|
259 | # handwritten), but it does AM_INIT_AUTOMAKE in configure.in, for all the |
|
|
260 | # other macros involved |
|
|
261 | [[ ${WANT_AUTOMAKE} == "none" ]] && return 0 |
|
|
262 | |
| 227 | # Run automake if: |
263 | # Run automake if: |
| 228 | # - a Makefile.am type file exists |
264 | # - a Makefile.am type file exists |
| 229 | # - a Makefile.in type file exists and the configure |
|
|
| 230 | # script is using the AM_INIT_AUTOMAKE directive |
265 | # - the configure script is using the AM_INIT_AUTOMAKE directive |
| 231 | for makefile_name in {GNUmakefile,{M,m}akefile}.{am,in} "" ; do |
266 | for makefile_name in {GNUmakefile,{M,m}akefile}.am "" ; do |
| 232 | [[ -f ${makefile_name} ]] && break |
267 | [[ -f ${makefile_name} ]] && break |
| 233 | done |
268 | done |
| 234 | [[ -z ${makefile_name} ]] && return 0 |
|
|
| 235 | |
269 | |
| 236 | if [[ ${makefile_name} == *.in ]] ; then |
270 | if [[ -z ${makefile_name} ]] ; then |
| 237 | if ! grep -qs AM_INIT_AUTOMAKE configure.?? ; then |
271 | if ! grep -qs AM_INIT_AUTOMAKE configure.?? ; then |
| 238 | return 0 |
272 | return 0 |
| 239 | fi |
273 | fi |
| 240 | |
274 | |
| 241 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
275 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
| … | |
… | |
| 253 | eautoreconf |
287 | eautoreconf |
| 254 | return 0 |
288 | return 0 |
| 255 | fi |
289 | fi |
| 256 | fi |
290 | fi |
| 257 | |
291 | |
| 258 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS ]] \ |
292 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS && -f README ]] \ |
| 259 | || extra_opts="${extra_opts} --foreign" |
293 | || extra_opts="${extra_opts} --foreign" |
| 260 | |
294 | |
| 261 | # --force-missing seems not to be recognized by some flavours of automake |
295 | # --force-missing seems not to be recognized by some flavours of automake |
| 262 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
296 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 263 | } |
297 | } |
| … | |
… | |
| 267 | # Runs autopoint (from the gettext package). |
301 | # Runs autopoint (from the gettext package). |
| 268 | eautopoint() { |
302 | eautopoint() { |
| 269 | autotools_run_tool autopoint "$@" |
303 | autotools_run_tool autopoint "$@" |
| 270 | } |
304 | } |
| 271 | |
305 | |
|
|
306 | # @FUNCTION: config_rpath_update |
|
|
307 | # @USAGE: [destination] |
|
|
308 | # @DESCRIPTION: |
|
|
309 | # Some packages utilize the config.rpath helper script, but don't |
|
|
310 | # use gettext directly. So we have to copy it in manually since |
|
|
311 | # we can't let `autopoint` do it for us. |
|
|
312 | config_rpath_update() { |
|
|
313 | local dst src=$(type -P gettext | sed 's:bin/gettext:share/gettext/config.rpath:') |
|
|
314 | |
|
|
315 | [[ $# -eq 0 ]] && set -- $(find -name config.rpath) |
|
|
316 | [[ $# -eq 0 ]] && return 0 |
|
|
317 | |
|
|
318 | einfo "Updating all config.rpath files" |
|
|
319 | for dst in "$@" ; do |
|
|
320 | einfo " ${dst}" |
|
|
321 | cp "${src}" "${dst}" || die |
|
|
322 | done |
|
|
323 | } |
|
|
324 | |
| 272 | # Internal function to run an autotools' tool |
325 | # Internal function to run an autotools' tool |
| 273 | autotools_run_tool() { |
326 | autotools_env_setup() { |
| 274 | if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then |
|
|
| 275 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
|
|
| 276 | fi |
|
|
| 277 | |
|
|
| 278 | # We do the “latest” → version switch here because it solves |
327 | # We do the "latest" → version switch here because it solves |
| 279 | # possible order problems, see bug #270010 as an example. |
328 | # possible order problems, see bug #270010 as an example. |
| 280 | if [[ ${WANT_AUTOMAKE} == "latest" ]]; then |
329 | if [[ ${WANT_AUTOMAKE} == "latest" ]]; then |
| 281 | local pv |
330 | local pv |
| 282 | for pv in ${_LATEST_AUTOMAKE} ; do |
331 | for pv in ${_LATEST_AUTOMAKE} ; do |
| 283 | # has_version respects ROOT, but in this case, we don't want it to, |
332 | # has_version respects ROOT, but in this case, we don't want it to, |
| … | |
… | |
| 286 | done |
335 | done |
| 287 | [[ ${WANT_AUTOMAKE} == "latest" ]] && \ |
336 | [[ ${WANT_AUTOMAKE} == "latest" ]] && \ |
| 288 | die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}" |
337 | die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}" |
| 289 | fi |
338 | fi |
| 290 | [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 |
339 | [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 |
|
|
340 | } |
|
|
341 | autotools_run_tool() { |
|
|
342 | # Process our own internal flags first |
|
|
343 | local autofail=true m4flags=false |
|
|
344 | while [[ -n $1 ]] ; do |
|
|
345 | case $1 in |
|
|
346 | --at-no-fail) autofail=false;; |
|
|
347 | --at-m4flags) m4flags=true;; |
|
|
348 | # whatever is left goes to the actual tool |
|
|
349 | *) break;; |
|
|
350 | esac |
|
|
351 | shift |
|
|
352 | done |
|
|
353 | |
|
|
354 | if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then |
|
|
355 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
|
|
356 | fi |
|
|
357 | |
|
|
358 | autotools_env_setup |
| 291 | |
359 | |
| 292 | local STDERR_TARGET="${T}/$1.out" |
360 | local STDERR_TARGET="${T}/$1.out" |
| 293 | # most of the time, there will only be one run, but if there are |
361 | # most of the time, there will only be one run, but if there are |
| 294 | # more, make sure we get unique log filenames |
362 | # more, make sure we get unique log filenames |
| 295 | if [[ -e ${STDERR_TARGET} ]] ; then |
363 | if [[ -e ${STDERR_TARGET} ]] ; then |
|
|
364 | local i=1 |
|
|
365 | while :; do |
| 296 | STDERR_TARGET="${T}/$1-$$.out" |
366 | STDERR_TARGET="${T}/$1-${i}.out" |
|
|
367 | [[ -e ${STDERR_TARGET} ]] || break |
|
|
368 | : $(( i++ )) |
|
|
369 | done |
|
|
370 | fi |
|
|
371 | |
|
|
372 | if ${m4flags} ; then |
|
|
373 | set -- "${1}" $(autotools_m4dir_include) "${@:2}" $(autotools_m4sysdir_include) |
| 297 | fi |
374 | fi |
| 298 | |
375 | |
| 299 | printf "***** $1 *****\n***** PWD: ${PWD}\n***** $*\n\n" > "${STDERR_TARGET}" |
376 | printf "***** $1 *****\n***** PWD: ${PWD}\n***** $*\n\n" > "${STDERR_TARGET}" |
| 300 | |
377 | |
| 301 | ebegin "Running $@" |
378 | ebegin "Running $@" |
| 302 | "$@" >> "${STDERR_TARGET}" 2>&1 |
379 | "$@" >> "${STDERR_TARGET}" 2>&1 |
| 303 | eend $? |
380 | if ! eend $? && ${autofail} ; then |
| 304 | |
|
|
| 305 | if [[ $? != 0 && ${NO_FAIL} != 1 ]] ; then |
|
|
| 306 | echo |
381 | echo |
| 307 | eerror "Failed Running $1 !" |
382 | eerror "Failed Running $1 !" |
| 308 | eerror |
383 | eerror |
| 309 | eerror "Include in your bugreport the contents of:" |
384 | eerror "Include in your bugreport the contents of:" |
| 310 | eerror |
385 | eerror |
| … | |
… | |
| 317 | # Internal function to check for support |
392 | # Internal function to check for support |
| 318 | autotools_check_macro() { |
393 | autotools_check_macro() { |
| 319 | [[ -f configure.ac || -f configure.in ]] || return 0 |
394 | [[ -f configure.ac || -f configure.in ]] || return 0 |
| 320 | local macro |
395 | local macro |
| 321 | for macro ; do |
396 | for macro ; do |
| 322 | WANT_AUTOCONF="2.5" autoconf --trace="${macro}" 2>/dev/null |
397 | WANT_AUTOCONF="2.5" autoconf $(autotools_m4dir_include) --trace="${macro}" 2>/dev/null |
| 323 | done |
398 | done |
| 324 | return 0 |
399 | return 0 |
| 325 | } |
400 | } |
| 326 | |
401 | |
|
|
402 | # Internal function to look for a macro and extract its value |
|
|
403 | autotools_check_macro_val() { |
|
|
404 | local macro=$1 scan_out |
|
|
405 | |
|
|
406 | autotools_check_macro "${macro}" | \ |
|
|
407 | gawk -v macro="${macro}" \ |
|
|
408 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
|
|
409 | if (match($0, macro ":(.*)$", res)) |
|
|
410 | print res[1] |
|
|
411 | }' | uniq |
|
|
412 | |
|
|
413 | return 0 |
|
|
414 | } |
|
|
415 | |
| 327 | # Internal function to get additional subdirs to configure |
416 | # Internal function to get additional subdirs to configure |
| 328 | autotools_get_subdirs() { |
417 | autotools_get_subdirs() { autotools_check_macro_val AC_CONFIG_SUBDIRS ; } |
| 329 | local subdirs_scan_out |
418 | autotools_get_auxdir() { autotools_check_macro_val AC_CONFIG_AUX_DIR ; } |
| 330 | |
419 | |
| 331 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
420 | _autotools_m4dir_include() { |
| 332 | [[ -n ${subdirs_scan_out} ]] || return 0 |
421 | local x include_opts |
| 333 | |
422 | |
| 334 | echo "${subdirs_scan_out}" | gawk \ |
423 | for x in "$@" ; do |
| 335 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
424 | case ${x} in |
| 336 | if (match($0, /AC_CONFIG_SUBDIRS:(.*)$/, res)) |
425 | # We handle it below |
| 337 | print res[1] |
426 | -I) ;; |
| 338 | }' | uniq |
427 | *) |
|
|
428 | [[ ! -d ${x} ]] && ewarn "autotools.eclass: '${x}' does not exist" |
|
|
429 | include_opts+=" -I ${x}" |
|
|
430 | ;; |
|
|
431 | esac |
|
|
432 | done |
| 339 | |
433 | |
| 340 | return 0 |
434 | echo ${include_opts} |
| 341 | } |
435 | } |
|
|
436 | autotools_m4dir_include() { _autotools_m4dir_include ${AT_M4DIR} ; } |
|
|
437 | autotools_m4sysdir_include() { _autotools_m4dir_include $(eval echo ${AT_SYS_M4DIR}) ; } |
| 342 | |
438 | |
| 343 | autotools_get_auxdir() { |
439 | fi |
| 344 | local auxdir_scan_out |
|
|
| 345 | |
|
|
| 346 | auxdir_scan_out=$(autotools_check_macro "AC_CONFIG_AUX_DIR") |
|
|
| 347 | [[ -n ${auxdir_scan_out} ]] || return 0 |
|
|
| 348 | |
|
|
| 349 | echo ${auxdir_scan_out} | gawk \ |
|
|
| 350 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
|
|
| 351 | if (match($0, /AC_CONFIG_AUX_DIR:(.*)$/, res)) |
|
|
| 352 | print res[1] |
|
|
| 353 | }' | uniq |
|
|
| 354 | |
|
|
| 355 | return 0 |
|
|
| 356 | } |
|
|