| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2007 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.43 2006/09/20 19:10:36 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.66 2007/05/30 15:45:01 cardoe Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Diego Pettenò <flameeyes@gentoo.org> |
5 | # Maintainer: base-system@gentoo.org |
| 6 | # Enhancements: Martin Schlemmer <azarah@gentoo.org> |
|
|
| 7 | # |
6 | # |
| 8 | # This eclass is for handling autotooled software packages that |
7 | # This eclass is for handling autotooled software packages that |
| 9 | # needs to regenerate their build scripts. |
8 | # needs to regenerate their build scripts. |
| 10 | # |
9 | # |
| 11 | # NB: If you add anything, please comment it! |
10 | # NB: If you add anything, please comment it! |
| 12 | |
11 | |
| 13 | inherit eutils libtool |
12 | inherit eutils libtool |
| 14 | |
13 | |
|
|
14 | [[ -z ${WANT_AUTOCONF} ]] && WANT_AUTOCONF="latest" |
|
|
15 | [[ -z ${WANT_AUTOMAKE} ]] && WANT_AUTOMAKE="latest" |
|
|
16 | |
| 15 | _automake_atom="sys-devel/automake" |
17 | _automake_atom="sys-devel/automake" |
| 16 | _autoconf_atom="sys-devel/autoconf" |
18 | _autoconf_atom="sys-devel/autoconf" |
|
|
19 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
|
|
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 |
|
|
23 | latest) _automake_atom="=sys-devel/automake-1.10*" ;; |
| 17 | [[ -n ${WANT_AUTOMAKE} ]] && _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" |
24 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
|
|
25 | esac |
|
|
26 | [[ ${WANT_AUTOMAKE} == "latest" ]] && WANT_AUTOMAKE="1.10" |
|
|
27 | export WANT_AUTOMAKE |
|
|
28 | fi |
|
|
29 | |
| 18 | if [[ -n ${WANT_AUTOCONF} ]]; then |
30 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
| 19 | case ${WANT_AUTOCONF} in |
31 | case ${WANT_AUTOCONF} in |
| 20 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
32 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
| 21 | 2.5) _autoconf_atom=">=sys-devel/autoconf-2.50" ;; |
33 | latest | 2.5) _autoconf_atom=">=sys-devel/autoconf-2.59" ;; |
| 22 | esac |
34 | esac |
|
|
35 | [[ ${WANT_AUTOCONF} == "latest" ]] && WANT_AUTOCONF="2.5" |
|
|
36 | export WANT_AUTOCONF |
| 23 | fi |
37 | fi |
| 24 | DEPEND="${_automake_atom} |
38 | DEPEND="${_automake_atom} |
| 25 | ${_autoconf_atom} |
39 | ${_autoconf_atom} |
| 26 | sys-devel/libtool" |
40 | sys-devel/libtool" |
|
|
41 | RDEPEND="" |
| 27 | unset _automake_atom _autoconf_atom |
42 | unset _automake_atom _autoconf_atom |
| 28 | |
43 | |
| 29 | # Variables: |
44 | # Variables: |
| 30 | # |
45 | # |
| 31 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
46 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
| 32 | # AM_OPTS - Additional options to pass to automake during |
47 | # AM_OPTS - Additional options to pass to automake during |
| 33 | # eautoreconf call. |
48 | # eautoreconf call. |
|
|
49 | # AT_NOELIBTOOLIZE - Don't run elibtoolize command if set to 'yes', |
|
|
50 | # useful when elibtoolize needs to be ran with |
|
|
51 | # particular options |
| 34 | |
52 | |
| 35 | # Functions: |
53 | # Functions: |
| 36 | # |
54 | # |
| 37 | # eautoreconf() - Should do a full autoreconf - normally what most people |
55 | # eautoreconf() - Should do a full autoreconf - normally what most people |
| 38 | # will be interested in. Also should handle additional |
56 | # will be interested in. Also should handle additional |
| … | |
… | |
| 44 | # eautoconf - Runs autoconf. |
62 | # eautoconf - Runs autoconf. |
| 45 | # eautoheader - Runs autoheader. |
63 | # eautoheader - Runs autoheader. |
| 46 | # eautomake - Runs automake |
64 | # eautomake - Runs automake |
| 47 | # |
65 | # |
| 48 | |
66 | |
| 49 | # XXX: M4DIR should be depreciated |
67 | # XXX: M4DIR should be deprecated |
| 50 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
68 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
| 51 | AT_GNUCONF_UPDATE="no" |
69 | AT_GNUCONF_UPDATE="no" |
| 52 | |
70 | |
| 53 | |
71 | |
| 54 | # This function mimes the behavior of autoreconf, but uses the different |
72 | # This function mimes the behavior of autoreconf, but uses the different |
| … | |
… | |
| 131 | } |
149 | } |
| 132 | |
150 | |
| 133 | eautoheader() { |
151 | eautoheader() { |
| 134 | # Check if we should run autoheader |
152 | # Check if we should run autoheader |
| 135 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
153 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
| 136 | autotools_run_tool autoheader "$@" |
154 | NO_FAIL=1 autotools_run_tool autoheader "$@" |
| 137 | } |
155 | } |
| 138 | |
156 | |
| 139 | eautoconf() { |
157 | eautoconf() { |
| 140 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
158 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
| 141 | echo |
159 | echo |
| … | |
… | |
| 149 | |
167 | |
| 150 | eautomake() { |
168 | eautomake() { |
| 151 | local extra_opts |
169 | local extra_opts |
| 152 | |
170 | |
| 153 | [[ -f Makefile.am ]] || return 0 |
171 | [[ -f Makefile.am ]] || return 0 |
| 154 | |
|
|
| 155 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
|
|
| 156 | export WANT_AUTOMAKE # let the automake wrapper pick it up |
|
|
| 157 | einfo "Required automake ${WANT_AUTOMAKE}. Using $(automake --version | head -n 1)." |
|
|
| 158 | fi |
|
|
| 159 | |
172 | |
| 160 | if [[ -z ${FROM_EAUTORECONF} && -f Makefile.in ]]; then |
173 | if [[ -z ${FROM_EAUTORECONF} && -f Makefile.in ]]; then |
| 161 | local used_automake |
174 | local used_automake |
| 162 | local installed_automake |
175 | local installed_automake |
| 163 | |
176 | |
| … | |
… | |
| 179 | |
192 | |
| 180 | # --force-missing seems not to be recognized by some flavours of automake |
193 | # --force-missing seems not to be recognized by some flavours of automake |
| 181 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
194 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 182 | } |
195 | } |
| 183 | |
196 | |
| 184 | |
|
|
| 185 | |
|
|
| 186 | # Internal function to run an autotools' tool |
197 | # Internal function to run an autotools' tool |
| 187 | autotools_run_tool() { |
198 | autotools_run_tool() { |
| 188 | local STDERR_TARGET="${T}/$$.out" |
199 | local STDERR_TARGET="${T}/$$.out" |
| 189 | local PATCH_TARGET="${T}/$$.patch" |
|
|
| 190 | local ris |
200 | local ris |
| 191 | |
201 | |
| 192 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
202 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
| 193 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
203 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
| 194 | |
204 | |
| 195 | ebegin "Running $@" |
205 | ebegin "Running $@" |
| 196 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
206 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
| 197 | ris=$? |
207 | ris=$? |
| 198 | eend ${ris} |
208 | eend ${ris} |
| 199 | |
209 | |
| 200 | if [[ ${ris} != 0 ]]; then |
210 | if [[ ${ris} != 0 && ${NO_FAIL} != 1 ]]; then |
| 201 | echo |
211 | echo |
| 202 | eerror "Failed Running $1 !" |
212 | eerror "Failed Running $1 !" |
| 203 | eerror |
213 | eerror |
| 204 | eerror "Include in your bugreport the contents of:" |
214 | eerror "Include in your bugreport the contents of:" |
| 205 | eerror |
215 | eerror |