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