| 1 | # Copyright 1999-2010 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.98 2010/05/23 22:52:41 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 |
| 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 | # |
|
|
| 13 | # NB: If you add anything, please comment it! |
|
|
| 14 | |
12 | |
|
|
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" |
|
|
18 | |
| 15 | inherit eutils libtool |
19 | inherit libtool |
| 16 | |
20 | |
| 17 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
21 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
| 18 | # @DESCRIPTION: |
22 | # @DESCRIPTION: |
| 19 | # The major version of autoconf your package needs |
23 | # The major version of autoconf your package needs |
| 20 | : ${WANT_AUTOCONF:=latest} |
24 | : ${WANT_AUTOCONF:=latest} |
| … | |
… | |
| 22 | # @ECLASS-VARIABLE: WANT_AUTOMAKE |
26 | # @ECLASS-VARIABLE: WANT_AUTOMAKE |
| 23 | # @DESCRIPTION: |
27 | # @DESCRIPTION: |
| 24 | # The major version of automake your package needs |
28 | # The major version of automake your package needs |
| 25 | : ${WANT_AUTOMAKE:=latest} |
29 | : ${WANT_AUTOMAKE:=latest} |
| 26 | |
30 | |
|
|
31 | # @ECLASS-VARIABLE: WANT_LIBTOOL |
|
|
32 | # @DESCRIPTION: |
|
|
33 | # Do you want libtool? Valid values here are "latest" and "none". |
|
|
34 | : ${WANT_LIBTOOL:=latest} |
|
|
35 | |
| 27 | # @ECLASS-VARIABLE: _LATEST_AUTOMAKE |
36 | # @ECLASS-VARIABLE: _LATEST_AUTOMAKE |
|
|
37 | # @INTERNAL |
| 28 | # @DESCRIPTION: |
38 | # @DESCRIPTION: |
| 29 | # CONSTANT! |
39 | # CONSTANT! |
| 30 | # The latest major version/slot of automake available on each arch. |
40 | # The latest major version/slot of automake available on each arch. #312315 |
| 31 | # If a newer version is stable on any arch, and is NOT reflected in this list, |
41 | # If a newer slot is stable on any arch, and is NOT reflected in this list, |
| 32 | # then circular dependencies may arise during emerge @system bootstraps. |
42 | # then circular dependencies may arise during emerge @system bootstraps. |
| 33 | # Do NOT change this variable in your ebuilds! |
43 | # Do NOT change this variable in your ebuilds! |
|
|
44 | # If you want to force a newer minor version, you can specify the correct |
|
|
45 | # WANT value by using a colon: <PV>[:<WANT_AUTOMAKE>] |
| 34 | _LATEST_AUTOMAKE='1.11 1.10' |
46 | _LATEST_AUTOMAKE=( 1.11.1:1.11 ) |
| 35 | |
47 | |
| 36 | _automake_atom="sys-devel/automake" |
48 | _automake_atom="sys-devel/automake" |
| 37 | _autoconf_atom="sys-devel/autoconf" |
49 | _autoconf_atom="sys-devel/autoconf" |
| 38 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
50 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
| 39 | case ${WANT_AUTOMAKE} in |
51 | case ${WANT_AUTOMAKE} in |
| 40 | 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 |
| 41 | # 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 |
| 42 | # this MUST reflect the latest stable major version for each arch! |
54 | # the autoreconf tool, so this requirement is correct. #401605 |
|
|
55 | none) ;; |
| 43 | latest) |
56 | latest) |
| 44 | t="" |
57 | # Use SLOT deps if we can. For EAPI=0, we get pretty close. |
| 45 | for v in ${_LATEST_AUTOMAKE} ; do |
58 | if [[ ${EAPI:-0} != 0 ]] ; then |
| 46 | t="${t} =sys-devel/automake-${v}*" |
59 | _automake_atom="|| ( `printf '>=sys-devel/automake-%s:%s ' ${_LATEST_AUTOMAKE[@]/:/ }` )" |
| 47 | done |
60 | else |
| 48 | _automake_atom="|| ( ${t} )" |
61 | _automake_atom="|| ( `printf '>=sys-devel/automake-%s ' ${_LATEST_AUTOMAKE[@]/%:*}` )" |
| 49 | unset t v |
62 | fi |
| 50 | ;; |
63 | ;; |
| 51 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
64 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
| 52 | esac |
65 | esac |
| 53 | export WANT_AUTOMAKE |
66 | export WANT_AUTOMAKE |
| 54 | fi |
67 | fi |
| 55 | |
68 | |
| 56 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
69 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
| 57 | case ${WANT_AUTOCONF} in |
70 | case ${WANT_AUTOCONF} in |
| 58 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
71 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
| 59 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
72 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
| 60 | # if you change the “latest” version here, change also autotools_run_tool |
73 | # if you change the "latest" version here, change also autotools_env_setup |
| 61 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.61" ;; |
74 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.68" ;; |
| 62 | *) _autoconf_atom="INCORRECT-WANT_AUTOCONF-SETTING-IN-EBUILD" ;; |
75 | *) die "Invalid WANT_AUTOCONF value '${WANT_AUTOCONF}'" ;; |
| 63 | esac |
76 | esac |
| 64 | export WANT_AUTOCONF |
77 | export WANT_AUTOCONF |
| 65 | fi |
78 | fi |
| 66 | |
79 | |
|
|
80 | _libtool_atom="sys-devel/libtool" |
|
|
81 | if [[ -n ${WANT_LIBTOOL} ]] ; then |
|
|
82 | case ${WANT_LIBTOOL} in |
|
|
83 | none) _libtool_atom="" ;; |
|
|
84 | latest) ;; |
|
|
85 | *) die "Invalid WANT_LIBTOOL value '${WANT_LIBTOOL}'" ;; |
|
|
86 | esac |
|
|
87 | export WANT_LIBTOOL |
|
|
88 | fi |
|
|
89 | |
| 67 | AUTOTOOLS_DEPEND="${_automake_atom} ${_autoconf_atom}" |
90 | AUTOTOOLS_DEPEND="${_automake_atom} ${_autoconf_atom} ${_libtool_atom}" |
| 68 | [[ ${CATEGORY}/${PN} != "sys-devel/libtool" ]] && AUTOTOOLS_DEPEND="${AUTOTOOLS_DEPEND} >=sys-devel/libtool-2.2.6b" |
|
|
| 69 | RDEPEND="" |
91 | RDEPEND="" |
| 70 | |
92 | |
| 71 | # @ECLASS-VARIABLE: AUTOTOOLS_AUTO_DEPEND |
93 | # @ECLASS-VARIABLE: AUTOTOOLS_AUTO_DEPEND |
| 72 | # @DESCRIPTION: |
94 | # @DESCRIPTION: |
| 73 | # Set to 'no' to disable automatically adding to DEPEND. This lets |
95 | # Set to 'no' to disable automatically adding to DEPEND. This lets |
| … | |
… | |
| 79 | fi |
101 | fi |
| 80 | |
102 | |
| 81 | unset _automake_atom _autoconf_atom |
103 | unset _automake_atom _autoconf_atom |
| 82 | |
104 | |
| 83 | # @ECLASS-VARIABLE: AM_OPTS |
105 | # @ECLASS-VARIABLE: AM_OPTS |
|
|
106 | # @DEFAULT_UNSET |
| 84 | # @DESCRIPTION: |
107 | # @DESCRIPTION: |
| 85 | # Additional options to pass to automake during |
108 | # Additional options to pass to automake during |
| 86 | # eautoreconf call. |
109 | # eautoreconf call. |
| 87 | |
110 | |
|
|
111 | # @ECLASS-VARIABLE: AT_NOEAUTOMAKE |
|
|
112 | # @DEFAULT_UNSET |
|
|
113 | # @DESCRIPTION: |
|
|
114 | # Don't run eautomake command if set to 'yes'; only used to workaround |
|
|
115 | # broken packages. Generally you should, instead, fix the package to |
|
|
116 | # not call AM_INIT_AUTOMAKE if it doesn't actually use automake. |
|
|
117 | |
| 88 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
118 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
|
|
119 | # @DEFAULT_UNSET |
| 89 | # @DESCRIPTION: |
120 | # @DESCRIPTION: |
| 90 | # Don't run elibtoolize command if set to 'yes', |
121 | # Don't run elibtoolize command if set to 'yes', |
| 91 | # useful when elibtoolize needs to be ran with |
122 | # useful when elibtoolize needs to be ran with |
| 92 | # particular options |
123 | # particular options |
| 93 | |
124 | |
| 94 | # XXX: M4DIR should be deprecated |
|
|
| 95 | # @ECLASS-VARIABLE: AT_M4DIR |
125 | # @ECLASS-VARIABLE: AT_M4DIR |
| 96 | # @DESCRIPTION: |
126 | # @DESCRIPTION: |
| 97 | # Additional director(y|ies) aclocal should search |
127 | # Additional director(y|ies) aclocal should search |
| 98 | : ${AT_M4DIR:=${M4DIR}} |
128 | : ${AT_M4DIR:=} |
| 99 | AT_GNUCONF_UPDATE="no" |
|
|
| 100 | |
129 | |
|
|
130 | # @ECLASS-VARIABLE: AT_SYS_M4DIR |
|
|
131 | # @INTERNAL |
|
|
132 | # @DESCRIPTION: |
|
|
133 | # For system integrators, a list of additional aclocal search paths. |
|
|
134 | # This variable gets eval-ed, so you can use variables in the definition |
|
|
135 | # that may not be valid until eautoreconf & friends are run. |
|
|
136 | : ${AT_SYS_M4DIR:=} |
| 101 | |
137 | |
| 102 | # @FUNCTION: eautoreconf |
138 | # @FUNCTION: eautoreconf |
| 103 | # @DESCRIPTION: |
139 | # @DESCRIPTION: |
| 104 | # This function mimes the behavior of autoreconf, but uses the different |
140 | # This function mimes the behavior of autoreconf, but uses the different |
| 105 | # eauto* functions to run the tools. It doesn't accept parameters, but |
141 | # eauto* functions to run the tools. It doesn't accept parameters, but |
| 106 | # 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. |
| 107 | # |
143 | # |
| 108 | # 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. |
| 109 | # Also should handle additional directories specified by AC_CONFIG_SUBDIRS. |
145 | # Also should handle additional directories specified by AC_CONFIG_SUBDIRS. |
| 110 | eautoreconf() { |
146 | eautoreconf() { |
| 111 | local x auxdir g |
147 | local x g |
| 112 | |
148 | |
| 113 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
149 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
| 114 | # Take care of subdirs |
150 | # Take care of subdirs |
| 115 | for x in $(autotools_get_subdirs); do |
151 | for x in $(autotools_get_subdirs); do |
| 116 | if [[ -d ${x} ]] ; then |
152 | if [[ -d ${x} ]] ; then |
| … | |
… | |
| 119 | popd >/dev/null |
155 | popd >/dev/null |
| 120 | fi |
156 | fi |
| 121 | done |
157 | done |
| 122 | fi |
158 | fi |
| 123 | |
159 | |
| 124 | auxdir=$(autotools_get_auxdir) |
160 | local auxdir=$(autotools_get_auxdir) |
|
|
161 | local macdir=$(autotools_get_macrodir) |
| 125 | |
162 | |
| 126 | einfo "Running eautoreconf in '${PWD}' ..." |
163 | einfo "Running eautoreconf in '${PWD}' ..." |
| 127 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
164 | [[ -n ${auxdir}${macdir} ]] && mkdir -p ${auxdir} ${macdir} |
| 128 | eaclocal |
165 | eaclocal |
|
|
166 | if grep -q '^AM_GNU_GETTEXT_VERSION' configure.?? ; then |
|
|
167 | eautopoint --force |
|
|
168 | fi |
| 129 | [[ ${CHOST} == *-darwin* ]] && g=g |
169 | [[ ${CHOST} == *-darwin* ]] && g=g |
| 130 | if ${LIBTOOLIZE:-${g}libtoolize} -n --install >& /dev/null ; then |
170 | if ${LIBTOOLIZE:-${g}libtoolize} -n --install >& /dev/null ; then |
| 131 | _elibtoolize --copy --force --install |
171 | _elibtoolize --copy --force --install |
| 132 | else |
172 | else |
| 133 | _elibtoolize --copy --force |
173 | _elibtoolize --copy --force |
| 134 | fi |
174 | fi |
| 135 | eautoconf |
175 | eautoconf |
| 136 | eautoheader |
176 | eautoheader |
| 137 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
177 | [[ ${AT_NOEAUTOMAKE} != "yes" ]] && FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
| 138 | |
178 | |
| 139 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
179 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
| 140 | |
180 | |
| 141 | # Call it here to prevent failures due to elibtoolize called _before_ |
181 | # Call it here to prevent failures due to elibtoolize called _before_ |
| 142 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
182 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
| 143 | S=${PWD} elibtoolize |
183 | S=${PWD} elibtoolize --force |
| 144 | |
184 | |
| 145 | return 0 |
185 | return 0 |
|
|
186 | } |
|
|
187 | |
|
|
188 | # @FUNCTION: eaclocal_amflags |
|
|
189 | # @DESCRIPTION: |
|
|
190 | # Extract the ACLOCAL_AMFLAGS value from the Makefile.am and try to handle |
|
|
191 | # (most) of the crazy crap that people throw at us. |
|
|
192 | eaclocal_amflags() { |
|
|
193 | local aclocal_opts amflags_file |
|
|
194 | |
|
|
195 | for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do |
|
|
196 | [[ -e ${amflags_file} ]] || continue |
|
|
197 | # setup the env in case the pkg does something crazy |
|
|
198 | # in their ACLOCAL_AMFLAGS. like run a shell script |
|
|
199 | # which turns around and runs autotools. #365401 |
|
|
200 | # or split across multiple lines. #383525 |
|
|
201 | autotools_env_setup |
|
|
202 | aclocal_opts=$(sed -n \ |
|
|
203 | "/^ACLOCAL_AMFLAGS[[:space:]]*=/{ \ |
|
|
204 | # match the first line |
|
|
205 | s:[^=]*=::p; \ |
|
|
206 | # then gobble up all escaped lines |
|
|
207 | : nextline /\\\\$/{ n; p; b nextline; } \ |
|
|
208 | }" ${amflags_file}) |
|
|
209 | eval aclocal_opts=\""${aclocal_opts}"\" |
|
|
210 | break |
|
|
211 | done |
|
|
212 | |
|
|
213 | echo ${aclocal_opts} |
| 146 | } |
214 | } |
| 147 | |
215 | |
| 148 | # @FUNCTION: eaclocal |
216 | # @FUNCTION: eaclocal |
| 149 | # @DESCRIPTION: |
217 | # @DESCRIPTION: |
| 150 | # These functions runs the autotools using autotools_run_tool with the |
218 | # These functions runs the autotools using autotools_run_tool with the |
| 151 | # specified parametes. The name of the tool run is the same of the function |
219 | # specified parametes. The name of the tool run is the same of the function |
| 152 | # without e prefix. |
220 | # without e prefix. |
| 153 | # They also force installing the support files for safety. |
221 | # They also force installing the support files for safety. |
| 154 | # Respects AT_M4DIR for additional directories to search for macro's. |
222 | # Respects AT_M4DIR for additional directories to search for macro's. |
| 155 | eaclocal() { |
223 | eaclocal() { |
| 156 | local aclocal_opts |
|
|
| 157 | |
|
|
| 158 | local amflags_file |
|
|
| 159 | for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do |
|
|
| 160 | [[ -e ${amflags_file} ]] || continue |
|
|
| 161 | aclocal_opts=$(sed -n '/^ACLOCAL_AMFLAGS[[:space:]]*=/s:[^=]*=::p' ${amflags_file}) |
|
|
| 162 | eval aclocal_opts=\"${aclocal_opts}\" |
|
|
| 163 | break |
|
|
| 164 | done |
|
|
| 165 | |
|
|
| 166 | if [[ -n ${AT_M4DIR} ]] ; then |
|
|
| 167 | for x in ${AT_M4DIR} ; do |
|
|
| 168 | case "${x}" in |
|
|
| 169 | "-I") |
|
|
| 170 | # We handle it below |
|
|
| 171 | ;; |
|
|
| 172 | *) |
|
|
| 173 | [[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist" |
|
|
| 174 | aclocal_opts="${aclocal_opts} -I ${x}" |
|
|
| 175 | ;; |
|
|
| 176 | esac |
|
|
| 177 | done |
|
|
| 178 | fi |
|
|
| 179 | |
|
|
| 180 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
224 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
| 181 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
225 | autotools_run_tool --at-m4flags aclocal "$@" $(eaclocal_amflags) |
| 182 | } |
226 | } |
| 183 | |
227 | |
| 184 | # @FUNCTION: _elibtoolize |
228 | # @FUNCTION: _elibtoolize |
| 185 | # @DESCRIPTION: |
229 | # @DESCRIPTION: |
| 186 | # Runs libtoolize. Note the '_' prefix .. to not collide with elibtoolize() from |
230 | # Runs libtoolize. Note the '_' prefix .. to not collide with elibtoolize() from |
| … | |
… | |
| 205 | # @DESCRIPTION: |
249 | # @DESCRIPTION: |
| 206 | # Runs autoheader. |
250 | # Runs autoheader. |
| 207 | eautoheader() { |
251 | eautoheader() { |
| 208 | # Check if we should run autoheader |
252 | # Check if we should run autoheader |
| 209 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
253 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
| 210 | NO_FAIL=1 autotools_run_tool autoheader "$@" |
254 | autotools_run_tool --at-no-fail --at-m4flags autoheader "$@" |
| 211 | } |
255 | } |
| 212 | |
256 | |
| 213 | # @FUNCTION: eautoconf |
257 | # @FUNCTION: eautoconf |
| 214 | # @DESCRIPTION: |
258 | # @DESCRIPTION: |
| 215 | # Runs autoconf. |
259 | # Runs autoconf. |
| … | |
… | |
| 219 | eerror "No configure.{ac,in} present in '${PWD}'!" |
263 | eerror "No configure.{ac,in} present in '${PWD}'!" |
| 220 | echo |
264 | echo |
| 221 | die "No configure.{ac,in} present!" |
265 | die "No configure.{ac,in} present!" |
| 222 | fi |
266 | fi |
| 223 | |
267 | |
| 224 | autotools_run_tool autoconf "$@" |
268 | autotools_run_tool --at-m4flags autoconf "$@" |
| 225 | } |
269 | } |
| 226 | |
270 | |
| 227 | # @FUNCTION: eautomake |
271 | # @FUNCTION: eautomake |
| 228 | # @DESCRIPTION: |
272 | # @DESCRIPTION: |
| 229 | # Runs automake. |
273 | # Runs automake. |
| … | |
… | |
| 231 | local extra_opts |
275 | local extra_opts |
| 232 | local makefile_name |
276 | local makefile_name |
| 233 | |
277 | |
| 234 | # Run automake if: |
278 | # Run automake if: |
| 235 | # - a Makefile.am type file exists |
279 | # - a Makefile.am type file exists |
| 236 | # - a Makefile.in type file exists and the configure |
|
|
| 237 | # script is using the AM_INIT_AUTOMAKE directive |
280 | # - the configure script is using the AM_INIT_AUTOMAKE directive |
| 238 | for makefile_name in {GNUmakefile,{M,m}akefile}.{am,in} "" ; do |
281 | for makefile_name in {GNUmakefile,{M,m}akefile}.am "" ; do |
| 239 | [[ -f ${makefile_name} ]] && break |
282 | [[ -f ${makefile_name} ]] && break |
| 240 | done |
283 | done |
| 241 | [[ -z ${makefile_name} ]] && return 0 |
|
|
| 242 | |
284 | |
| 243 | if [[ ${makefile_name} == *.in ]] ; then |
285 | if [[ -z ${makefile_name} ]] ; then |
| 244 | 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 |
| 245 | return 0 |
289 | return 0 |
| 246 | fi |
290 | fi |
| 247 | |
291 | |
| 248 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
292 | elif [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name%.am}.in ]]; then |
| 249 | local used_automake |
293 | local used_automake |
| … | |
… | |
| 260 | eautoreconf |
304 | eautoreconf |
| 261 | return 0 |
305 | return 0 |
| 262 | fi |
306 | fi |
| 263 | fi |
307 | fi |
| 264 | |
308 | |
| 265 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS ]] \ |
309 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS && -f README ]] \ |
| 266 | || extra_opts="${extra_opts} --foreign" |
310 | || extra_opts="${extra_opts} --foreign" |
| 267 | |
311 | |
| 268 | # --force-missing seems not to be recognized by some flavours of automake |
312 | # --force-missing seems not to be recognized by some flavours of automake |
| 269 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
313 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 270 | } |
314 | } |
| … | |
… | |
| 274 | # Runs autopoint (from the gettext package). |
318 | # Runs autopoint (from the gettext package). |
| 275 | eautopoint() { |
319 | eautopoint() { |
| 276 | autotools_run_tool autopoint "$@" |
320 | autotools_run_tool autopoint "$@" |
| 277 | } |
321 | } |
| 278 | |
322 | |
|
|
323 | # @FUNCTION: config_rpath_update |
|
|
324 | # @USAGE: [destination] |
|
|
325 | # @DESCRIPTION: |
|
|
326 | # Some packages utilize the config.rpath helper script, but don't |
|
|
327 | # use gettext directly. So we have to copy it in manually since |
|
|
328 | # we can't let `autopoint` do it for us. |
|
|
329 | config_rpath_update() { |
|
|
330 | local dst src=$(type -P gettext | sed 's:bin/gettext:share/gettext/config.rpath:') |
|
|
331 | |
|
|
332 | [[ $# -eq 0 ]] && set -- $(find -name config.rpath) |
|
|
333 | [[ $# -eq 0 ]] && return 0 |
|
|
334 | |
|
|
335 | einfo "Updating all config.rpath files" |
|
|
336 | for dst in "$@" ; do |
|
|
337 | einfo " ${dst}" |
|
|
338 | cp "${src}" "${dst}" || die |
|
|
339 | done |
|
|
340 | } |
|
|
341 | |
| 279 | # Internal function to run an autotools' tool |
342 | # Internal function to run an autotools' tool |
|
|
343 | autotools_env_setup() { |
|
|
344 | # We do the "latest" → version switch here because it solves |
|
|
345 | # possible order problems, see bug #270010 as an example. |
|
|
346 | if [[ ${WANT_AUTOMAKE} == "latest" ]]; then |
|
|
347 | local pv |
|
|
348 | for pv in ${_LATEST_AUTOMAKE[@]/#*:} ; do |
|
|
349 | # has_version respects ROOT, but in this case, we don't want it to, |
|
|
350 | # thus "ROOT=/" prefix: |
|
|
351 | ROOT=/ has_version "=sys-devel/automake-${pv}*" && export WANT_AUTOMAKE="${pv}" |
|
|
352 | done |
|
|
353 | [[ ${WANT_AUTOMAKE} == "latest" ]] && \ |
|
|
354 | die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}" |
|
|
355 | fi |
|
|
356 | [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 |
|
|
357 | } |
| 280 | autotools_run_tool() { |
358 | autotools_run_tool() { |
|
|
359 | # Process our own internal flags first |
|
|
360 | local autofail=true m4flags=false |
|
|
361 | while [[ -n $1 ]] ; do |
|
|
362 | case $1 in |
|
|
363 | --at-no-fail) autofail=false;; |
|
|
364 | --at-m4flags) m4flags=true;; |
|
|
365 | # whatever is left goes to the actual tool |
|
|
366 | *) break;; |
|
|
367 | esac |
|
|
368 | shift |
|
|
369 | done |
|
|
370 | |
| 281 | if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then |
371 | if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then |
| 282 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
372 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
| 283 | fi |
373 | fi |
| 284 | |
374 | |
| 285 | # We do the “latest” → version switch here because it solves |
375 | autotools_env_setup |
| 286 | # possible order problems, see bug #270010 as an example. |
|
|
| 287 | if [[ ${WANT_AUTOMAKE} == "latest" ]]; then |
|
|
| 288 | for pv in ${_LATEST_AUTOMAKE} ; do |
|
|
| 289 | # has_version respects ROOT, but in this case, we don't want it to, |
|
|
| 290 | # thus "ROOT=/" prefix: |
|
|
| 291 | ROOT=/ has_version "=sys-devel/automake-${pv}*" && export WANT_AUTOMAKE="$pv" |
|
|
| 292 | done |
|
|
| 293 | unset pv |
|
|
| 294 | [[ ${WANT_AUTOMAKE} == "latest" ]] && \ |
|
|
| 295 | die "Cannot find the latest automake! Tried ${_LATEST_AUTOMAKE}" |
|
|
| 296 | fi |
|
|
| 297 | [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 |
|
|
| 298 | |
376 | |
| 299 | local STDERR_TARGET="${T}/$1.out" |
377 | local STDERR_TARGET="${T}/$1.out" |
| 300 | # most of the time, there will only be one run, but if there are |
378 | # most of the time, there will only be one run, but if there are |
| 301 | # more, make sure we get unique log filenames |
379 | # more, make sure we get unique log filenames |
| 302 | if [[ -e ${STDERR_TARGET} ]] ; then |
380 | if [[ -e ${STDERR_TARGET} ]] ; then |
|
|
381 | local i=1 |
|
|
382 | while :; do |
| 303 | STDERR_TARGET="${T}/$1-$$.out" |
383 | STDERR_TARGET="${T}/$1-${i}.out" |
|
|
384 | [[ -e ${STDERR_TARGET} ]] || break |
|
|
385 | : $(( i++ )) |
|
|
386 | done |
|
|
387 | fi |
|
|
388 | |
|
|
389 | if ${m4flags} ; then |
|
|
390 | set -- "${1}" $(autotools_m4dir_include) "${@:2}" $(autotools_m4sysdir_include) |
| 304 | fi |
391 | fi |
| 305 | |
392 | |
| 306 | printf "***** $1 *****\n***** PWD: ${PWD}\n***** $*\n\n" > "${STDERR_TARGET}" |
393 | printf "***** $1 *****\n***** PWD: ${PWD}\n***** $*\n\n" > "${STDERR_TARGET}" |
| 307 | |
394 | |
| 308 | ebegin "Running $@" |
395 | ebegin "Running $@" |
| 309 | "$@" >> "${STDERR_TARGET}" 2>&1 |
396 | "$@" >> "${STDERR_TARGET}" 2>&1 |
| 310 | eend $? |
397 | if ! eend $? && ${autofail} ; then |
| 311 | |
|
|
| 312 | if [[ $? != 0 && ${NO_FAIL} != 1 ]] ; then |
|
|
| 313 | echo |
398 | echo |
| 314 | eerror "Failed Running $1 !" |
399 | eerror "Failed Running $1 !" |
| 315 | eerror |
400 | eerror |
| 316 | eerror "Include in your bugreport the contents of:" |
401 | eerror "Include in your bugreport the contents of:" |
| 317 | eerror |
402 | eerror |
| … | |
… | |
| 324 | # Internal function to check for support |
409 | # Internal function to check for support |
| 325 | autotools_check_macro() { |
410 | autotools_check_macro() { |
| 326 | [[ -f configure.ac || -f configure.in ]] || return 0 |
411 | [[ -f configure.ac || -f configure.in ]] || return 0 |
| 327 | local macro |
412 | local macro |
| 328 | for macro ; do |
413 | for macro ; do |
| 329 | WANT_AUTOCONF="2.5" autoconf --trace="${macro}" 2>/dev/null |
414 | WANT_AUTOCONF="2.5" autoconf $(autotools_m4dir_include) --trace="${macro}" 2>/dev/null |
| 330 | done |
415 | done |
| 331 | return 0 |
416 | return 0 |
| 332 | } |
417 | } |
| 333 | |
418 | |
|
|
419 | # Internal function to look for a macro and extract its value |
|
|
420 | autotools_check_macro_val() { |
|
|
421 | local macro=$1 scan_out |
|
|
422 | |
|
|
423 | autotools_check_macro "${macro}" | \ |
|
|
424 | gawk -v macro="${macro}" \ |
|
|
425 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
|
|
426 | if (match($0, macro ":(.*)$", res)) |
|
|
427 | print res[1] |
|
|
428 | }' | uniq |
|
|
429 | |
|
|
430 | return 0 |
|
|
431 | } |
|
|
432 | |
| 334 | # Internal function to get additional subdirs to configure |
433 | # Internal function to get additional subdirs to configure |
| 335 | autotools_get_subdirs() { |
434 | autotools_get_subdirs() { autotools_check_macro_val AC_CONFIG_SUBDIRS ; } |
| 336 | local subdirs_scan_out |
435 | autotools_get_auxdir() { autotools_check_macro_val AC_CONFIG_AUX_DIR ; } |
|
|
436 | autotools_get_macrodir() { autotools_check_macro_val AC_CONFIG_MACRO_DIR ; } |
| 337 | |
437 | |
| 338 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
438 | _autotools_m4dir_include() { |
| 339 | [[ -n ${subdirs_scan_out} ]] || return 0 |
439 | local x include_opts |
| 340 | |
440 | |
| 341 | echo "${subdirs_scan_out}" | gawk \ |
441 | for x in "$@" ; do |
| 342 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
442 | case ${x} in |
| 343 | if (match($0, /AC_CONFIG_SUBDIRS:(.*)$/, res)) |
443 | # We handle it below |
| 344 | print res[1] |
444 | -I) ;; |
| 345 | }' | uniq |
445 | *) |
|
|
446 | [[ ! -d ${x} ]] && ewarn "autotools.eclass: '${x}' does not exist" |
|
|
447 | include_opts+=" -I ${x}" |
|
|
448 | ;; |
|
|
449 | esac |
|
|
450 | done |
| 346 | |
451 | |
| 347 | return 0 |
452 | echo ${include_opts} |
| 348 | } |
453 | } |
|
|
454 | autotools_m4dir_include() { _autotools_m4dir_include ${AT_M4DIR} ; } |
|
|
455 | autotools_m4sysdir_include() { _autotools_m4dir_include $(eval echo ${AT_SYS_M4DIR}) ; } |
| 349 | |
456 | |
| 350 | autotools_get_auxdir() { |
457 | fi |
| 351 | local auxdir_scan_out |
|
|
| 352 | |
|
|
| 353 | auxdir_scan_out=$(autotools_check_macro "AC_CONFIG_AUX_DIR") |
|
|
| 354 | [[ -n ${auxdir_scan_out} ]] || return 0 |
|
|
| 355 | |
|
|
| 356 | echo ${auxdir_scan_out} | gawk \ |
|
|
| 357 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
|
|
| 358 | if (match($0, /AC_CONFIG_AUX_DIR:(.*)$/, res)) |
|
|
| 359 | print res[1] |
|
|
| 360 | }' | uniq |
|
|
| 361 | |
|
|
| 362 | return 0 |
|
|
| 363 | } |
|
|