| 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.31 2006/03/08 19:51:40 flameeyes 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 gnuconfig libtool |
15 | inherit eutils libtool |
| 14 | |
16 | |
| 15 | DEPEND="sys-devel/automake |
17 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
| 16 | sys-devel/autoconf |
18 | # @DESCRIPTION: |
| 17 | sys-devel/libtool" |
19 | # The major version of autoconf your package needs |
|
|
20 | : ${WANT_AUTOCONF:=latest} |
| 18 | |
21 | |
| 19 | # Variables: |
22 | # @ECLASS-VARIABLE: WANT_AUTOMAKE |
| 20 | # |
23 | # @DESCRIPTION: |
| 21 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
24 | # The major version of automake your package needs |
| 22 | # AT_GNUCONF_UPDATE - Should gnuconfig_update() be run (normally handled by |
25 | : ${WANT_AUTOMAKE:=latest} |
| 23 | # econf()) [yes|no] |
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' |
|
|
41 | |
|
|
42 | _automake_atom="sys-devel/automake" |
|
|
43 | _autoconf_atom="sys-devel/autoconf" |
|
|
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 | |
|
|
55 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
|
|
56 | case ${WANT_AUTOCONF} in |
|
|
57 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
|
|
58 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
|
|
59 | # if you change the “latest” version here, change also autotools_run_tool |
|
|
60 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.61" ;; |
|
|
61 | *) die "Invalid WANT_AUTOCONF value '${WANT_AUTOCONF}'" ;; |
|
|
62 | esac |
|
|
63 | export WANT_AUTOCONF |
|
|
64 | fi |
|
|
65 | |
|
|
66 | _libtool_atom="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 | |
|
|
89 | unset _automake_atom _autoconf_atom |
|
|
90 | |
|
|
91 | # @ECLASS-VARIABLE: AM_OPTS |
|
|
92 | # @DEFAULT_UNSET |
|
|
93 | # @DESCRIPTION: |
| 24 | # AM_OPTS - Additional options to pass to automake during |
94 | # Additional options to pass to automake during |
| 25 | # eautoreconf call. |
95 | # eautoreconf call. |
| 26 | |
96 | |
| 27 | # Functions: |
97 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
| 28 | # |
98 | # @DEFAULT_UNSET |
| 29 | # eautoreconf() - Should do a full autoreconf - normally what most people |
99 | # @DESCRIPTION: |
| 30 | # will be interested in. Also should handle additional |
100 | # Don't run elibtoolize command if set to 'yes', |
| 31 | # directories specified by AC_CONFIG_SUBDIRS. |
101 | # useful when elibtoolize needs to be ran with |
| 32 | # eaclocal() - Runs aclocal. Respects AT_M4DIR for additional directories |
102 | # particular options |
| 33 | # to search for macro's. |
|
|
| 34 | # _elibtoolize() - Runs libtoolize. Note the '_' prefix .. to not collide |
|
|
| 35 | # with elibtoolize() from libtool.eclass |
|
|
| 36 | # eautoconf - Runs autoconf. |
|
|
| 37 | # eautoheader - Runs autoheader. |
|
|
| 38 | # eautomake - Runs automake |
|
|
| 39 | # |
|
|
| 40 | |
103 | |
| 41 | # 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 |
| 42 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
108 | : ${AT_M4DIR:=${M4DIR}} |
| 43 | AT_GNUCONF_UPDATE="no" |
|
|
| 44 | |
109 | |
| 45 | |
110 | # @FUNCTION: eautoreconf |
|
|
111 | # @DESCRIPTION: |
| 46 | # This function mimes the behavior of autoreconf, but uses the different |
112 | # This function mimes the behavior of autoreconf, but uses the different |
| 47 | # 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 |
| 48 | # 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. |
| 49 | # |
115 | # |
| 50 | # Note: doesn't run autopoint right now, but runs gnuconfig_update. |
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. |
| 51 | eautoreconf() { |
118 | eautoreconf() { |
| 52 | local pwd=$(pwd) x |
119 | local x auxdir g |
| 53 | |
120 | |
|
|
121 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
| 54 | # Take care of subdirs |
122 | # Take care of subdirs |
| 55 | for x in $(autotools_get_subdirs); do |
123 | for x in $(autotools_get_subdirs); do |
| 56 | if [[ -d ${x} ]] ; then |
124 | if [[ -d ${x} ]] ; then |
| 57 | cd "${x}" |
125 | pushd "${x}" >/dev/null |
| 58 | eautoreconf |
126 | AT_NOELIBTOOLIZE="yes" eautoreconf |
| 59 | cd "${pwd}" |
127 | popd >/dev/null |
| 60 | fi |
128 | fi |
| 61 | done |
129 | done |
|
|
130 | fi |
| 62 | |
131 | |
|
|
132 | auxdir=$(autotools_get_auxdir) |
|
|
133 | |
| 63 | einfo "Running eautoreconf in '$(pwd)' ..." |
134 | einfo "Running eautoreconf in '${PWD}' ..." |
|
|
135 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
| 64 | 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 |
| 65 | _elibtoolize --copy --force |
141 | _elibtoolize --copy --force |
|
|
142 | fi |
| 66 | eautoconf |
143 | eautoconf |
| 67 | eautoheader |
144 | eautoheader |
| 68 | eautomake ${AM_OPTS} |
145 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
| 69 | |
146 | |
| 70 | # Normally run by econf() |
147 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
| 71 | [[ ${AT_GNUCONF_UPDATE} == "yes" ]] && gnuconfig_update |
|
|
| 72 | |
148 | |
| 73 | # Call it here to prevent failures due to elibtoolize called _before_ |
149 | # Call it here to prevent failures due to elibtoolize called _before_ |
| 74 | # eautoreconf. |
150 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
| 75 | elibtoolize |
151 | S=${PWD} elibtoolize |
| 76 | |
152 | |
| 77 | return 0 |
153 | return 0 |
| 78 | } |
154 | } |
| 79 | |
155 | |
|
|
156 | # @FUNCTION: eaclocal |
|
|
157 | # @DESCRIPTION: |
| 80 | # These functions runs the autotools using autotools_run_tool with the |
158 | # These functions runs the autotools using autotools_run_tool with the |
| 81 | # 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 |
| 82 | # without e prefix. |
160 | # without e prefix. |
| 83 | # 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. |
| 84 | eaclocal() { |
163 | eaclocal() { |
| 85 | local aclocal_opts |
164 | local aclocal_opts |
| 86 | |
165 | |
| 87 | # XXX: M4DIR should be depreciated |
166 | local amflags_file |
| 88 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
167 | for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do |
| 89 | |
168 | [[ -e ${amflags_file} ]] || continue |
| 90 | if [[ -n ${AT_M4DIR} ]] ; then |
169 | # setup the env in case the pkg does something crazy |
| 91 | for x in ${AT_M4DIR} ; do |
170 | # in their ACLOCAL_AMFLAGS. like run a shell script |
| 92 | case "${x}" in |
171 | # which turns around and runs autotools #365401 |
| 93 | "-I") |
172 | autotools_env_setup |
| 94 | # We handle it below |
173 | aclocal_opts=$(sed -n '/^ACLOCAL_AMFLAGS[[:space:]]*=/s:[^=]*=::p' ${amflags_file}) |
| 95 | ;; |
|
|
| 96 | *) |
|
|
| 97 | [[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist" |
|
|
| 98 | aclocal_opts="${aclocal_opts} -I ${x}" |
174 | eval aclocal_opts=\"${aclocal_opts}\" |
| 99 | ;; |
175 | break |
| 100 | esac |
|
|
| 101 | done |
176 | done |
| 102 | fi |
|
|
| 103 | |
177 | |
| 104 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
178 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
| 105 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
179 | autotools_run_tool aclocal $(autotools_m4dir_include) "$@" ${aclocal_opts} |
| 106 | } |
180 | } |
| 107 | |
181 | |
|
|
182 | # @FUNCTION: _elibtoolize |
|
|
183 | # @DESCRIPTION: |
|
|
184 | # Runs libtoolize. Note the '_' prefix .. to not collide with elibtoolize() from |
|
|
185 | # libtool.eclass. |
| 108 | _elibtoolize() { |
186 | _elibtoolize() { |
| 109 | local opts |
187 | local opts g= |
| 110 | |
188 | |
| 111 | # Check if we should run libtoolize |
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) |
| 112 | [[ -n $(autotools_check_macro "AC_PROG_LIBTOOL") ]] || return 0 |
191 | [[ -n $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] || return 0 |
| 113 | |
192 | |
| 114 | [[ -f Makefile.am ]] && opts="--automake" |
193 | [[ -f GNUmakefile.am || -f Makefile.am ]] && opts="--automake" |
| 115 | |
194 | |
| 116 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
195 | [[ ${CHOST} == *-darwin* ]] && g=g |
| 117 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
196 | autotools_run_tool ${LIBTOOLIZE:-${g}libtoolize} "$@" ${opts} |
| 118 | |
197 | |
| 119 | # Need to rerun aclocal |
198 | # Need to rerun aclocal |
| 120 | eaclocal |
199 | eaclocal |
| 121 | } |
200 | } |
| 122 | |
201 | |
|
|
202 | # @FUNCTION: eautoheader |
|
|
203 | # @DESCRIPTION: |
|
|
204 | # Runs autoheader. |
| 123 | eautoheader() { |
205 | eautoheader() { |
| 124 | # Check if we should run autoheader |
206 | # Check if we should run autoheader |
| 125 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
207 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
| 126 | autotools_run_tool autoheader "$@" |
208 | NO_FAIL=1 autotools_run_tool autoheader $(autotools_m4dir_include) "$@" |
| 127 | } |
209 | } |
| 128 | |
210 | |
|
|
211 | # @FUNCTION: eautoconf |
|
|
212 | # @DESCRIPTION: |
|
|
213 | # Runs autoconf. |
| 129 | eautoconf() { |
214 | eautoconf() { |
| 130 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
215 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
| 131 | echo |
216 | echo |
| 132 | eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!" |
217 | eerror "No configure.{ac,in} present in '${PWD}'!" |
| 133 | echo |
218 | echo |
| 134 | die "No configure.{ac,in} present!" |
219 | die "No configure.{ac,in} present!" |
| 135 | fi |
220 | fi |
| 136 | |
221 | |
| 137 | autotools_run_tool autoconf "$@" |
222 | autotools_run_tool autoconf $(autotools_m4dir_include) "$@" |
| 138 | } |
223 | } |
| 139 | |
224 | |
|
|
225 | # @FUNCTION: eautomake |
|
|
226 | # @DESCRIPTION: |
|
|
227 | # Runs automake. |
| 140 | eautomake() { |
228 | eautomake() { |
| 141 | local extra_opts |
229 | local extra_opts |
|
|
230 | local makefile_name |
| 142 | |
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 |
| 143 | [[ -f Makefile.am ]] || return 0 |
239 | [[ -z ${makefile_name} ]] && return 0 |
| 144 | |
240 | |
|
|
241 | if [[ ${makefile_name} == *.in ]] ; then |
|
|
242 | if ! grep -qs AM_INIT_AUTOMAKE configure.?? ; then |
|
|
243 | return 0 |
|
|
244 | fi |
|
|
245 | |
|
|
246 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
|
|
247 | local used_automake |
|
|
248 | local installed_automake |
|
|
249 | |
|
|
250 | installed_automake=$(WANT_AUTOMAKE= automake --version | head -n 1 | \ |
|
|
251 | sed -e 's:.*(GNU automake) ::') |
|
|
252 | used_automake=$(head -n 1 < ${makefile_name%.am}.in | \ |
|
|
253 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
|
|
254 | |
|
|
255 | if [[ ${installed_automake} != ${used_automake} ]]; then |
|
|
256 | einfo "Automake used for the package (${used_automake}) differs from" |
|
|
257 | einfo "the installed version (${installed_automake})." |
|
|
258 | eautoreconf |
|
|
259 | return 0 |
|
|
260 | fi |
|
|
261 | fi |
|
|
262 | |
| 145 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog ]] \ |
263 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS ]] \ |
| 146 | || extra_opts="${extra_opts} --foreign" |
264 | || extra_opts="${extra_opts} --foreign" |
| 147 | |
265 | |
| 148 | # --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 |
| 149 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
267 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 150 | } |
268 | } |
| 151 | |
269 | |
| 152 | |
270 | # @FUNCTION: eautopoint |
|
|
271 | # @DESCRIPTION: |
|
|
272 | # Runs autopoint (from the gettext package). |
|
|
273 | eautopoint() { |
|
|
274 | autotools_run_tool autopoint "$@" |
|
|
275 | } |
| 153 | |
276 | |
| 154 | # 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 | } |
| 155 | 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 | |
| 156 | local STDERR_TARGET="${T}/$$.out" |
300 | local STDERR_TARGET="${T}/$1.out" |
| 157 | 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 |
| 158 | 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 |
| 159 | |
311 | |
| 160 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
312 | printf "***** $1 *****\n***** PWD: ${PWD}\n***** $*\n\n" > "${STDERR_TARGET}" |
| 161 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
|
|
| 162 | |
313 | |
| 163 | ebegin "Running $@" |
314 | ebegin "Running $@" |
| 164 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
315 | "$@" >> "${STDERR_TARGET}" 2>&1 |
| 165 | ris=$? |
316 | eend $? |
| 166 | eend ${ris} |
|
|
| 167 | |
317 | |
| 168 | if [[ ${ris} != 0 ]]; then |
318 | if [[ $? != 0 && ${NO_FAIL} != 1 ]] ; then |
| 169 | echo |
319 | echo |
| 170 | eerror "Failed Running $1 !" |
320 | eerror "Failed Running $1 !" |
| 171 | eerror |
321 | eerror |
| 172 | eerror "Include in your bugreport the contents of:" |
322 | eerror "Include in your bugreport the contents of:" |
| 173 | eerror |
323 | eerror |
| 174 | eerror " ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" |
324 | eerror " ${STDERR_TARGET}" |
| 175 | echo |
325 | echo |
| 176 | die "Failed Running $1 !" |
326 | die "Failed Running $1 !" |
| 177 | fi |
327 | fi |
| 178 | } |
328 | } |
| 179 | |
329 | |
| 180 | # Internal function to check for support |
330 | # Internal function to check for support |
| 181 | autotools_check_macro() { |
331 | autotools_check_macro() { |
| 182 | [[ -f configure.ac || -f configure.in ]] && \ |
332 | [[ -f configure.ac || -f configure.in ]] || return 0 |
| 183 | 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 |
| 184 | return 0 |
337 | return 0 |
| 185 | } |
338 | } |
| 186 | |
339 | |
| 187 | # Internal function to get additional subdirs to configure |
340 | # Internal function to get additional subdirs to configure |
| 188 | autotools_get_subdirs() { |
341 | autotools_get_subdirs() { |
| … | |
… | |
| 198 | }' | uniq |
351 | }' | uniq |
| 199 | |
352 | |
| 200 | return 0 |
353 | return 0 |
| 201 | } |
354 | } |
| 202 | |
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() { |
|
|
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 | } |