| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2011 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.45 2006/09/22 22:25:06 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.106 2011/08/22 19:39:52 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 | |
| 15 | [[ ${WANT_AUTOMAKE} == "latest" ]] && export WANT_AUTOMAKE=1.9 |
17 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
| 16 | [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 |
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: WANT_LIBTOOL |
|
|
28 | # @DESCRIPTION: |
|
|
29 | # Do you want libtool? Valid values here are "latest" and "none". |
|
|
30 | : ${WANT_LIBTOOL:=latest} |
|
|
31 | |
|
|
32 | # @ECLASS-VARIABLE: _LATEST_AUTOMAKE |
|
|
33 | # @INTERNAL |
|
|
34 | # @DESCRIPTION: |
|
|
35 | # CONSTANT! |
|
|
36 | # The latest major version/slot of automake available on each arch. |
|
|
37 | # If a newer version is stable on any arch, and is NOT reflected in this list, |
|
|
38 | # then circular dependencies may arise during emerge @system bootstraps. |
|
|
39 | # Do NOT change this variable in your ebuilds! |
|
|
40 | _LATEST_AUTOMAKE='1.11' |
| 17 | |
41 | |
| 18 | _automake_atom="sys-devel/automake" |
42 | _automake_atom="sys-devel/automake" |
| 19 | _autoconf_atom="sys-devel/autoconf" |
43 | _autoconf_atom="sys-devel/autoconf" |
| 20 | [[ -n ${WANT_AUTOMAKE} ]] && _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" |
44 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
|
|
45 | case ${WANT_AUTOMAKE} in |
|
|
46 | none) _automake_atom="" ;; # some packages don't require automake at all |
|
|
47 | # if you change the "latest" version here, change also autotools_run_tool |
|
|
48 | # this MUST reflect the latest stable major version for each arch! |
|
|
49 | latest) _automake_atom="|| ( `printf '=sys-devel/automake-%s* ' ${_LATEST_AUTOMAKE}` )" ;; |
|
|
50 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
|
|
51 | esac |
|
|
52 | export WANT_AUTOMAKE |
|
|
53 | fi |
|
|
54 | |
| 21 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
55 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
| 22 | case ${WANT_AUTOCONF} in |
56 | case ${WANT_AUTOCONF} in |
|
|
57 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
| 23 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
58 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
|
|
59 | # if you change the “latest” version here, change also autotools_run_tool |
| 24 | 2.5) _autoconf_atom=">=sys-devel/autoconf-2.59" ;; |
60 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.61" ;; |
|
|
61 | *) die "Invalid WANT_AUTOCONF value '${WANT_AUTOCONF}'" ;; |
| 25 | esac |
62 | esac |
|
|
63 | export WANT_AUTOCONF |
| 26 | fi |
64 | fi |
| 27 | DEPEND="${_automake_atom} |
65 | |
| 28 | ${_autoconf_atom} |
66 | _libtool_atom="sys-devel/libtool" |
| 29 | sys-devel/libtool" |
67 | if [[ -n ${WANT_LIBTOOL} ]] ; then |
|
|
68 | case ${WANT_LIBTOOL} in |
|
|
69 | none) _libtool_atom="" ;; |
|
|
70 | latest) ;; |
|
|
71 | *) die "Invalid WANT_LIBTOOL value '${WANT_LIBTOOL}'" ;; |
|
|
72 | esac |
|
|
73 | export WANT_LIBTOOL |
|
|
74 | fi |
|
|
75 | |
|
|
76 | AUTOTOOLS_DEPEND="${_automake_atom} ${_autoconf_atom} ${_libtool_atom}" |
|
|
77 | RDEPEND="" |
|
|
78 | |
|
|
79 | # @ECLASS-VARIABLE: AUTOTOOLS_AUTO_DEPEND |
|
|
80 | # @DESCRIPTION: |
|
|
81 | # Set to 'no' to disable automatically adding to DEPEND. This lets |
|
|
82 | # ebuilds former conditional depends by using ${AUTOTOOLS_DEPEND} in |
|
|
83 | # their own DEPEND string. |
|
|
84 | : ${AUTOTOOLS_AUTO_DEPEND:=yes} |
|
|
85 | if [[ ${AUTOTOOLS_AUTO_DEPEND} != "no" ]] ; then |
|
|
86 | DEPEND=${AUTOTOOLS_DEPEND} |
|
|
87 | fi |
|
|
88 | |
| 30 | unset _automake_atom _autoconf_atom |
89 | unset _automake_atom _autoconf_atom |
| 31 | |
90 | |
| 32 | # Variables: |
91 | # @ECLASS-VARIABLE: AM_OPTS |
| 33 | # |
92 | # @DEFAULT_UNSET |
| 34 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
93 | # @DESCRIPTION: |
| 35 | # AM_OPTS - Additional options to pass to automake during |
94 | # Additional options to pass to automake during |
| 36 | # eautoreconf call. |
95 | # eautoreconf call. |
| 37 | |
96 | |
| 38 | # Functions: |
97 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
| 39 | # |
98 | # @DEFAULT_UNSET |
| 40 | # eautoreconf() - Should do a full autoreconf - normally what most people |
99 | # @DESCRIPTION: |
| 41 | # will be interested in. Also should handle additional |
100 | # Don't run elibtoolize command if set to 'yes', |
| 42 | # directories specified by AC_CONFIG_SUBDIRS. |
101 | # useful when elibtoolize needs to be ran with |
| 43 | # eaclocal() - Runs aclocal. Respects AT_M4DIR for additional directories |
102 | # particular options |
| 44 | # to search for macro's. |
|
|
| 45 | # _elibtoolize() - Runs libtoolize. Note the '_' prefix .. to not collide |
|
|
| 46 | # with elibtoolize() from libtool.eclass |
|
|
| 47 | # eautoconf - Runs autoconf. |
|
|
| 48 | # eautoheader - Runs autoheader. |
|
|
| 49 | # eautomake - Runs automake |
|
|
| 50 | # |
|
|
| 51 | |
103 | |
| 52 | # XXX: M4DIR should be depreciated |
104 | # XXX: M4DIR should be deprecated |
|
|
105 | # @ECLASS-VARIABLE: AT_M4DIR |
|
|
106 | # @DESCRIPTION: |
|
|
107 | # Additional director(y|ies) aclocal should search |
| 53 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
108 | : ${AT_M4DIR:=${M4DIR}} |
| 54 | AT_GNUCONF_UPDATE="no" |
|
|
| 55 | |
109 | |
| 56 | |
110 | # @FUNCTION: eautoreconf |
|
|
111 | # @DESCRIPTION: |
| 57 | # This function mimes the behavior of autoreconf, but uses the different |
112 | # This function mimes the behavior of autoreconf, but uses the different |
| 58 | # eauto* functions to run the tools. It doesn't accept parameters, but |
113 | # eauto* functions to run the tools. It doesn't accept parameters, but |
| 59 | # the directory with include files can be specified with AT_M4DIR variable. |
114 | # the directory with include files can be specified with AT_M4DIR variable. |
|
|
115 | # |
|
|
116 | # Should do a full autoreconf - normally what most people will be interested in. |
|
|
117 | # Also should handle additional directories specified by AC_CONFIG_SUBDIRS. |
| 60 | eautoreconf() { |
118 | eautoreconf() { |
| 61 | local pwd=$(pwd) x auxdir |
119 | local x auxdir g |
| 62 | |
120 | |
| 63 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
121 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
| 64 | # Take care of subdirs |
122 | # Take care of subdirs |
| 65 | for x in $(autotools_get_subdirs); do |
123 | for x in $(autotools_get_subdirs); do |
| 66 | if [[ -d ${x} ]] ; then |
124 | if [[ -d ${x} ]] ; then |
| 67 | cd "${x}" |
125 | pushd "${x}" >/dev/null |
| 68 | AT_NOELIBTOOLIZE="yes" eautoreconf |
126 | AT_NOELIBTOOLIZE="yes" eautoreconf |
| 69 | cd "${pwd}" |
127 | popd >/dev/null |
| 70 | fi |
128 | fi |
| 71 | done |
129 | done |
| 72 | fi |
130 | fi |
| 73 | |
131 | |
| 74 | auxdir=$(autotools_get_auxdir) |
132 | auxdir=$(autotools_get_auxdir) |
| 75 | |
133 | |
| 76 | einfo "Running eautoreconf in '$(pwd)' ..." |
134 | einfo "Running eautoreconf in '${PWD}' ..." |
| 77 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
135 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
| 78 | eaclocal |
136 | eaclocal |
|
|
137 | [[ ${CHOST} == *-darwin* ]] && g=g |
|
|
138 | if ${LIBTOOLIZE:-${g}libtoolize} -n --install >& /dev/null ; then |
|
|
139 | _elibtoolize --copy --force --install |
|
|
140 | else |
| 79 | _elibtoolize --copy --force |
141 | _elibtoolize --copy --force |
|
|
142 | fi |
| 80 | eautoconf |
143 | eautoconf |
| 81 | eautoheader |
144 | eautoheader |
| 82 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
145 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
| 83 | |
146 | |
| 84 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
147 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
| 85 | |
148 | |
| 86 | # Call it here to prevent failures due to elibtoolize called _before_ |
149 | # Call it here to prevent failures due to elibtoolize called _before_ |
| 87 | # eautoreconf. |
150 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
| 88 | elibtoolize |
151 | S=${PWD} elibtoolize |
| 89 | |
152 | |
| 90 | return 0 |
153 | return 0 |
| 91 | } |
154 | } |
| 92 | |
155 | |
|
|
156 | # @FUNCTION: eaclocal |
|
|
157 | # @DESCRIPTION: |
| 93 | # These functions runs the autotools using autotools_run_tool with the |
158 | # These functions runs the autotools using autotools_run_tool with the |
| 94 | # specified parametes. The name of the tool run is the same of the function |
159 | # specified parametes. The name of the tool run is the same of the function |
| 95 | # without e prefix. |
160 | # without e prefix. |
| 96 | # They also force installing the support files for safety. |
161 | # They also force installing the support files for safety. |
|
|
162 | # Respects AT_M4DIR for additional directories to search for macro's. |
| 97 | eaclocal() { |
163 | eaclocal() { |
| 98 | local aclocal_opts |
164 | local aclocal_opts |
| 99 | |
165 | |
| 100 | if [[ -n ${AT_M4DIR} ]] ; then |
166 | local amflags_file |
| 101 | for x in ${AT_M4DIR} ; do |
167 | for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do |
| 102 | case "${x}" in |
168 | [[ -e ${amflags_file} ]] || continue |
| 103 | "-I") |
169 | # setup the env in case the pkg does something crazy |
| 104 | # We handle it below |
170 | # in their ACLOCAL_AMFLAGS. like run a shell script |
| 105 | ;; |
171 | # which turns around and runs autotools #365401 |
| 106 | *) |
172 | autotools_env_setup |
| 107 | [[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist" |
173 | aclocal_opts=$(sed -n '/^ACLOCAL_AMFLAGS[[:space:]]*=/s:[^=]*=::p' ${amflags_file}) |
| 108 | aclocal_opts="${aclocal_opts} -I ${x}" |
174 | eval aclocal_opts=\"${aclocal_opts}\" |
| 109 | ;; |
175 | break |
| 110 | esac |
|
|
| 111 | done |
176 | done |
| 112 | fi |
|
|
| 113 | |
177 | |
| 114 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
178 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
| 115 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
179 | autotools_run_tool aclocal $(autotools_m4dir_include) "$@" ${aclocal_opts} |
| 116 | } |
180 | } |
| 117 | |
181 | |
|
|
182 | # @FUNCTION: _elibtoolize |
|
|
183 | # @DESCRIPTION: |
|
|
184 | # Runs libtoolize. Note the '_' prefix .. to not collide with elibtoolize() from |
|
|
185 | # libtool.eclass. |
| 118 | _elibtoolize() { |
186 | _elibtoolize() { |
| 119 | local opts |
187 | local opts g= |
| 120 | local lttest |
|
|
| 121 | |
188 | |
| 122 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
189 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
| 123 | # check for both it and the current AC_PROG_LIBTOOL) |
190 | # check for both it and the current AC_PROG_LIBTOOL) |
| 124 | lttest="$(autotools_check_macro "AC_PROG_LIBTOOL")$(autotools_check_macro "AM_PROG_LIBTOOL")" |
191 | [[ -n $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] || return 0 |
| 125 | [[ -n $lttest ]] || return 0 |
|
|
| 126 | |
192 | |
| 127 | [[ -f Makefile.am ]] && opts="--automake" |
193 | [[ -f GNUmakefile.am || -f Makefile.am ]] && opts="--automake" |
| 128 | |
194 | |
| 129 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
195 | [[ ${CHOST} == *-darwin* ]] && g=g |
| 130 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
196 | autotools_run_tool ${LIBTOOLIZE:-${g}libtoolize} "$@" ${opts} |
| 131 | |
197 | |
| 132 | # Need to rerun aclocal |
198 | # Need to rerun aclocal |
| 133 | eaclocal |
199 | eaclocal |
| 134 | } |
200 | } |
| 135 | |
201 | |
|
|
202 | # @FUNCTION: eautoheader |
|
|
203 | # @DESCRIPTION: |
|
|
204 | # Runs autoheader. |
| 136 | eautoheader() { |
205 | eautoheader() { |
| 137 | # Check if we should run autoheader |
206 | # Check if we should run autoheader |
| 138 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
207 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
| 139 | autotools_run_tool autoheader "$@" |
208 | NO_FAIL=1 autotools_run_tool autoheader $(autotools_m4dir_include) "$@" |
| 140 | } |
209 | } |
| 141 | |
210 | |
|
|
211 | # @FUNCTION: eautoconf |
|
|
212 | # @DESCRIPTION: |
|
|
213 | # Runs autoconf. |
| 142 | eautoconf() { |
214 | eautoconf() { |
| 143 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
215 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
| 144 | echo |
216 | echo |
| 145 | eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!" |
217 | eerror "No configure.{ac,in} present in '${PWD}'!" |
| 146 | echo |
218 | echo |
| 147 | die "No configure.{ac,in} present!" |
219 | die "No configure.{ac,in} present!" |
| 148 | fi |
220 | fi |
| 149 | |
221 | |
| 150 | autotools_run_tool autoconf "$@" |
222 | autotools_run_tool autoconf $(autotools_m4dir_include) "$@" |
| 151 | } |
223 | } |
| 152 | |
224 | |
|
|
225 | # @FUNCTION: eautomake |
|
|
226 | # @DESCRIPTION: |
|
|
227 | # Runs automake. |
| 153 | eautomake() { |
228 | eautomake() { |
| 154 | local extra_opts |
229 | local extra_opts |
|
|
230 | local makefile_name |
| 155 | |
231 | |
|
|
232 | # Run automake if: |
|
|
233 | # - 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 |
|
|
236 | for makefile_name in {GNUmakefile,{M,m}akefile}.{am,in} "" ; do |
|
|
237 | [[ -f ${makefile_name} ]] && break |
|
|
238 | done |
| 156 | [[ -f Makefile.am ]] || return 0 |
239 | [[ -z ${makefile_name} ]] && return 0 |
| 157 | |
240 | |
| 158 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
241 | if [[ ${makefile_name} == *.in ]] ; then |
| 159 | export WANT_AUTOMAKE # let the automake wrapper pick it up |
242 | if ! grep -qs AM_INIT_AUTOMAKE configure.?? ; then |
| 160 | einfo "Required automake ${WANT_AUTOMAKE}. Using $(automake --version | head -n 1)." |
243 | return 0 |
| 161 | fi |
244 | fi |
| 162 | |
245 | |
| 163 | if [[ -z ${FROM_EAUTORECONF} && -f Makefile.in ]]; then |
246 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
| 164 | local used_automake |
247 | local used_automake |
| 165 | local installed_automake |
248 | local installed_automake |
| 166 | |
249 | |
| 167 | installed_automake=$(automake --version | head -n 1 | \ |
250 | installed_automake=$(WANT_AUTOMAKE= automake --version | head -n 1 | \ |
| 168 | sed -e 's:.*(GNU automake) ::') |
251 | sed -e 's:.*(GNU automake) ::') |
| 169 | used_automake=$(head -n 1 < Makefile.in | \ |
252 | used_automake=$(head -n 1 < ${makefile_name%.am}.in | \ |
| 170 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
253 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
| 171 | |
254 | |
| 172 | if [[ ${installed_automake} != ${used_automake} ]]; then |
255 | if [[ ${installed_automake} != ${used_automake} ]]; then |
| 173 | einfo "Automake used for the package (${used_automake}) differs from" |
256 | einfo "Automake used for the package (${used_automake}) differs from" |
| 174 | einfo "the installed version (${installed_automake})." |
257 | einfo "the installed version (${installed_automake})." |
| … | |
… | |
| 182 | |
265 | |
| 183 | # --force-missing seems not to be recognized by some flavours of automake |
266 | # --force-missing seems not to be recognized by some flavours of automake |
| 184 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
267 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 185 | } |
268 | } |
| 186 | |
269 | |
| 187 | |
270 | # @FUNCTION: eautopoint |
|
|
271 | # @DESCRIPTION: |
|
|
272 | # Runs autopoint (from the gettext package). |
|
|
273 | eautopoint() { |
|
|
274 | autotools_run_tool autopoint "$@" |
|
|
275 | } |
| 188 | |
276 | |
| 189 | # Internal function to run an autotools' tool |
277 | # Internal function to run an autotools' tool |
|
|
278 | autotools_env_setup() { |
|
|
279 | # We do the “latest” → version switch here because it solves |
|
|
280 | # possible order problems, see bug #270010 as an example. |
|
|
281 | if [[ ${WANT_AUTOMAKE} == "latest" ]]; then |
|
|
282 | local pv |
|
|
283 | for pv in ${_LATEST_AUTOMAKE} ; do |
|
|
284 | # has_version respects ROOT, but in this case, we don't want it to, |
|
|
285 | # thus "ROOT=/" prefix: |
|
|
286 | ROOT=/ has_version "=sys-devel/automake-${pv}*" && export WANT_AUTOMAKE="$pv" |
|
|
287 | done |
|
|
288 | [[ ${WANT_AUTOMAKE} == "latest" ]] && \ |
|
|
289 | die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}" |
|
|
290 | fi |
|
|
291 | [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 |
|
|
292 | } |
| 190 | autotools_run_tool() { |
293 | autotools_run_tool() { |
|
|
294 | if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then |
|
|
295 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
|
|
296 | fi |
|
|
297 | |
|
|
298 | autotools_env_setup |
|
|
299 | |
| 191 | local STDERR_TARGET="${T}/$$.out" |
300 | local STDERR_TARGET="${T}/$1.out" |
| 192 | local PATCH_TARGET="${T}/$$.patch" |
301 | # most of the time, there will only be one run, but if there are |
|
|
302 | # more, make sure we get unique log filenames |
|
|
303 | if [[ -e ${STDERR_TARGET} ]] ; then |
| 193 | local ris |
304 | local i=1 |
|
|
305 | while :; do |
|
|
306 | STDERR_TARGET="${T}/$1-${i}.out" |
|
|
307 | [[ -e ${STDERR_TARGET} ]] || break |
|
|
308 | : $(( i++ )) |
|
|
309 | done |
|
|
310 | fi |
| 194 | |
311 | |
| 195 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
312 | printf "***** $1 *****\n***** PWD: ${PWD}\n***** $*\n\n" > "${STDERR_TARGET}" |
| 196 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
|
|
| 197 | |
313 | |
| 198 | ebegin "Running $@" |
314 | ebegin "Running $@" |
| 199 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
315 | "$@" >> "${STDERR_TARGET}" 2>&1 |
| 200 | ris=$? |
316 | eend $? |
| 201 | eend ${ris} |
|
|
| 202 | |
317 | |
| 203 | if [[ ${ris} != 0 ]]; then |
318 | if [[ $? != 0 && ${NO_FAIL} != 1 ]] ; then |
| 204 | echo |
319 | echo |
| 205 | eerror "Failed Running $1 !" |
320 | eerror "Failed Running $1 !" |
| 206 | eerror |
321 | eerror |
| 207 | eerror "Include in your bugreport the contents of:" |
322 | eerror "Include in your bugreport the contents of:" |
| 208 | eerror |
323 | eerror |
| 209 | eerror " ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" |
324 | eerror " ${STDERR_TARGET}" |
| 210 | echo |
325 | echo |
| 211 | die "Failed Running $1 !" |
326 | die "Failed Running $1 !" |
| 212 | fi |
327 | fi |
| 213 | } |
328 | } |
| 214 | |
329 | |
| 215 | # Internal function to check for support |
330 | # Internal function to check for support |
| 216 | autotools_check_macro() { |
331 | autotools_check_macro() { |
| 217 | [[ -f configure.ac || -f configure.in ]] && \ |
332 | [[ -f configure.ac || -f configure.in ]] || return 0 |
| 218 | WANT_AUTOCONF="2.5" autoconf --trace=$1 2>/dev/null |
333 | local macro |
|
|
334 | for macro ; do |
|
|
335 | WANT_AUTOCONF="2.5" autoconf $(autotools_m4dir_include) --trace="${macro}" 2>/dev/null |
|
|
336 | done |
| 219 | return 0 |
337 | return 0 |
| 220 | } |
338 | } |
| 221 | |
339 | |
| 222 | # Internal function to get additional subdirs to configure |
340 | # Internal function to get additional subdirs to configure |
| 223 | autotools_get_subdirs() { |
341 | autotools_get_subdirs() { |
| … | |
… | |
| 247 | print res[1] |
365 | print res[1] |
| 248 | }' | uniq |
366 | }' | uniq |
| 249 | |
367 | |
| 250 | return 0 |
368 | return 0 |
| 251 | } |
369 | } |
|
|
370 | |
|
|
371 | autotools_m4dir_include() { |
|
|
372 | [[ -n ${AT_M4DIR} ]] || return |
|
|
373 | |
|
|
374 | local include_opts= |
|
|
375 | |
|
|
376 | for x in ${AT_M4DIR} ; do |
|
|
377 | case "${x}" in |
|
|
378 | "-I") |
|
|
379 | # We handle it below |
|
|
380 | ;; |
|
|
381 | *) |
|
|
382 | [[ ! -d ${x} ]] && ewarn "autotools.eclass: '${x}' does not exist" |
|
|
383 | include_opts="${include_opts} -I ${x}" |
|
|
384 | ;; |
|
|
385 | esac |
|
|
386 | done |
|
|
387 | |
|
|
388 | echo $include_opts |
|
|
389 | } |