| 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.19 2005/09/02 08:23:30 azarah Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.101 2010/08/21 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 |
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 |
| 18 | # |
20 | : ${WANT_AUTOCONF:=latest} |
| 19 | # Ebuilds should rather depend on the proper version of the tool. |
|
|
| 20 | |
21 | |
| 21 | # Variables: |
22 | # @ECLASS-VARIABLE: WANT_AUTOMAKE |
| 22 | # |
23 | # @DESCRIPTION: |
| 23 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
24 | # The major version of automake your package needs |
| 24 | # AT_GNUCONF_UPDATE - Should gnuconfig_update() be run (normally handled by |
25 | : ${WANT_AUTOMAKE:=latest} |
| 25 | # econf()) [yes|no] |
|
|
| 26 | |
26 | |
| 27 | # Functions: |
27 | # @ECLASS-VARIABLE: _LATEST_AUTOMAKE |
| 28 | # |
28 | # @INTERNAL |
| 29 | # eautoreconf() - Should do a full autoreconf - normally what most people |
29 | # @DESCRIPTION: |
| 30 | # will be interested in. Also should handle additional |
30 | # CONSTANT! |
| 31 | # directories specified by AC_CONFIG_SUBDIRS. |
31 | # The latest major version/slot of automake available on each arch. |
| 32 | # eaclocal() - Runs aclocal. Respects AT_M4DIR for additional directories |
32 | # If a newer version is stable on any arch, and is NOT reflected in this list, |
| 33 | # to search for macro's. |
33 | # then circular dependencies may arise during emerge @system bootstraps. |
| 34 | # _elibtoolize() - Runs libtoolize. Note the '_' prefix .. to not collide |
34 | # Do NOT change this variable in your ebuilds! |
| 35 | # with elibtoolize() from libtool.eclass |
35 | _LATEST_AUTOMAKE='1.11' |
| 36 | # eautoconf - Runs autoconf. |
|
|
| 37 | # eautoheader - Runs autoheader. |
|
|
| 38 | # eautomake - Runs automake |
|
|
| 39 | # |
|
|
| 40 | |
36 | |
|
|
37 | _automake_atom="sys-devel/automake" |
|
|
38 | _autoconf_atom="sys-devel/autoconf" |
|
|
39 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
|
|
40 | case ${WANT_AUTOMAKE} in |
|
|
41 | none) _automake_atom="" ;; # some packages don't require automake at all |
|
|
42 | # if you change the "latest" version here, change also autotools_run_tool |
|
|
43 | # this MUST reflect the latest stable major version for each arch! |
|
|
44 | latest) _automake_atom="|| ( `printf '=sys-devel/automake-%s* ' ${_LATEST_AUTOMAKE}` )" ;; |
|
|
45 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
|
|
46 | esac |
|
|
47 | export WANT_AUTOMAKE |
|
|
48 | fi |
|
|
49 | |
|
|
50 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
|
|
51 | case ${WANT_AUTOCONF} in |
|
|
52 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
|
|
53 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
|
|
54 | # if you change the “latest” version here, change also autotools_run_tool |
|
|
55 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.61" ;; |
|
|
56 | *) _autoconf_atom="INCORRECT-WANT_AUTOCONF-SETTING-IN-EBUILD" ;; |
|
|
57 | esac |
|
|
58 | export WANT_AUTOCONF |
|
|
59 | fi |
|
|
60 | |
|
|
61 | AUTOTOOLS_DEPEND="${_automake_atom} ${_autoconf_atom}" |
|
|
62 | [[ ${CATEGORY}/${PN} != "sys-devel/libtool" ]] && AUTOTOOLS_DEPEND="${AUTOTOOLS_DEPEND} >=sys-devel/libtool-2.2.6b" |
|
|
63 | RDEPEND="" |
|
|
64 | |
|
|
65 | # @ECLASS-VARIABLE: AUTOTOOLS_AUTO_DEPEND |
|
|
66 | # @DESCRIPTION: |
|
|
67 | # Set to 'no' to disable automatically adding to DEPEND. This lets |
|
|
68 | # ebuilds former conditional depends by using ${AUTOTOOLS_DEPEND} in |
|
|
69 | # their own DEPEND string. |
|
|
70 | : ${AUTOTOOLS_AUTO_DEPEND:=yes} |
|
|
71 | if [[ ${AUTOTOOLS_AUTO_DEPEND} != "no" ]] ; then |
|
|
72 | DEPEND=${AUTOTOOLS_DEPEND} |
|
|
73 | fi |
|
|
74 | |
|
|
75 | unset _automake_atom _autoconf_atom |
|
|
76 | |
|
|
77 | # @ECLASS-VARIABLE: AM_OPTS |
|
|
78 | # @DEFAULT_UNSET |
|
|
79 | # @DESCRIPTION: |
|
|
80 | # Additional options to pass to automake during |
|
|
81 | # eautoreconf call. |
|
|
82 | |
|
|
83 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
|
|
84 | # @DEFAULT_UNSET |
|
|
85 | # @DESCRIPTION: |
|
|
86 | # Don't run elibtoolize command if set to 'yes', |
|
|
87 | # useful when elibtoolize needs to be ran with |
|
|
88 | # particular options |
|
|
89 | |
| 41 | # XXX: M4DIR should be depreciated |
90 | # XXX: M4DIR should be deprecated |
|
|
91 | # @ECLASS-VARIABLE: AT_M4DIR |
|
|
92 | # @DESCRIPTION: |
|
|
93 | # Additional director(y|ies) aclocal should search |
| 42 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
94 | : ${AT_M4DIR:=${M4DIR}} |
| 43 | AT_GNUCONF_UPDATE="no" |
|
|
| 44 | |
95 | |
| 45 | |
96 | # @FUNCTION: eautoreconf |
|
|
97 | # @DESCRIPTION: |
| 46 | # This function mimes the behavior of autoreconf, but uses the different |
98 | # This function mimes the behavior of autoreconf, but uses the different |
| 47 | # eauto* functions to run the tools. It doesn't accept parameters, but |
99 | # 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. |
100 | # the directory with include files can be specified with AT_M4DIR variable. |
| 49 | # |
101 | # |
| 50 | # Note: doesn't run autopoint right now, but runs gnuconfig_update. |
102 | # Should do a full autoreconf - normally what most people will be interested in. |
|
|
103 | # Also should handle additional directories specified by AC_CONFIG_SUBDIRS. |
| 51 | eautoreconf() { |
104 | eautoreconf() { |
| 52 | local pwd=$(pwd) x |
105 | local x auxdir g |
| 53 | |
106 | |
|
|
107 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
| 54 | # Take care of subdirs |
108 | # Take care of subdirs |
| 55 | for x in $(autotools_get_subdirs); do |
109 | for x in $(autotools_get_subdirs); do |
| 56 | if [[ -d ${x} ]] ; then |
110 | if [[ -d ${x} ]] ; then |
| 57 | cd "${x}" |
111 | pushd "${x}" >/dev/null |
| 58 | eautoreconf |
112 | AT_NOELIBTOOLIZE="yes" eautoreconf |
| 59 | cd "${pwd}" |
113 | popd >/dev/null |
| 60 | fi |
114 | fi |
| 61 | done |
115 | done |
|
|
116 | fi |
| 62 | |
117 | |
|
|
118 | auxdir=$(autotools_get_auxdir) |
|
|
119 | |
|
|
120 | einfo "Running eautoreconf in '${PWD}' ..." |
|
|
121 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
| 63 | eaclocal |
122 | eaclocal |
|
|
123 | [[ ${CHOST} == *-darwin* ]] && g=g |
|
|
124 | if ${LIBTOOLIZE:-${g}libtoolize} -n --install >& /dev/null ; then |
|
|
125 | _elibtoolize --copy --force --install |
|
|
126 | else |
| 64 | _elibtoolize --copy --force |
127 | _elibtoolize --copy --force |
|
|
128 | fi |
| 65 | eautoconf |
129 | eautoconf |
| 66 | eautoheader |
130 | eautoheader |
| 67 | eautomake |
131 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
| 68 | |
132 | |
| 69 | # Normally run by econf() |
133 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
| 70 | [[ ${AT_GNUCONF_UPDATE} == "yes" ]] && gnuconfig_update |
|
|
| 71 | } |
|
|
| 72 | |
134 | |
|
|
135 | # Call it here to prevent failures due to elibtoolize called _before_ |
|
|
136 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
|
|
137 | S=${PWD} elibtoolize |
|
|
138 | |
|
|
139 | return 0 |
|
|
140 | } |
|
|
141 | |
|
|
142 | # @FUNCTION: eaclocal |
|
|
143 | # @DESCRIPTION: |
| 73 | # These functions runs the autotools using autotools_run_tool with the |
144 | # These functions runs the autotools using autotools_run_tool with the |
| 74 | # specified parametes. The name of the tool run is the same of the function |
145 | # specified parametes. The name of the tool run is the same of the function |
| 75 | # without e prefix. |
146 | # without e prefix. |
| 76 | # They also force installing the support files for safety. |
147 | # They also force installing the support files for safety. |
|
|
148 | # Respects AT_M4DIR for additional directories to search for macro's. |
| 77 | eaclocal() { |
149 | eaclocal() { |
| 78 | local aclocal_opts |
150 | local aclocal_opts |
| 79 | |
151 | |
| 80 | # XXX: M4DIR should be depreciated |
152 | local amflags_file |
| 81 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
153 | for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do |
|
|
154 | [[ -e ${amflags_file} ]] || continue |
|
|
155 | aclocal_opts=$(sed -n '/^ACLOCAL_AMFLAGS[[:space:]]*=/s:[^=]*=::p' ${amflags_file}) |
|
|
156 | eval aclocal_opts=\"${aclocal_opts}\" |
|
|
157 | break |
|
|
158 | done |
| 82 | |
159 | |
| 83 | if [[ -n ${AT_M4DIR} ]] ; then |
160 | if [[ -n ${AT_M4DIR} ]] ; then |
| 84 | for x in ${AT_M4DIR} ; do |
161 | for x in ${AT_M4DIR} ; do |
| 85 | case "${x}" in |
162 | case "${x}" in |
| 86 | "-I") |
163 | "-I") |
| 87 | # We handle it below |
164 | # We handle it below |
| 88 | ;; |
|
|
| 89 | "-I"*) |
|
|
| 90 | # Invalid syntax, but maybe we should help out ... |
|
|
| 91 | ewarn "eaclocal: Proper syntax is (note the space after '-I'): aclocal -I <dir>" |
|
|
| 92 | aclocal_opts="${aclocal_opts} -I ${x}" |
|
|
| 93 | ;; |
165 | ;; |
| 94 | *) |
166 | *) |
| 95 | [[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist" |
167 | [[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist" |
| 96 | aclocal_opts="${aclocal_opts} -I ${x}" |
168 | aclocal_opts="${aclocal_opts} -I ${x}" |
| 97 | ;; |
169 | ;; |
| 98 | esac |
170 | esac |
| 99 | done |
171 | done |
| 100 | fi |
172 | fi |
| 101 | |
173 | |
| 102 | [[ -f aclocal.m4 && -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
174 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
| 103 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
175 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
| 104 | } |
176 | } |
| 105 | |
177 | |
|
|
178 | # @FUNCTION: _elibtoolize |
|
|
179 | # @DESCRIPTION: |
|
|
180 | # Runs libtoolize. Note the '_' prefix .. to not collide with elibtoolize() from |
|
|
181 | # libtool.eclass. |
| 106 | _elibtoolize() { |
182 | _elibtoolize() { |
| 107 | local opts |
183 | local opts g= |
| 108 | |
184 | |
| 109 | # Check if we should run libtoolize |
185 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
|
|
186 | # check for both it and the current AC_PROG_LIBTOOL) |
| 110 | [[ -n $(autotools_check_macro "AC_PROG_LIBTOOL") ]] || return 0 |
187 | [[ -n $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] || return 0 |
| 111 | |
188 | |
| 112 | [[ -f Makefile.am ]] && opts="--automake" |
189 | [[ -f GNUmakefile.am || -f Makefile.am ]] && opts="--automake" |
| 113 | |
190 | |
| 114 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
191 | [[ ${CHOST} == *-darwin* ]] && g=g |
| 115 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
192 | autotools_run_tool ${LIBTOOLIZE:-${g}libtoolize} "$@" ${opts} |
| 116 | |
193 | |
| 117 | # Need to rerun aclocal |
194 | # Need to rerun aclocal |
| 118 | eaclocal |
195 | eaclocal |
| 119 | } |
196 | } |
| 120 | |
197 | |
|
|
198 | # @FUNCTION: eautoheader |
|
|
199 | # @DESCRIPTION: |
|
|
200 | # Runs autoheader. |
| 121 | eautoheader() { |
201 | eautoheader() { |
| 122 | # Check if we should run autoheader |
202 | # Check if we should run autoheader |
| 123 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
203 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
| 124 | autotools_run_tool autoheader "$@" |
204 | NO_FAIL=1 autotools_run_tool autoheader "$@" |
| 125 | } |
205 | } |
| 126 | |
206 | |
|
|
207 | # @FUNCTION: eautoconf |
|
|
208 | # @DESCRIPTION: |
|
|
209 | # Runs autoconf. |
| 127 | eautoconf() { |
210 | eautoconf() { |
| 128 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
211 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
| 129 | echo |
212 | echo |
| 130 | eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!" |
213 | eerror "No configure.{ac,in} present in '${PWD}'!" |
| 131 | echo |
214 | echo |
| 132 | die "No configure.{ac,in} present!" |
215 | die "No configure.{ac,in} present!" |
| 133 | fi |
216 | fi |
| 134 | |
217 | |
| 135 | autotools_run_tool autoconf "$@" |
218 | autotools_run_tool autoconf "$@" |
| 136 | } |
219 | } |
| 137 | |
220 | |
|
|
221 | # @FUNCTION: eautomake |
|
|
222 | # @DESCRIPTION: |
|
|
223 | # Runs automake. |
| 138 | eautomake() { |
224 | eautomake() { |
|
|
225 | local extra_opts |
|
|
226 | local makefile_name |
|
|
227 | |
|
|
228 | # Run automake if: |
|
|
229 | # - a Makefile.am type file exists |
|
|
230 | # - a Makefile.in type file exists and the configure |
|
|
231 | # script is using the AM_INIT_AUTOMAKE directive |
|
|
232 | for makefile_name in {GNUmakefile,{M,m}akefile}.{am,in} "" ; do |
|
|
233 | [[ -f ${makefile_name} ]] && break |
|
|
234 | done |
| 139 | [[ -f Makefile.am ]] || return 0 |
235 | [[ -z ${makefile_name} ]] && return 0 |
|
|
236 | |
|
|
237 | if [[ ${makefile_name} == *.in ]] ; then |
|
|
238 | if ! grep -qs AM_INIT_AUTOMAKE configure.?? ; then |
|
|
239 | return 0 |
|
|
240 | fi |
|
|
241 | |
|
|
242 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
|
|
243 | local used_automake |
|
|
244 | local installed_automake |
|
|
245 | |
|
|
246 | installed_automake=$(WANT_AUTOMAKE= automake --version | head -n 1 | \ |
|
|
247 | sed -e 's:.*(GNU automake) ::') |
|
|
248 | used_automake=$(head -n 1 < ${makefile_name%.am}.in | \ |
|
|
249 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
|
|
250 | |
|
|
251 | if [[ ${installed_automake} != ${used_automake} ]]; then |
|
|
252 | einfo "Automake used for the package (${used_automake}) differs from" |
|
|
253 | einfo "the installed version (${installed_automake})." |
|
|
254 | eautoreconf |
|
|
255 | return 0 |
|
|
256 | fi |
|
|
257 | fi |
|
|
258 | |
|
|
259 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS ]] \ |
|
|
260 | || extra_opts="${extra_opts} --foreign" |
|
|
261 | |
| 140 | # --force-missing seems not to be recognized by some flavours of automake |
262 | # --force-missing seems not to be recognized by some flavours of automake |
| 141 | autotools_run_tool automake --add-missing --copy "$@" |
263 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 142 | } |
264 | } |
| 143 | |
265 | |
| 144 | |
266 | # @FUNCTION: eautopoint |
|
|
267 | # @DESCRIPTION: |
|
|
268 | # Runs autopoint (from the gettext package). |
|
|
269 | eautopoint() { |
|
|
270 | autotools_run_tool autopoint "$@" |
|
|
271 | } |
| 145 | |
272 | |
| 146 | # Internal function to run an autotools' tool |
273 | # Internal function to run an autotools' tool |
| 147 | autotools_run_tool() { |
274 | autotools_run_tool() { |
|
|
275 | if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then |
|
|
276 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
|
|
277 | fi |
|
|
278 | |
|
|
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 | |
| 148 | local STDERR_TARGET="${T}/$$.out" |
293 | local STDERR_TARGET="${T}/$1.out" |
| 149 | local PATCH_TARGET="${T}/$$.patch" |
294 | # most of the time, there will only be one run, but if there are |
| 150 | local ris |
295 | # more, make sure we get unique log filenames |
|
|
296 | if [[ -e ${STDERR_TARGET} ]] ; then |
|
|
297 | STDERR_TARGET="${T}/$1-$$.out" |
|
|
298 | fi |
| 151 | |
299 | |
| 152 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
300 | printf "***** $1 *****\n***** PWD: ${PWD}\n***** $*\n\n" > "${STDERR_TARGET}" |
| 153 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
|
|
| 154 | |
301 | |
| 155 | ebegin "Running $1" |
302 | ebegin "Running $@" |
| 156 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
303 | "$@" >> "${STDERR_TARGET}" 2>&1 |
| 157 | ris=$? |
304 | eend $? |
| 158 | eend ${ris} |
|
|
| 159 | |
305 | |
| 160 | if [[ ${ris} != 0 ]]; then |
306 | if [[ $? != 0 && ${NO_FAIL} != 1 ]] ; then |
| 161 | echo |
307 | echo |
| 162 | eerror "Failed Running $1 !" |
308 | eerror "Failed Running $1 !" |
| 163 | eerror |
309 | eerror |
| 164 | eerror "Include in your bugreport the contents of:" |
310 | eerror "Include in your bugreport the contents of:" |
| 165 | eerror |
311 | eerror |
| 166 | eerror " ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" |
312 | eerror " ${STDERR_TARGET}" |
| 167 | echo |
313 | echo |
| 168 | die "Failed Running $1 !" |
314 | die "Failed Running $1 !" |
| 169 | fi |
315 | fi |
| 170 | } |
316 | } |
| 171 | |
317 | |
| 172 | # Internal function to check for support |
318 | # Internal function to check for support |
| 173 | autotools_check_macro() { |
319 | autotools_check_macro() { |
| 174 | [[ -f configure.ac || -f configure.in ]] && \ |
320 | [[ -f configure.ac || -f configure.in ]] || return 0 |
| 175 | autoconf --trace=$1 2>/dev/null |
321 | local macro |
|
|
322 | for macro ; do |
|
|
323 | WANT_AUTOCONF="2.5" autoconf --trace="${macro}" 2>/dev/null |
|
|
324 | done |
| 176 | return 0 |
325 | return 0 |
| 177 | } |
326 | } |
| 178 | |
327 | |
| 179 | # Internal function to get additional subdirs to configure |
328 | # Internal function to get additional subdirs to configure |
| 180 | autotools_get_subdirs() { |
329 | autotools_get_subdirs() { |
| … | |
… | |
| 183 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
332 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
| 184 | [[ -n ${subdirs_scan_out} ]] || return 0 |
333 | [[ -n ${subdirs_scan_out} ]] || return 0 |
| 185 | |
334 | |
| 186 | echo "${subdirs_scan_out}" | gawk \ |
335 | echo "${subdirs_scan_out}" | gawk \ |
| 187 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
336 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
| 188 | if (match($0, "AC_CONFIG_SUBDIRS\\(\\[?([^\\])]*)", res)) { |
337 | if (match($0, /AC_CONFIG_SUBDIRS:(.*)$/, res)) |
| 189 | split(res[1], DIRS, /[\])]/) |
|
|
| 190 | print DIRS[1] |
338 | print res[1] |
| 191 | } |
|
|
| 192 | }' | uniq |
339 | }' | uniq |
| 193 | |
340 | |
| 194 | return 0 |
341 | return 0 |
| 195 | } |
342 | } |
| 196 | |
343 | |
|
|
344 | autotools_get_auxdir() { |
|
|
345 | local auxdir_scan_out |
|
|
346 | |
|
|
347 | auxdir_scan_out=$(autotools_check_macro "AC_CONFIG_AUX_DIR") |
|
|
348 | [[ -n ${auxdir_scan_out} ]] || return 0 |
|
|
349 | |
|
|
350 | echo ${auxdir_scan_out} | gawk \ |
|
|
351 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
|
|
352 | if (match($0, /AC_CONFIG_AUX_DIR:(.*)$/, res)) |
|
|
353 | print res[1] |
|
|
354 | }' | uniq |
|
|
355 | |
|
|
356 | return 0 |
|
|
357 | } |