| 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.39 2006/07/03 18:42:54 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 | |
| 15 | DEPEND="sys-devel/automake |
14 | [[ -z ${WANT_AUTOCONF} ]] && WANT_AUTOCONF="latest" |
| 16 | sys-devel/autoconf |
15 | [[ -z ${WANT_AUTOMAKE} ]] && WANT_AUTOMAKE="latest" |
|
|
16 | |
|
|
17 | _automake_atom="sys-devel/automake" |
|
|
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*" ;; |
|
|
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 | |
|
|
30 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
|
|
31 | case ${WANT_AUTOCONF} in |
|
|
32 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
|
|
33 | latest | 2.5) _autoconf_atom=">=sys-devel/autoconf-2.59" ;; |
|
|
34 | esac |
|
|
35 | [[ ${WANT_AUTOCONF} == "latest" ]] && WANT_AUTOCONF="2.5" |
|
|
36 | export WANT_AUTOCONF |
|
|
37 | fi |
|
|
38 | DEPEND="${_automake_atom} |
|
|
39 | ${_autoconf_atom} |
| 17 | sys-devel/libtool" |
40 | sys-devel/libtool" |
|
|
41 | RDEPEND="" |
|
|
42 | unset _automake_atom _autoconf_atom |
| 18 | |
43 | |
| 19 | # Variables: |
44 | # Variables: |
| 20 | # |
45 | # |
| 21 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
46 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
| 22 | # AM_OPTS - Additional options to pass to automake during |
47 | # AM_OPTS - Additional options to pass to automake during |
| 23 | # 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 |
| 24 | |
52 | |
| 25 | # Functions: |
53 | # Functions: |
| 26 | # |
54 | # |
| 27 | # eautoreconf() - Should do a full autoreconf - normally what most people |
55 | # eautoreconf() - Should do a full autoreconf - normally what most people |
| 28 | # will be interested in. Also should handle additional |
56 | # will be interested in. Also should handle additional |
| … | |
… | |
| 34 | # eautoconf - Runs autoconf. |
62 | # eautoconf - Runs autoconf. |
| 35 | # eautoheader - Runs autoheader. |
63 | # eautoheader - Runs autoheader. |
| 36 | # eautomake - Runs automake |
64 | # eautomake - Runs automake |
| 37 | # |
65 | # |
| 38 | |
66 | |
| 39 | # XXX: M4DIR should be depreciated |
67 | # XXX: M4DIR should be deprecated |
| 40 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
68 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
| 41 | AT_GNUCONF_UPDATE="no" |
69 | AT_GNUCONF_UPDATE="no" |
| 42 | |
70 | |
| 43 | |
71 | |
| 44 | # This function mimes the behavior of autoreconf, but uses the different |
72 | # This function mimes the behavior of autoreconf, but uses the different |
| … | |
… | |
| 121 | } |
149 | } |
| 122 | |
150 | |
| 123 | eautoheader() { |
151 | eautoheader() { |
| 124 | # Check if we should run autoheader |
152 | # Check if we should run autoheader |
| 125 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
153 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
| 126 | autotools_run_tool autoheader "$@" |
154 | NO_FAIL=1 autotools_run_tool autoheader "$@" |
| 127 | } |
155 | } |
| 128 | |
156 | |
| 129 | eautoconf() { |
157 | eautoconf() { |
| 130 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
158 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
| 131 | echo |
159 | echo |
| … | |
… | |
| 164 | |
192 | |
| 165 | # --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 |
| 166 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
194 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 167 | } |
195 | } |
| 168 | |
196 | |
| 169 | |
|
|
| 170 | |
|
|
| 171 | # Internal function to run an autotools' tool |
197 | # Internal function to run an autotools' tool |
| 172 | autotools_run_tool() { |
198 | autotools_run_tool() { |
| 173 | local STDERR_TARGET="${T}/$$.out" |
199 | local STDERR_TARGET="${T}/$$.out" |
| 174 | local PATCH_TARGET="${T}/$$.patch" |
|
|
| 175 | local ris |
200 | local ris |
| 176 | |
201 | |
| 177 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
202 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
| 178 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
203 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
| 179 | |
204 | |
| 180 | ebegin "Running $@" |
205 | ebegin "Running $@" |
| 181 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
206 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
| 182 | ris=$? |
207 | ris=$? |
| 183 | eend ${ris} |
208 | eend ${ris} |
| 184 | |
209 | |
| 185 | if [[ ${ris} != 0 ]]; then |
210 | if [[ ${ris} != 0 && ${NO_FAIL} != 1 ]]; then |
| 186 | echo |
211 | echo |
| 187 | eerror "Failed Running $1 !" |
212 | eerror "Failed Running $1 !" |
| 188 | eerror |
213 | eerror |
| 189 | eerror "Include in your bugreport the contents of:" |
214 | eerror "Include in your bugreport the contents of:" |
| 190 | eerror |
215 | eerror |