| 1 | # Copyright 1999-2012 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.128 2012/03/21 21:51:32 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.134 2012/05/20 12:31:32 vapier 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 |
| … | |
… | |
| 14 | # from the GNU version of m4 without worrying about other variants (i.e. BSD). |
14 | # from the GNU version of m4 without worrying about other variants (i.e. BSD). |
| 15 | |
15 | |
| 16 | if [[ ${___ECLASS_ONCE_AUTOTOOLS} != "recur -_+^+_- spank" ]] ; then |
16 | if [[ ${___ECLASS_ONCE_AUTOTOOLS} != "recur -_+^+_- spank" ]] ; then |
| 17 | ___ECLASS_ONCE_AUTOTOOLS="recur -_+^+_- spank" |
17 | ___ECLASS_ONCE_AUTOTOOLS="recur -_+^+_- spank" |
| 18 | |
18 | |
| 19 | inherit eutils libtool |
19 | inherit libtool |
| 20 | |
20 | |
| 21 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
21 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
| 22 | # @DESCRIPTION: |
22 | # @DESCRIPTION: |
| 23 | # The major version of autoconf your package needs |
23 | # The major version of autoconf your package needs |
| 24 | : ${WANT_AUTOCONF:=latest} |
24 | : ${WANT_AUTOCONF:=latest} |
| … | |
… | |
| 47 | |
47 | |
| 48 | _automake_atom="sys-devel/automake" |
48 | _automake_atom="sys-devel/automake" |
| 49 | _autoconf_atom="sys-devel/autoconf" |
49 | _autoconf_atom="sys-devel/autoconf" |
| 50 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
50 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
| 51 | case ${WANT_AUTOMAKE} in |
51 | case ${WANT_AUTOMAKE} in |
| 52 | none) _automake_atom="" ;; # some packages don't require automake at all |
52 | # Even if the package doesn't use automake, we still need to depend |
| 53 | # if you change the "latest" version here, change also autotools_run_tool |
53 | # on it because we run aclocal to process m4 macros. This matches |
| 54 | # this MUST reflect the latest stable major version for each arch! |
54 | # the autoreconf tool, so this requirement is correct. #401605 |
|
|
55 | none) ;; |
| 55 | latest) |
56 | latest) |
| 56 | # Use SLOT deps if we can. For EAPI=0, we get pretty close. |
57 | # Use SLOT deps if we can. For EAPI=0, we get pretty close. |
| 57 | if [[ ${EAPI:-0} != 0 ]] ; then |
58 | if [[ ${EAPI:-0} != 0 ]] ; then |
| 58 | _automake_atom="|| ( `printf '>=sys-devel/automake-%s:%s ' ${_LATEST_AUTOMAKE[@]/:/ }` )" |
59 | _automake_atom="|| ( `printf '>=sys-devel/automake-%s:%s ' ${_LATEST_AUTOMAKE[@]/:/ }` )" |
| 59 | else |
60 | else |
| … | |
… | |
| 105 | # @DEFAULT_UNSET |
106 | # @DEFAULT_UNSET |
| 106 | # @DESCRIPTION: |
107 | # @DESCRIPTION: |
| 107 | # Additional options to pass to automake during |
108 | # Additional options to pass to automake during |
| 108 | # eautoreconf call. |
109 | # eautoreconf call. |
| 109 | |
110 | |
| 110 | # @ECLASS-VARIABLE: AT_NOEACLOCAL |
|
|
| 111 | # @DEFAULT_UNSET |
|
|
| 112 | # @DESCRIPTION: |
|
|
| 113 | # Don't run eaclocal command if set to 'yes', |
|
|
| 114 | # useful when eaclocal needs to be ran with |
|
|
| 115 | # particular options |
|
|
| 116 | |
|
|
| 117 | # @ECLASS-VARIABLE: AT_NOEAUTOCONF |
|
|
| 118 | # @DEFAULT_UNSET |
|
|
| 119 | # @DESCRIPTION: |
|
|
| 120 | # Don't run eautoconf command if set to 'yes', |
|
|
| 121 | # useful when eautoconf needs to be ran with |
|
|
| 122 | # particular options |
|
|
| 123 | |
|
|
| 124 | # @ECLASS-VARIABLE: AT_NOEAUTOMAKE |
111 | # @ECLASS-VARIABLE: AT_NOEAUTOMAKE |
| 125 | # @DEFAULT_UNSET |
112 | # @DEFAULT_UNSET |
| 126 | # @DESCRIPTION: |
113 | # @DESCRIPTION: |
| 127 | # Don't run eautomake command if set to 'yes', |
114 | # Don't run eautomake command if set to 'yes'; only used to workaround |
| 128 | # useful when eautomake needs to be ran with |
115 | # broken packages. Generally you should, instead, fix the package to |
| 129 | # particular options |
116 | # not call AM_INIT_AUTOMAKE if it doesn't actually use automake. |
| 130 | |
117 | |
| 131 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
118 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
| 132 | # @DEFAULT_UNSET |
119 | # @DEFAULT_UNSET |
| 133 | # @DESCRIPTION: |
120 | # @DESCRIPTION: |
| 134 | # Don't run elibtoolize command if set to 'yes', |
121 | # Don't run elibtoolize command if set to 'yes', |
| … | |
… | |
| 155 | # the directory with include files can be specified with AT_M4DIR variable. |
142 | # the directory with include files can be specified with AT_M4DIR variable. |
| 156 | # |
143 | # |
| 157 | # Should do a full autoreconf - normally what most people will be interested in. |
144 | # Should do a full autoreconf - normally what most people will be interested in. |
| 158 | # Also should handle additional directories specified by AC_CONFIG_SUBDIRS. |
145 | # Also should handle additional directories specified by AC_CONFIG_SUBDIRS. |
| 159 | eautoreconf() { |
146 | eautoreconf() { |
| 160 | local x auxdir g |
147 | local x g |
| 161 | |
148 | |
| 162 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
149 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
| 163 | # Take care of subdirs |
150 | # Take care of subdirs |
| 164 | for x in $(autotools_get_subdirs); do |
151 | for x in $(autotools_get_subdirs); do |
| 165 | if [[ -d ${x} ]] ; then |
152 | if [[ -d ${x} ]] ; then |
| … | |
… | |
| 168 | popd >/dev/null |
155 | popd >/dev/null |
| 169 | fi |
156 | fi |
| 170 | done |
157 | done |
| 171 | fi |
158 | fi |
| 172 | |
159 | |
| 173 | auxdir=$(autotools_get_auxdir) |
160 | local auxdir=$(autotools_get_auxdir) |
|
|
161 | local macdir=$(autotools_get_macrodir) |
| 174 | |
162 | |
| 175 | if [[ ${AT_NOEACLOCAL} != "yes" ]]; then |
|
|
| 176 | einfo "Running eautoreconf in '${PWD}' ..." |
163 | einfo "Running eautoreconf in '${PWD}' ..." |
| 177 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
164 | [[ -n ${auxdir}${macdir} ]] && mkdir -p ${auxdir} ${macdir} |
| 178 | eaclocal |
165 | eaclocal |
|
|
166 | if grep -q '^AM_GNU_GETTEXT_VERSION' configure.?? ; then |
|
|
167 | eautopoint --force |
| 179 | fi |
168 | fi |
| 180 | [[ ${CHOST} == *-darwin* ]] && g=g |
169 | [[ ${CHOST} == *-darwin* ]] && g=g |
| 181 | if ${LIBTOOLIZE:-${g}libtoolize} -n --install >& /dev/null ; then |
170 | if ${LIBTOOLIZE:-${g}libtoolize} -n --install >& /dev/null ; then |
| 182 | _elibtoolize --copy --force --install |
171 | _elibtoolize --copy --force --install |
| 183 | else |
172 | else |
| 184 | _elibtoolize --copy --force |
173 | _elibtoolize --copy --force |
| 185 | fi |
174 | fi |
| 186 | [[ ${AT_NOEAUTOCONF} != "yes" ]] && eautoconf |
175 | eautoconf |
| 187 | [[ ${AT_NOEAUTOHEADER} != "yes" ]] && eautoheader |
176 | eautoheader |
| 188 | [[ ${AT_NOEAUTOMAKE} != "yes" ]] && FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
177 | [[ ${AT_NOEAUTOMAKE} != "yes" ]] && FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
| 189 | |
178 | |
| 190 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
179 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
| 191 | |
180 | |
| 192 | # Call it here to prevent failures due to elibtoolize called _before_ |
181 | # Call it here to prevent failures due to elibtoolize called _before_ |
| … | |
… | |
| 292 | for makefile_name in {GNUmakefile,{M,m}akefile}.am "" ; do |
281 | for makefile_name in {GNUmakefile,{M,m}akefile}.am "" ; do |
| 293 | [[ -f ${makefile_name} ]] && break |
282 | [[ -f ${makefile_name} ]] && break |
| 294 | done |
283 | done |
| 295 | |
284 | |
| 296 | if [[ -z ${makefile_name} ]] ; then |
285 | if [[ -z ${makefile_name} ]] ; then |
| 297 | if ! grep -qs AM_INIT_AUTOMAKE configure.?? ; then |
286 | # Really we should just use autotools_check_macro ... |
|
|
287 | local am_init_automake=$(sed -n '/AM_INIT_AUTOMAKE/{s:#.*::;s:\<dnl\>.*::;p}' configure.??) |
|
|
288 | if [[ ${am_init_automake} != *"AM_INIT_AUTOMAKE"* ]] ; then |
| 298 | return 0 |
289 | return 0 |
| 299 | fi |
290 | fi |
| 300 | |
291 | |
| 301 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
292 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
| 302 | local used_automake |
293 | local used_automake |
| … | |
… | |
| 440 | } |
431 | } |
| 441 | |
432 | |
| 442 | # Internal function to get additional subdirs to configure |
433 | # Internal function to get additional subdirs to configure |
| 443 | autotools_get_subdirs() { autotools_check_macro_val AC_CONFIG_SUBDIRS ; } |
434 | autotools_get_subdirs() { autotools_check_macro_val AC_CONFIG_SUBDIRS ; } |
| 444 | autotools_get_auxdir() { autotools_check_macro_val AC_CONFIG_AUX_DIR ; } |
435 | autotools_get_auxdir() { autotools_check_macro_val AC_CONFIG_AUX_DIR ; } |
|
|
436 | autotools_get_macrodir() { autotools_check_macro_val AC_CONFIG_MACRO_DIR ; } |
| 445 | |
437 | |
| 446 | _autotools_m4dir_include() { |
438 | _autotools_m4dir_include() { |
| 447 | local x include_opts |
439 | local x include_opts |
| 448 | |
440 | |
| 449 | for x in "$@" ; do |
441 | for x in "$@" ; do |