1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2010 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.51 2006/10/17 19:17:31 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.99 2010/07/06 18:55:50 vapier Exp $ |
4 | # |
4 | |
5 | # Author: Diego Pettenò <flameeyes@gentoo.org> |
5 | # @ECLASS: autotools.eclass |
6 | # Enhancements: Martin Schlemmer <azarah@gentoo.org> |
6 | # @MAINTAINER: |
7 | # |
7 | # base-system@gentoo.org |
|
|
8 | # @BLURB: Regenerates auto* build scripts |
|
|
9 | # @DESCRIPTION: |
8 | # This eclass is for handling autotooled software packages that |
10 | # This eclass is for safely handling autotooled software packages that need to |
9 | # needs to regenerate their build scripts. |
11 | # regenerate their build scripts. All functions will abort in case of errors. |
10 | # |
12 | # |
11 | # NB: If you add anything, please comment it! |
13 | # NB: If you add anything, please comment it! |
12 | |
14 | |
13 | inherit eutils libtool |
15 | inherit eutils libtool |
14 | |
16 | |
|
|
17 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
|
|
18 | # @DESCRIPTION: |
|
|
19 | # The major version of autoconf your package needs |
|
|
20 | : ${WANT_AUTOCONF:=latest} |
|
|
21 | |
|
|
22 | # @ECLASS-VARIABLE: WANT_AUTOMAKE |
|
|
23 | # @DESCRIPTION: |
|
|
24 | # The major version of automake your package needs |
|
|
25 | : ${WANT_AUTOMAKE:=latest} |
|
|
26 | |
|
|
27 | # @ECLASS-VARIABLE: _LATEST_AUTOMAKE |
|
|
28 | # @DESCRIPTION: |
|
|
29 | # CONSTANT! |
|
|
30 | # 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, |
|
|
32 | # then circular dependencies may arise during emerge @system bootstraps. |
|
|
33 | # Do NOT change this variable in your ebuilds! |
|
|
34 | _LATEST_AUTOMAKE='1.11' |
|
|
35 | |
15 | _automake_atom="sys-devel/automake" |
36 | _automake_atom="sys-devel/automake" |
16 | _autoconf_atom="sys-devel/autoconf" |
37 | _autoconf_atom="sys-devel/autoconf" |
17 | if [[ -n ${WANT_AUTOMAKE} ]] && [[ ${WANT_AUTOMAKE} != "latest" ]]; then |
38 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
18 | case ${WANT_AUTOMAKE} in |
39 | case ${WANT_AUTOMAKE} in |
19 | # workaround while we have different versions of automake in arch and ~arch |
40 | none) _automake_atom="" ;; # some packages don't require automake at all |
20 | latest) _automake_atom="|| ( =sys-devel/automake-1.10* =sys-devel/automake-1.9* )" ;; |
41 | # if you change the "latest" version here, change also autotools_run_tool |
|
|
42 | # this MUST reflect the latest stable major version for each arch! |
|
|
43 | latest) _automake_atom="|| ( `printf '=sys-devel/automake-%s* ' ${_LATEST_AUTOMAKE}` )" ;; |
21 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
44 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
22 | esac |
45 | esac |
|
|
46 | export WANT_AUTOMAKE |
23 | fi |
47 | fi |
24 | |
48 | |
25 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
49 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
26 | case ${WANT_AUTOCONF} in |
50 | case ${WANT_AUTOCONF} in |
|
|
51 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
27 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
52 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
|
|
53 | # if you change the “latest” version here, change also autotools_run_tool |
28 | latest | 2.5) _autoconf_atom=">=sys-devel/autoconf-2.59" ;; |
54 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.61" ;; |
|
|
55 | *) _autoconf_atom="INCORRECT-WANT_AUTOCONF-SETTING-IN-EBUILD" ;; |
29 | esac |
56 | esac |
|
|
57 | export WANT_AUTOCONF |
30 | fi |
58 | fi |
31 | DEPEND="${_automake_atom} |
59 | |
32 | ${_autoconf_atom} |
60 | AUTOTOOLS_DEPEND="${_automake_atom} ${_autoconf_atom}" |
33 | sys-devel/libtool" |
61 | [[ ${CATEGORY}/${PN} != "sys-devel/libtool" ]] && AUTOTOOLS_DEPEND="${AUTOTOOLS_DEPEND} >=sys-devel/libtool-2.2.6b" |
34 | RDEPEND="" |
62 | RDEPEND="" |
|
|
63 | |
|
|
64 | # @ECLASS-VARIABLE: AUTOTOOLS_AUTO_DEPEND |
|
|
65 | # @DESCRIPTION: |
|
|
66 | # Set to 'no' to disable automatically adding to DEPEND. This lets |
|
|
67 | # ebuilds former conditional depends by using ${AUTOTOOLS_DEPEND} in |
|
|
68 | # their own DEPEND string. |
|
|
69 | : ${AUTOTOOLS_AUTO_DEPEND:=yes} |
|
|
70 | if [[ ${AUTOTOOLS_AUTO_DEPEND} != "no" ]] ; then |
|
|
71 | DEPEND=${AUTOTOOLS_DEPEND} |
|
|
72 | fi |
|
|
73 | |
35 | unset _automake_atom _autoconf_atom |
74 | unset _automake_atom _autoconf_atom |
36 | |
75 | |
37 | # Variables: |
76 | # @ECLASS-VARIABLE: AM_OPTS |
38 | # |
77 | # @DESCRIPTION: |
39 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
|
|
40 | # AM_OPTS - Additional options to pass to automake during |
78 | # Additional options to pass to automake during |
41 | # eautoreconf call. |
79 | # eautoreconf call. |
42 | |
80 | |
43 | # Functions: |
81 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
44 | # |
82 | # @DESCRIPTION: |
45 | # eautoreconf() - Should do a full autoreconf - normally what most people |
83 | # Don't run elibtoolize command if set to 'yes', |
46 | # will be interested in. Also should handle additional |
84 | # useful when elibtoolize needs to be ran with |
47 | # directories specified by AC_CONFIG_SUBDIRS. |
85 | # particular options |
48 | # eaclocal() - Runs aclocal. Respects AT_M4DIR for additional directories |
|
|
49 | # to search for macro's. |
|
|
50 | # _elibtoolize() - Runs libtoolize. Note the '_' prefix .. to not collide |
|
|
51 | # with elibtoolize() from libtool.eclass |
|
|
52 | # eautoconf - Runs autoconf. |
|
|
53 | # eautoheader - Runs autoheader. |
|
|
54 | # eautomake - Runs automake |
|
|
55 | # |
|
|
56 | |
86 | |
57 | # XXX: M4DIR should be depreciated |
87 | # XXX: M4DIR should be deprecated |
|
|
88 | # @ECLASS-VARIABLE: AT_M4DIR |
|
|
89 | # @DESCRIPTION: |
|
|
90 | # Additional director(y|ies) aclocal should search |
58 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
91 | : ${AT_M4DIR:=${M4DIR}} |
59 | AT_GNUCONF_UPDATE="no" |
92 | AT_GNUCONF_UPDATE="no" |
60 | |
93 | |
61 | |
94 | |
|
|
95 | # @FUNCTION: eautoreconf |
|
|
96 | # @DESCRIPTION: |
62 | # This function mimes the behavior of autoreconf, but uses the different |
97 | # This function mimes the behavior of autoreconf, but uses the different |
63 | # eauto* functions to run the tools. It doesn't accept parameters, but |
98 | # eauto* functions to run the tools. It doesn't accept parameters, but |
64 | # the directory with include files can be specified with AT_M4DIR variable. |
99 | # the directory with include files can be specified with AT_M4DIR variable. |
|
|
100 | # |
|
|
101 | # Should do a full autoreconf - normally what most people will be interested in. |
|
|
102 | # Also should handle additional directories specified by AC_CONFIG_SUBDIRS. |
65 | eautoreconf() { |
103 | eautoreconf() { |
66 | local pwd=$(pwd) x auxdir |
104 | local x auxdir g |
67 | |
105 | |
68 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
106 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
69 | # Take care of subdirs |
107 | # Take care of subdirs |
70 | for x in $(autotools_get_subdirs); do |
108 | for x in $(autotools_get_subdirs); do |
71 | if [[ -d ${x} ]] ; then |
109 | if [[ -d ${x} ]] ; then |
72 | cd "${x}" |
110 | pushd "${x}" >/dev/null |
73 | AT_NOELIBTOOLIZE="yes" eautoreconf |
111 | AT_NOELIBTOOLIZE="yes" eautoreconf |
74 | cd "${pwd}" |
112 | popd >/dev/null |
75 | fi |
113 | fi |
76 | done |
114 | done |
77 | fi |
115 | fi |
78 | |
116 | |
79 | auxdir=$(autotools_get_auxdir) |
117 | auxdir=$(autotools_get_auxdir) |
80 | |
118 | |
81 | einfo "Running eautoreconf in '$(pwd)' ..." |
119 | einfo "Running eautoreconf in '${PWD}' ..." |
82 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
120 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
83 | eaclocal |
121 | eaclocal |
|
|
122 | [[ ${CHOST} == *-darwin* ]] && g=g |
|
|
123 | if ${LIBTOOLIZE:-${g}libtoolize} -n --install >& /dev/null ; then |
|
|
124 | _elibtoolize --copy --force --install |
|
|
125 | else |
84 | _elibtoolize --copy --force |
126 | _elibtoolize --copy --force |
|
|
127 | fi |
85 | eautoconf |
128 | eautoconf |
86 | eautoheader |
129 | eautoheader |
87 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
130 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
88 | |
131 | |
89 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
132 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
90 | |
133 | |
91 | # Call it here to prevent failures due to elibtoolize called _before_ |
134 | # Call it here to prevent failures due to elibtoolize called _before_ |
92 | # eautoreconf. |
135 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
93 | elibtoolize |
136 | S=${PWD} elibtoolize |
94 | |
137 | |
95 | return 0 |
138 | return 0 |
96 | } |
139 | } |
97 | |
140 | |
|
|
141 | # @FUNCTION: eaclocal |
|
|
142 | # @DESCRIPTION: |
98 | # These functions runs the autotools using autotools_run_tool with the |
143 | # These functions runs the autotools using autotools_run_tool with the |
99 | # specified parametes. The name of the tool run is the same of the function |
144 | # specified parametes. The name of the tool run is the same of the function |
100 | # without e prefix. |
145 | # without e prefix. |
101 | # They also force installing the support files for safety. |
146 | # They also force installing the support files for safety. |
|
|
147 | # Respects AT_M4DIR for additional directories to search for macro's. |
102 | eaclocal() { |
148 | eaclocal() { |
103 | local aclocal_opts |
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 |
104 | |
158 | |
105 | if [[ -n ${AT_M4DIR} ]] ; then |
159 | if [[ -n ${AT_M4DIR} ]] ; then |
106 | for x in ${AT_M4DIR} ; do |
160 | for x in ${AT_M4DIR} ; do |
107 | case "${x}" in |
161 | case "${x}" in |
108 | "-I") |
162 | "-I") |
… | |
… | |
114 | ;; |
168 | ;; |
115 | esac |
169 | esac |
116 | done |
170 | done |
117 | fi |
171 | fi |
118 | |
172 | |
119 | autotools_set_versions |
|
|
120 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
173 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
121 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
174 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
122 | } |
175 | } |
123 | |
176 | |
|
|
177 | # @FUNCTION: _elibtoolize |
|
|
178 | # @DESCRIPTION: |
|
|
179 | # Runs libtoolize. Note the '_' prefix .. to not collide with elibtoolize() from |
|
|
180 | # libtool.eclass. |
124 | _elibtoolize() { |
181 | _elibtoolize() { |
125 | local opts |
182 | local opts g= |
126 | local lttest |
|
|
127 | |
183 | |
128 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
184 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
129 | # check for both it and the current AC_PROG_LIBTOOL) |
185 | # check for both it and the current AC_PROG_LIBTOOL) |
130 | lttest="$(autotools_check_macro "AC_PROG_LIBTOOL")$(autotools_check_macro "AM_PROG_LIBTOOL")" |
186 | [[ -n $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] || return 0 |
131 | [[ -n $lttest ]] || return 0 |
|
|
132 | |
187 | |
133 | [[ -f Makefile.am ]] && opts="--automake" |
188 | [[ -f GNUmakefile.am || -f Makefile.am ]] && opts="--automake" |
134 | |
189 | |
135 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
190 | [[ ${CHOST} == *-darwin* ]] && g=g |
136 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
191 | autotools_run_tool ${LIBTOOLIZE:-${g}libtoolize} "$@" ${opts} |
137 | |
192 | |
138 | # Need to rerun aclocal |
193 | # Need to rerun aclocal |
139 | eaclocal |
194 | eaclocal |
140 | } |
195 | } |
141 | |
196 | |
|
|
197 | # @FUNCTION: eautoheader |
|
|
198 | # @DESCRIPTION: |
|
|
199 | # Runs autoheader. |
142 | eautoheader() { |
200 | eautoheader() { |
143 | # Check if we should run autoheader |
201 | # Check if we should run autoheader |
144 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
202 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
145 | autotools_set_versions |
|
|
146 | autotools_run_tool autoheader "$@" |
203 | NO_FAIL=1 autotools_run_tool autoheader "$@" |
147 | } |
204 | } |
148 | |
205 | |
|
|
206 | # @FUNCTION: eautoconf |
|
|
207 | # @DESCRIPTION: |
|
|
208 | # Runs autoconf. |
149 | eautoconf() { |
209 | eautoconf() { |
150 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
210 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
151 | echo |
211 | echo |
152 | eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!" |
212 | eerror "No configure.{ac,in} present in '${PWD}'!" |
153 | echo |
213 | echo |
154 | die "No configure.{ac,in} present!" |
214 | die "No configure.{ac,in} present!" |
155 | fi |
215 | fi |
156 | |
216 | |
157 | autotools_set_versions |
|
|
158 | autotools_run_tool autoconf "$@" |
217 | autotools_run_tool autoconf "$@" |
159 | } |
218 | } |
160 | |
219 | |
|
|
220 | # @FUNCTION: eautomake |
|
|
221 | # @DESCRIPTION: |
|
|
222 | # Runs automake. |
161 | eautomake() { |
223 | eautomake() { |
162 | local extra_opts |
224 | local extra_opts |
|
|
225 | local makefile_name |
163 | |
226 | |
|
|
227 | # Run automake if: |
|
|
228 | # - 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 |
|
|
231 | for makefile_name in {GNUmakefile,{M,m}akefile}.{am,in} "" ; do |
|
|
232 | [[ -f ${makefile_name} ]] && break |
|
|
233 | done |
164 | [[ -f Makefile.am ]] || return 0 |
234 | [[ -z ${makefile_name} ]] && return 0 |
165 | |
235 | |
166 | autotools_set_versions |
236 | if [[ ${makefile_name} == *.in ]] ; then |
|
|
237 | if ! grep -qs AM_INIT_AUTOMAKE configure.?? ; then |
|
|
238 | return 0 |
|
|
239 | fi |
|
|
240 | |
167 | if [[ -z ${FROM_EAUTORECONF} && -f Makefile.in ]]; then |
241 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
168 | local used_automake |
242 | local used_automake |
169 | local installed_automake |
243 | local installed_automake |
170 | |
244 | |
171 | installed_automake=$(automake --version | head -n 1 | \ |
245 | installed_automake=$(WANT_AUTOMAKE= automake --version | head -n 1 | \ |
172 | sed -e 's:.*(GNU automake) ::') |
246 | sed -e 's:.*(GNU automake) ::') |
173 | used_automake=$(head -n 1 < Makefile.in | \ |
247 | used_automake=$(head -n 1 < ${makefile_name%.am}.in | \ |
174 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
248 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
175 | |
249 | |
176 | if [[ ${installed_automake} != ${used_automake} ]]; then |
250 | if [[ ${installed_automake} != ${used_automake} ]]; then |
177 | einfo "Automake used for the package (${used_automake}) differs from" |
251 | einfo "Automake used for the package (${used_automake}) differs from" |
178 | einfo "the installed version (${installed_automake})." |
252 | einfo "the installed version (${installed_automake})." |
… | |
… | |
186 | |
260 | |
187 | # --force-missing seems not to be recognized by some flavours of automake |
261 | # --force-missing seems not to be recognized by some flavours of automake |
188 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
262 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
189 | } |
263 | } |
190 | |
264 | |
191 | autotools_set_versions() { |
265 | # @FUNCTION: eautopoint |
192 | [[ -n ${autotools_version_sets} ]] && return 0 |
266 | # @DESCRIPTION: |
193 | |
267 | # Runs autopoint (from the gettext package). |
194 | if [[ -n ${WANT_AUTOCONF} ]]; then |
268 | eautopoint() { |
195 | [[ ${WANT_AUTOCONF} == "latest" ]] && WANT_AUTOCONF="2.5" |
269 | autotools_run_tool autopoint "$@" |
196 | export WANT_AUTOCONF |
|
|
197 | einfo "Requested autoconf ${WANT_AUTOCONF}" |
|
|
198 | einfo "Using $(autoconf --version 2>/dev/null | head -n 1)" |
|
|
199 | einfo "Using $(autoheader --version 2>/dev/null | head -n 1)" |
|
|
200 | fi |
|
|
201 | |
|
|
202 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
|
|
203 | if [[ ${WANT_AUTOMAKE} == "latest" ]]; then |
|
|
204 | # Consider starting from 1.9, as that is stable everywhere. |
|
|
205 | has_version '=sys-devel/automake-1.9*' && WANT_AUTOMAKE="1.9" |
|
|
206 | has_version '=sys-devel/automake-1.10*' && WANT_AUTOMAKE="1.10" |
|
|
207 | fi |
|
|
208 | export WANT_AUTOMAKE |
|
|
209 | einfo "Requested automake ${WANT_AUTOMAKE}" |
|
|
210 | einfo "Using $(automake --version 2>/dev/null | head -n 1)" |
|
|
211 | einfo "Using $(aclocal --version 2>/dev/null | head -n 1)" |
|
|
212 | fi |
|
|
213 | |
|
|
214 | autotools_version_sets="yes" |
|
|
215 | } |
270 | } |
216 | |
271 | |
217 | # Internal function to run an autotools' tool |
272 | # Internal function to run an autotools' tool |
218 | autotools_run_tool() { |
273 | autotools_run_tool() { |
|
|
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 |
|
|
279 | # possible order problems, see bug #270010 as an example. |
|
|
280 | if [[ ${WANT_AUTOMAKE} == "latest" ]]; then |
|
|
281 | local pv |
|
|
282 | for pv in ${_LATEST_AUTOMAKE} ; do |
|
|
283 | # has_version respects ROOT, but in this case, we don't want it to, |
|
|
284 | # thus "ROOT=/" prefix: |
|
|
285 | ROOT=/ has_version "=sys-devel/automake-${pv}*" && export WANT_AUTOMAKE="$pv" |
|
|
286 | done |
|
|
287 | [[ ${WANT_AUTOMAKE} == "latest" ]] && \ |
|
|
288 | die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}" |
|
|
289 | fi |
|
|
290 | [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 |
|
|
291 | |
219 | local STDERR_TARGET="${T}/$$.out" |
292 | local STDERR_TARGET="${T}/$1.out" |
220 | local PATCH_TARGET="${T}/$$.patch" |
293 | # most of the time, there will only be one run, but if there are |
221 | local ris |
294 | # more, make sure we get unique log filenames |
|
|
295 | if [[ -e ${STDERR_TARGET} ]] ; then |
|
|
296 | STDERR_TARGET="${T}/$1-$$.out" |
|
|
297 | fi |
222 | |
298 | |
223 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
299 | printf "***** $1 *****\n***** PWD: ${PWD}\n***** $*\n\n" > "${STDERR_TARGET}" |
224 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
|
|
225 | |
300 | |
226 | ebegin "Running $@" |
301 | ebegin "Running $@" |
227 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
302 | "$@" >> "${STDERR_TARGET}" 2>&1 |
228 | ris=$? |
303 | eend $? |
229 | eend ${ris} |
|
|
230 | |
304 | |
231 | if [[ ${ris} != 0 ]]; then |
305 | if [[ $? != 0 && ${NO_FAIL} != 1 ]] ; then |
232 | echo |
306 | echo |
233 | eerror "Failed Running $1 !" |
307 | eerror "Failed Running $1 !" |
234 | eerror |
308 | eerror |
235 | eerror "Include in your bugreport the contents of:" |
309 | eerror "Include in your bugreport the contents of:" |
236 | eerror |
310 | eerror |
237 | eerror " ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" |
311 | eerror " ${STDERR_TARGET}" |
238 | echo |
312 | echo |
239 | die "Failed Running $1 !" |
313 | die "Failed Running $1 !" |
240 | fi |
314 | fi |
241 | } |
315 | } |
242 | |
316 | |
243 | # Internal function to check for support |
317 | # Internal function to check for support |
244 | autotools_check_macro() { |
318 | autotools_check_macro() { |
245 | [[ -f configure.ac || -f configure.in ]] && \ |
319 | [[ -f configure.ac || -f configure.in ]] || return 0 |
|
|
320 | local macro |
|
|
321 | for macro ; do |
246 | WANT_AUTOCONF="2.5" autoconf --trace=$1 2>/dev/null |
322 | WANT_AUTOCONF="2.5" autoconf --trace="${macro}" 2>/dev/null |
|
|
323 | done |
247 | return 0 |
324 | return 0 |
248 | } |
325 | } |
249 | |
326 | |
250 | # Internal function to get additional subdirs to configure |
327 | # Internal function to get additional subdirs to configure |
251 | autotools_get_subdirs() { |
328 | autotools_get_subdirs() { |