| 1 | # Copyright 1999-2011 Gentoo Foundation |
1 | # Copyright 1999-2012 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.106 2011/08/22 19:39:52 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.119 2012/02/12 00:20:54 robbat2 Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: autotools.eclass |
5 | # @ECLASS: autotools.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # base-system@gentoo.org |
7 | # base-system@gentoo.org |
| 8 | # @BLURB: Regenerates auto* build scripts |
8 | # @BLURB: Regenerates auto* build scripts |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # This eclass is for safely handling autotooled software packages that need to |
10 | # This eclass is for safely handling autotooled software packages that need to |
| 11 | # regenerate their build scripts. All functions will abort in case of errors. |
11 | # regenerate their build scripts. All functions will abort in case of errors. |
| 12 | # |
12 | |
| 13 | # NB: If you add anything, please comment it! |
13 | # Note: We require GNU m4, as does autoconf. So feel free to use any features |
|
|
14 | # from the GNU version of m4 without worrying about other variants (i.e. BSD). |
|
|
15 | |
|
|
16 | if [[ ${___ECLASS_ONCE_AUTOTOOLS} != "recur -_+^+_- spank" ]] ; then |
|
|
17 | ___ECLASS_ONCE_AUTOTOOLS="recur -_+^+_- spank" |
| 14 | |
18 | |
| 15 | inherit eutils libtool |
19 | inherit eutils libtool |
| 16 | |
20 | |
| 17 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
21 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
| 18 | # @DESCRIPTION: |
22 | # @DESCRIPTION: |
| … | |
… | |
| 99 | # @DESCRIPTION: |
103 | # @DESCRIPTION: |
| 100 | # Don't run elibtoolize command if set to 'yes', |
104 | # Don't run elibtoolize command if set to 'yes', |
| 101 | # useful when elibtoolize needs to be ran with |
105 | # useful when elibtoolize needs to be ran with |
| 102 | # particular options |
106 | # particular options |
| 103 | |
107 | |
| 104 | # XXX: M4DIR should be deprecated |
|
|
| 105 | # @ECLASS-VARIABLE: AT_M4DIR |
108 | # @ECLASS-VARIABLE: AT_M4DIR |
| 106 | # @DESCRIPTION: |
109 | # @DESCRIPTION: |
| 107 | # Additional director(y|ies) aclocal should search |
110 | # Additional director(y|ies) aclocal should search |
| 108 | : ${AT_M4DIR:=${M4DIR}} |
111 | : ${AT_M4DIR:=} |
|
|
112 | |
|
|
113 | # @ECLASS-VARIABLE: AT_SYS_M4DIR |
|
|
114 | # @INTERNAL |
|
|
115 | # @DESCRIPTION: |
|
|
116 | # For system integrators, a list of additional aclocal search paths. |
|
|
117 | # This variable gets eval-ed, so you can use variables in the definition |
|
|
118 | # that may not be valid until eautoreconf & friends are run. |
|
|
119 | : ${AT_SYS_M4DIR:=} |
| 109 | |
120 | |
| 110 | # @FUNCTION: eautoreconf |
121 | # @FUNCTION: eautoreconf |
| 111 | # @DESCRIPTION: |
122 | # @DESCRIPTION: |
| 112 | # This function mimes the behavior of autoreconf, but uses the different |
123 | # This function mimes the behavior of autoreconf, but uses the different |
| 113 | # eauto* functions to run the tools. It doesn't accept parameters, but |
124 | # eauto* functions to run the tools. It doesn't accept parameters, but |
| … | |
… | |
| 146 | |
157 | |
| 147 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
158 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
| 148 | |
159 | |
| 149 | # Call it here to prevent failures due to elibtoolize called _before_ |
160 | # Call it here to prevent failures due to elibtoolize called _before_ |
| 150 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
161 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
| 151 | S=${PWD} elibtoolize |
162 | S=${PWD} elibtoolize --force |
| 152 | |
163 | |
| 153 | return 0 |
164 | return 0 |
|
|
165 | } |
|
|
166 | |
|
|
167 | # @FUNCTION: eaclocal_amflags |
|
|
168 | # @DESCRIPTION: |
|
|
169 | # Extract the ACLOCAL_AMFLAGS value from the Makefile.am and try to handle |
|
|
170 | # (most) of the crazy crap that people throw at us. |
|
|
171 | eaclocal_amflags() { |
|
|
172 | local aclocal_opts amflags_file |
|
|
173 | |
|
|
174 | for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do |
|
|
175 | [[ -e ${amflags_file} ]] || continue |
|
|
176 | # setup the env in case the pkg does something crazy |
|
|
177 | # in their ACLOCAL_AMFLAGS. like run a shell script |
|
|
178 | # which turns around and runs autotools. #365401 |
|
|
179 | # or split across multiple lines. #383525 |
|
|
180 | autotools_env_setup |
|
|
181 | aclocal_opts=$(sed -n \ |
|
|
182 | "/^ACLOCAL_AMFLAGS[[:space:]]*=/{ \ |
|
|
183 | # match the first line |
|
|
184 | s:[^=]*=::p; \ |
|
|
185 | # then gobble up all escaped lines |
|
|
186 | : nextline /\\\\$/{ n; p; b nextline; } \ |
|
|
187 | }" ${amflags_file}) |
|
|
188 | eval aclocal_opts=\""${aclocal_opts}"\" |
|
|
189 | break |
|
|
190 | done |
|
|
191 | |
|
|
192 | echo ${aclocal_opts} |
| 154 | } |
193 | } |
| 155 | |
194 | |
| 156 | # @FUNCTION: eaclocal |
195 | # @FUNCTION: eaclocal |
| 157 | # @DESCRIPTION: |
196 | # @DESCRIPTION: |
| 158 | # These functions runs the autotools using autotools_run_tool with the |
197 | # These functions runs the autotools using autotools_run_tool with the |
| 159 | # specified parametes. The name of the tool run is the same of the function |
198 | # specified parametes. The name of the tool run is the same of the function |
| 160 | # without e prefix. |
199 | # without e prefix. |
| 161 | # They also force installing the support files for safety. |
200 | # They also force installing the support files for safety. |
| 162 | # Respects AT_M4DIR for additional directories to search for macro's. |
201 | # Respects AT_M4DIR for additional directories to search for macro's. |
| 163 | eaclocal() { |
202 | eaclocal() { |
| 164 | local aclocal_opts |
|
|
| 165 | |
|
|
| 166 | local amflags_file |
|
|
| 167 | for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do |
|
|
| 168 | [[ -e ${amflags_file} ]] || continue |
|
|
| 169 | # setup the env in case the pkg does something crazy |
|
|
| 170 | # in their ACLOCAL_AMFLAGS. like run a shell script |
|
|
| 171 | # which turns around and runs autotools #365401 |
|
|
| 172 | autotools_env_setup |
|
|
| 173 | aclocal_opts=$(sed -n '/^ACLOCAL_AMFLAGS[[:space:]]*=/s:[^=]*=::p' ${amflags_file}) |
|
|
| 174 | eval aclocal_opts=\"${aclocal_opts}\" |
|
|
| 175 | break |
|
|
| 176 | done |
|
|
| 177 | |
|
|
| 178 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
203 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
| 179 | autotools_run_tool aclocal $(autotools_m4dir_include) "$@" ${aclocal_opts} |
204 | autotools_run_tool --at-m4flags aclocal "$@" $(eaclocal_amflags) |
| 180 | } |
205 | } |
| 181 | |
206 | |
| 182 | # @FUNCTION: _elibtoolize |
207 | # @FUNCTION: _elibtoolize |
| 183 | # @DESCRIPTION: |
208 | # @DESCRIPTION: |
| 184 | # Runs libtoolize. Note the '_' prefix .. to not collide with elibtoolize() from |
209 | # Runs libtoolize. Note the '_' prefix .. to not collide with elibtoolize() from |
| … | |
… | |
| 203 | # @DESCRIPTION: |
228 | # @DESCRIPTION: |
| 204 | # Runs autoheader. |
229 | # Runs autoheader. |
| 205 | eautoheader() { |
230 | eautoheader() { |
| 206 | # Check if we should run autoheader |
231 | # Check if we should run autoheader |
| 207 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
232 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
| 208 | NO_FAIL=1 autotools_run_tool autoheader $(autotools_m4dir_include) "$@" |
233 | autotools_run_tool --at-no-fail --at-m4flags autoheader "$@" |
| 209 | } |
234 | } |
| 210 | |
235 | |
| 211 | # @FUNCTION: eautoconf |
236 | # @FUNCTION: eautoconf |
| 212 | # @DESCRIPTION: |
237 | # @DESCRIPTION: |
| 213 | # Runs autoconf. |
238 | # Runs autoconf. |
| … | |
… | |
| 217 | eerror "No configure.{ac,in} present in '${PWD}'!" |
242 | eerror "No configure.{ac,in} present in '${PWD}'!" |
| 218 | echo |
243 | echo |
| 219 | die "No configure.{ac,in} present!" |
244 | die "No configure.{ac,in} present!" |
| 220 | fi |
245 | fi |
| 221 | |
246 | |
| 222 | autotools_run_tool autoconf $(autotools_m4dir_include) "$@" |
247 | autotools_run_tool --at-m4flags autoconf "$@" |
| 223 | } |
248 | } |
| 224 | |
249 | |
| 225 | # @FUNCTION: eautomake |
250 | # @FUNCTION: eautomake |
| 226 | # @DESCRIPTION: |
251 | # @DESCRIPTION: |
| 227 | # Runs automake. |
252 | # Runs automake. |
| 228 | eautomake() { |
253 | eautomake() { |
| 229 | local extra_opts |
254 | local extra_opts |
| 230 | local makefile_name |
255 | local makefile_name |
| 231 | |
256 | |
|
|
257 | # Some packages might need to skip automake |
|
|
258 | # OpenLDAP is a good example. It does not use automake (all the .in files are |
|
|
259 | # handwritten), but it does AM_INIT_AUTOMAKE in configure.in, for all the |
|
|
260 | # other macros involved |
|
|
261 | [[ ${WANT_AUTOMAKE} == "none" ]] && return 0 |
|
|
262 | |
| 232 | # Run automake if: |
263 | # Run automake if: |
| 233 | # - a Makefile.am type file exists |
264 | # - 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 |
265 | # - the configure script is using the AM_INIT_AUTOMAKE directive |
| 236 | for makefile_name in {GNUmakefile,{M,m}akefile}.{am,in} "" ; do |
266 | for makefile_name in {GNUmakefile,{M,m}akefile}.am "" ; do |
| 237 | [[ -f ${makefile_name} ]] && break |
267 | [[ -f ${makefile_name} ]] && break |
| 238 | done |
268 | done |
| 239 | [[ -z ${makefile_name} ]] && return 0 |
|
|
| 240 | |
269 | |
| 241 | if [[ ${makefile_name} == *.in ]] ; then |
270 | if [[ -z ${makefile_name} ]] ; then |
| 242 | if ! grep -qs AM_INIT_AUTOMAKE configure.?? ; then |
271 | if ! grep -qs AM_INIT_AUTOMAKE configure.?? ; then |
| 243 | return 0 |
272 | return 0 |
| 244 | fi |
273 | fi |
| 245 | |
274 | |
| 246 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
275 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
| … | |
… | |
| 258 | eautoreconf |
287 | eautoreconf |
| 259 | return 0 |
288 | return 0 |
| 260 | fi |
289 | fi |
| 261 | fi |
290 | fi |
| 262 | |
291 | |
| 263 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS ]] \ |
292 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS && -f README ]] \ |
| 264 | || extra_opts="${extra_opts} --foreign" |
293 | || extra_opts="${extra_opts} --foreign" |
| 265 | |
294 | |
| 266 | # --force-missing seems not to be recognized by some flavours of automake |
295 | # --force-missing seems not to be recognized by some flavours of automake |
| 267 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
296 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 268 | } |
297 | } |
| … | |
… | |
| 270 | # @FUNCTION: eautopoint |
299 | # @FUNCTION: eautopoint |
| 271 | # @DESCRIPTION: |
300 | # @DESCRIPTION: |
| 272 | # Runs autopoint (from the gettext package). |
301 | # Runs autopoint (from the gettext package). |
| 273 | eautopoint() { |
302 | eautopoint() { |
| 274 | autotools_run_tool autopoint "$@" |
303 | autotools_run_tool autopoint "$@" |
|
|
304 | } |
|
|
305 | |
|
|
306 | # @FUNCTION: config_rpath_update |
|
|
307 | # @USAGE: [destination] |
|
|
308 | # @DESCRIPTION: |
|
|
309 | # Some packages utilize the config.rpath helper script, but don't |
|
|
310 | # use gettext directly. So we have to copy it in manually since |
|
|
311 | # we can't let `autopoint` do it for us. |
|
|
312 | config_rpath_update() { |
|
|
313 | local dst src=$(type -P gettext | sed 's:bin/gettext:share/gettext/config.rpath:') |
|
|
314 | |
|
|
315 | [[ $# -eq 0 ]] && set -- $(find -name config.rpath) |
|
|
316 | [[ $# -eq 0 ]] && return 0 |
|
|
317 | |
|
|
318 | einfo "Updating all config.rpath files" |
|
|
319 | for dst in "$@" ; do |
|
|
320 | einfo " ${dst}" |
|
|
321 | cp "${src}" "${dst}" || die |
|
|
322 | done |
| 275 | } |
323 | } |
| 276 | |
324 | |
| 277 | # Internal function to run an autotools' tool |
325 | # Internal function to run an autotools' tool |
| 278 | autotools_env_setup() { |
326 | autotools_env_setup() { |
| 279 | # We do the “latest” → version switch here because it solves |
327 | # We do the “latest” → version switch here because it solves |
| … | |
… | |
| 289 | die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}" |
337 | die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}" |
| 290 | fi |
338 | fi |
| 291 | [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 |
339 | [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 |
| 292 | } |
340 | } |
| 293 | autotools_run_tool() { |
341 | autotools_run_tool() { |
|
|
342 | # Process our own internal flags first |
|
|
343 | local autofail=true m4flags=false |
|
|
344 | while [[ -n $1 ]] ; do |
|
|
345 | case $1 in |
|
|
346 | --at-no-fail) autofail=false;; |
|
|
347 | --at-m4flags) m4flags=true;; |
|
|
348 | # whatever is left goes to the actual tool |
|
|
349 | *) break;; |
|
|
350 | esac |
|
|
351 | shift |
|
|
352 | done |
|
|
353 | |
| 294 | if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then |
354 | if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then |
| 295 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
355 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
| 296 | fi |
356 | fi |
| 297 | |
357 | |
| 298 | autotools_env_setup |
358 | autotools_env_setup |
| … | |
… | |
| 307 | [[ -e ${STDERR_TARGET} ]] || break |
367 | [[ -e ${STDERR_TARGET} ]] || break |
| 308 | : $(( i++ )) |
368 | : $(( i++ )) |
| 309 | done |
369 | done |
| 310 | fi |
370 | fi |
| 311 | |
371 | |
|
|
372 | if ${m4flags} ; then |
|
|
373 | set -- "${1}" $(autotools_m4dir_include) "${@:2}" $(autotools_m4sysdir_include) |
|
|
374 | fi |
|
|
375 | |
| 312 | printf "***** $1 *****\n***** PWD: ${PWD}\n***** $*\n\n" > "${STDERR_TARGET}" |
376 | printf "***** $1 *****\n***** PWD: ${PWD}\n***** $*\n\n" > "${STDERR_TARGET}" |
| 313 | |
377 | |
| 314 | ebegin "Running $@" |
378 | ebegin "Running $@" |
| 315 | "$@" >> "${STDERR_TARGET}" 2>&1 |
379 | "$@" >> "${STDERR_TARGET}" 2>&1 |
| 316 | eend $? |
380 | if ! eend $? && ${autofail} ; then |
| 317 | |
|
|
| 318 | if [[ $? != 0 && ${NO_FAIL} != 1 ]] ; then |
|
|
| 319 | echo |
381 | echo |
| 320 | eerror "Failed Running $1 !" |
382 | eerror "Failed Running $1 !" |
| 321 | eerror |
383 | eerror |
| 322 | eerror "Include in your bugreport the contents of:" |
384 | eerror "Include in your bugreport the contents of:" |
| 323 | eerror |
385 | eerror |
| … | |
… | |
| 335 | WANT_AUTOCONF="2.5" autoconf $(autotools_m4dir_include) --trace="${macro}" 2>/dev/null |
397 | WANT_AUTOCONF="2.5" autoconf $(autotools_m4dir_include) --trace="${macro}" 2>/dev/null |
| 336 | done |
398 | done |
| 337 | return 0 |
399 | return 0 |
| 338 | } |
400 | } |
| 339 | |
401 | |
|
|
402 | # Internal function to look for a macro and extract its value |
|
|
403 | autotools_check_macro_val() { |
|
|
404 | local macro=$1 scan_out |
|
|
405 | |
|
|
406 | autotools_check_macro "${macro}" | \ |
|
|
407 | gawk -v macro="${macro}" \ |
|
|
408 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
|
|
409 | if (match($0, macro ":(.*)$", res)) |
|
|
410 | print res[1] |
|
|
411 | }' | uniq |
|
|
412 | |
|
|
413 | return 0 |
|
|
414 | } |
|
|
415 | |
| 340 | # Internal function to get additional subdirs to configure |
416 | # Internal function to get additional subdirs to configure |
| 341 | autotools_get_subdirs() { |
417 | autotools_get_subdirs() { autotools_check_macro_val AC_CONFIG_SUBDIRS ; } |
| 342 | local subdirs_scan_out |
418 | autotools_get_auxdir() { autotools_check_macro_val AC_CONFIG_AUX_DIR ; } |
| 343 | |
419 | |
| 344 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
|
|
| 345 | [[ -n ${subdirs_scan_out} ]] || return 0 |
|
|
| 346 | |
|
|
| 347 | echo "${subdirs_scan_out}" | gawk \ |
|
|
| 348 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
|
|
| 349 | if (match($0, /AC_CONFIG_SUBDIRS:(.*)$/, res)) |
|
|
| 350 | print res[1] |
|
|
| 351 | }' | uniq |
|
|
| 352 | |
|
|
| 353 | return 0 |
|
|
| 354 | } |
|
|
| 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() { |
420 | _autotools_m4dir_include() { |
| 372 | [[ -n ${AT_M4DIR} ]] || return |
|
|
| 373 | |
|
|
| 374 | local include_opts= |
421 | local x include_opts |
| 375 | |
422 | |
| 376 | for x in ${AT_M4DIR} ; do |
423 | for x in "$@" ; do |
| 377 | case "${x}" in |
424 | case ${x} in |
| 378 | "-I") |
|
|
| 379 | # We handle it below |
425 | # We handle it below |
| 380 | ;; |
426 | -I) ;; |
| 381 | *) |
427 | *) |
| 382 | [[ ! -d ${x} ]] && ewarn "autotools.eclass: '${x}' does not exist" |
428 | [[ ! -d ${x} ]] && ewarn "autotools.eclass: '${x}' does not exist" |
| 383 | include_opts="${include_opts} -I ${x}" |
429 | include_opts+=" -I ${x}" |
| 384 | ;; |
430 | ;; |
| 385 | esac |
431 | esac |
| 386 | done |
432 | done |
| 387 | |
433 | |
| 388 | echo $include_opts |
434 | echo ${include_opts} |
| 389 | } |
435 | } |
|
|
436 | autotools_m4dir_include() { _autotools_m4dir_include ${AT_M4DIR} ; } |
|
|
437 | autotools_m4sysdir_include() { _autotools_m4dir_include $(eval echo ${AT_SYS_M4DIR}) ; } |
|
|
438 | |
|
|
439 | fi |