| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2008 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.66 2007/05/30 15:45:01 cardoe Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.73 2008/03/31 14:19:35 vapier Exp $ |
| 4 | # |
4 | # |
| 5 | # Maintainer: base-system@gentoo.org |
5 | # Maintainer: base-system@gentoo.org |
| 6 | # |
6 | # |
| 7 | # This eclass is for handling autotooled software packages that |
7 | # This eclass is for handling autotooled software packages that |
| 8 | # needs to regenerate their build scripts. |
8 | # needs to regenerate their build scripts. |
| … | |
… | |
| 16 | |
16 | |
| 17 | _automake_atom="sys-devel/automake" |
17 | _automake_atom="sys-devel/automake" |
| 18 | _autoconf_atom="sys-devel/autoconf" |
18 | _autoconf_atom="sys-devel/autoconf" |
| 19 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
19 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
| 20 | case ${WANT_AUTOMAKE} in |
20 | case ${WANT_AUTOMAKE} in |
| 21 | # workaround while we have different versions of automake in arch and ~arch |
|
|
| 22 | none) _automake_atom="" ;; # some packages don't require automake at all |
21 | none) _automake_atom="" ;; # some packages don't require automake at all |
| 23 | latest) _automake_atom="=sys-devel/automake-1.10*" ;; |
22 | latest) _automake_atom="=sys-devel/automake-1.10*" ;; |
| 24 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
23 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
| 25 | esac |
24 | esac |
| 26 | [[ ${WANT_AUTOMAKE} == "latest" ]] && WANT_AUTOMAKE="1.10" |
25 | [[ ${WANT_AUTOMAKE} == "latest" ]] && WANT_AUTOMAKE="1.10" |
| 27 | export WANT_AUTOMAKE |
26 | export WANT_AUTOMAKE |
| 28 | fi |
27 | fi |
| 29 | |
28 | |
| 30 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
29 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
| 31 | case ${WANT_AUTOCONF} in |
30 | case ${WANT_AUTOCONF} in |
|
|
31 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
| 32 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
32 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
| 33 | latest | 2.5) _autoconf_atom=">=sys-devel/autoconf-2.59" ;; |
33 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.61" ;; |
|
|
34 | *) _autoconf_atom="INCORRECT-WANT_AUTOCONF-SETTING-IN-EBUILD" ;; |
| 34 | esac |
35 | esac |
| 35 | [[ ${WANT_AUTOCONF} == "latest" ]] && WANT_AUTOCONF="2.5" |
36 | [[ ${WANT_AUTOCONF} == "latest" ]] && WANT_AUTOCONF="2.5" |
| 36 | export WANT_AUTOCONF |
37 | export WANT_AUTOCONF |
| 37 | fi |
38 | fi |
| 38 | DEPEND="${_automake_atom} |
39 | DEPEND="${_automake_atom} |
| … | |
… | |
| 89 | auxdir=$(autotools_get_auxdir) |
90 | auxdir=$(autotools_get_auxdir) |
| 90 | |
91 | |
| 91 | einfo "Running eautoreconf in '$(pwd)' ..." |
92 | einfo "Running eautoreconf in '$(pwd)' ..." |
| 92 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
93 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
| 93 | eaclocal |
94 | eaclocal |
|
|
95 | if ${LIBTOOLIZE:-libtoolize} -n --install >& /dev/null ; then |
|
|
96 | _elibtoolize --copy --force --install |
|
|
97 | else |
| 94 | _elibtoolize --copy --force |
98 | _elibtoolize --copy --force |
|
|
99 | fi |
| 95 | eautoconf |
100 | eautoconf |
| 96 | eautoheader |
101 | eautoheader |
| 97 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
102 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
| 98 | |
103 | |
| 99 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
104 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
| … | |
… | |
| 137 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
142 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
| 138 | # check for both it and the current AC_PROG_LIBTOOL) |
143 | # check for both it and the current AC_PROG_LIBTOOL) |
| 139 | lttest="$(autotools_check_macro "AC_PROG_LIBTOOL")$(autotools_check_macro "AM_PROG_LIBTOOL")" |
144 | lttest="$(autotools_check_macro "AC_PROG_LIBTOOL")$(autotools_check_macro "AM_PROG_LIBTOOL")" |
| 140 | [[ -n $lttest ]] || return 0 |
145 | [[ -n $lttest ]] || return 0 |
| 141 | |
146 | |
| 142 | [[ -f Makefile.am ]] && opts="--automake" |
147 | [[ -f GNUmakefile.am || -f Makefile.am ]] && opts="--automake" |
| 143 | |
148 | |
| 144 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
149 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
| 145 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
150 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
| 146 | |
151 | |
| 147 | # Need to rerun aclocal |
152 | # Need to rerun aclocal |
| … | |
… | |
| 165 | autotools_run_tool autoconf "$@" |
170 | autotools_run_tool autoconf "$@" |
| 166 | } |
171 | } |
| 167 | |
172 | |
| 168 | eautomake() { |
173 | eautomake() { |
| 169 | local extra_opts |
174 | local extra_opts |
|
|
175 | local makefile_name |
| 170 | |
176 | |
| 171 | [[ -f Makefile.am ]] || return 0 |
177 | if [[ -f GNUmakefile.am ]]; then |
|
|
178 | makefile_name="GNUmakefile" |
|
|
179 | elif [[ -f Makefile.am ]]; then |
|
|
180 | makefile_name="Makefile" |
|
|
181 | else |
|
|
182 | return 0 |
|
|
183 | fi |
| 172 | |
184 | |
| 173 | if [[ -z ${FROM_EAUTORECONF} && -f Makefile.in ]]; then |
185 | if [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name}.in ]]; then |
| 174 | local used_automake |
186 | local used_automake |
| 175 | local installed_automake |
187 | local installed_automake |
| 176 | |
188 | |
| 177 | installed_automake=$(automake --version | head -n 1 | \ |
189 | installed_automake=$(automake --version | head -n 1 | \ |
| 178 | sed -e 's:.*(GNU automake) ::') |
190 | sed -e 's:.*(GNU automake) ::') |
| 179 | used_automake=$(head -n 1 < Makefile.in | \ |
191 | used_automake=$(head -n 1 < ${makefile_name}.in | \ |
| 180 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
192 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
| 181 | |
193 | |
| 182 | if [[ ${installed_automake} != ${used_automake} ]]; then |
194 | if [[ ${installed_automake} != ${used_automake} ]]; then |
| 183 | einfo "Automake used for the package (${used_automake}) differs from" |
195 | einfo "Automake used for the package (${used_automake}) differs from" |
| 184 | einfo "the installed version (${installed_automake})." |
196 | einfo "the installed version (${installed_automake})." |
| … | |
… | |
| 194 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
206 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 195 | } |
207 | } |
| 196 | |
208 | |
| 197 | # Internal function to run an autotools' tool |
209 | # Internal function to run an autotools' tool |
| 198 | autotools_run_tool() { |
210 | autotools_run_tool() { |
|
|
211 | if [[ ${EBUILD_PHASE} != "unpack" ]]; then |
|
|
212 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
|
|
213 | fi |
|
|
214 | |
| 199 | local STDERR_TARGET="${T}/$$.out" |
215 | local STDERR_TARGET="${T}/$$.out" |
| 200 | local ris |
216 | local ris |
| 201 | |
217 | |
| 202 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
218 | printf "***** $1 *****\n***** $*\n\n" > "${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" |
| 203 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
|
|
| 204 | |
219 | |
| 205 | ebegin "Running $@" |
220 | ebegin "Running $@" |
| 206 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
221 | "$@" >> "${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" 2>&1 |
| 207 | ris=$? |
222 | ris=$? |
| 208 | eend ${ris} |
223 | eend ${ris} |
| 209 | |
224 | |
| 210 | if [[ ${ris} != 0 && ${NO_FAIL} != 1 ]]; then |
225 | if [[ ${ris} != 0 && ${NO_FAIL} != 1 ]]; then |
| 211 | echo |
226 | echo |