| 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.74 2008/04/22 22:38:22 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 |
| … | |
… | |
| 109 | # specified parametes. The name of the tool run is the same of the function |
114 | # specified parametes. The name of the tool run is the same of the function |
| 110 | # without e prefix. |
115 | # without e prefix. |
| 111 | # They also force installing the support files for safety. |
116 | # They also force installing the support files for safety. |
| 112 | eaclocal() { |
117 | eaclocal() { |
| 113 | local aclocal_opts |
118 | local aclocal_opts |
|
|
119 | |
|
|
120 | local amflags_file |
|
|
121 | for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do |
|
|
122 | [[ -e ${amflags_file} ]] || continue |
|
|
123 | aclocal_opts=$(sed -n '/^ACLOCAL_AMFLAGS[[:space:]]*=/s:[^=]*=::p' ${amflags_file}) |
|
|
124 | break |
|
|
125 | done |
| 114 | |
126 | |
| 115 | if [[ -n ${AT_M4DIR} ]] ; then |
127 | if [[ -n ${AT_M4DIR} ]] ; then |
| 116 | for x in ${AT_M4DIR} ; do |
128 | for x in ${AT_M4DIR} ; do |
| 117 | case "${x}" in |
129 | case "${x}" in |
| 118 | "-I") |
130 | "-I") |
| … | |
… | |
| 137 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
149 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
| 138 | # check for both it and the current AC_PROG_LIBTOOL) |
150 | # check for both it and the current AC_PROG_LIBTOOL) |
| 139 | lttest="$(autotools_check_macro "AC_PROG_LIBTOOL")$(autotools_check_macro "AM_PROG_LIBTOOL")" |
151 | lttest="$(autotools_check_macro "AC_PROG_LIBTOOL")$(autotools_check_macro "AM_PROG_LIBTOOL")" |
| 140 | [[ -n $lttest ]] || return 0 |
152 | [[ -n $lttest ]] || return 0 |
| 141 | |
153 | |
| 142 | [[ -f Makefile.am ]] && opts="--automake" |
154 | [[ -f GNUmakefile.am || -f Makefile.am ]] && opts="--automake" |
| 143 | |
155 | |
| 144 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
156 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
| 145 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
157 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
| 146 | |
158 | |
| 147 | # Need to rerun aclocal |
159 | # Need to rerun aclocal |
| … | |
… | |
| 165 | autotools_run_tool autoconf "$@" |
177 | autotools_run_tool autoconf "$@" |
| 166 | } |
178 | } |
| 167 | |
179 | |
| 168 | eautomake() { |
180 | eautomake() { |
| 169 | local extra_opts |
181 | local extra_opts |
|
|
182 | local makefile_name |
| 170 | |
183 | |
| 171 | [[ -f Makefile.am ]] || return 0 |
184 | if [[ -f GNUmakefile.am ]]; then |
|
|
185 | makefile_name="GNUmakefile" |
|
|
186 | elif [[ -f Makefile.am ]]; then |
|
|
187 | makefile_name="Makefile" |
|
|
188 | else |
|
|
189 | return 0 |
|
|
190 | fi |
| 172 | |
191 | |
| 173 | if [[ -z ${FROM_EAUTORECONF} && -f Makefile.in ]]; then |
192 | if [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name}.in ]]; then |
| 174 | local used_automake |
193 | local used_automake |
| 175 | local installed_automake |
194 | local installed_automake |
| 176 | |
195 | |
| 177 | installed_automake=$(automake --version | head -n 1 | \ |
196 | installed_automake=$(automake --version | head -n 1 | \ |
| 178 | sed -e 's:.*(GNU automake) ::') |
197 | sed -e 's:.*(GNU automake) ::') |
| 179 | used_automake=$(head -n 1 < Makefile.in | \ |
198 | used_automake=$(head -n 1 < ${makefile_name}.in | \ |
| 180 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
199 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
| 181 | |
200 | |
| 182 | if [[ ${installed_automake} != ${used_automake} ]]; then |
201 | if [[ ${installed_automake} != ${used_automake} ]]; then |
| 183 | einfo "Automake used for the package (${used_automake}) differs from" |
202 | einfo "Automake used for the package (${used_automake}) differs from" |
| 184 | einfo "the installed version (${installed_automake})." |
203 | einfo "the installed version (${installed_automake})." |
| … | |
… | |
| 194 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
213 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 195 | } |
214 | } |
| 196 | |
215 | |
| 197 | # Internal function to run an autotools' tool |
216 | # Internal function to run an autotools' tool |
| 198 | autotools_run_tool() { |
217 | autotools_run_tool() { |
|
|
218 | if [[ ${EBUILD_PHASE} != "unpack" ]]; then |
|
|
219 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
|
|
220 | fi |
|
|
221 | |
| 199 | local STDERR_TARGET="${T}/$$.out" |
222 | local STDERR_TARGET="${T}/$$.out" |
| 200 | local ris |
223 | local ris |
| 201 | |
224 | |
| 202 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
225 | printf "***** $1 *****\n***** $*\n\n" > "${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" |
| 203 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
|
|
| 204 | |
226 | |
| 205 | ebegin "Running $@" |
227 | ebegin "Running $@" |
| 206 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
228 | "$@" >> "${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" 2>&1 |
| 207 | ris=$? |
229 | ris=$? |
| 208 | eend ${ris} |
230 | eend ${ris} |
| 209 | |
231 | |
| 210 | if [[ ${ris} != 0 && ${NO_FAIL} != 1 ]]; then |
232 | if [[ ${ris} != 0 && ${NO_FAIL} != 1 ]]; then |
| 211 | echo |
233 | echo |