| 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.38 2006/06/28 00:15:32 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.67 2007/09/17 23:15:51 vapier 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 | none) _automake_atom="" ;; # some packages don't require automake at all |
|
|
22 | latest) _automake_atom="=sys-devel/automake-1.10*" ;; |
|
|
23 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
|
|
24 | esac |
|
|
25 | [[ ${WANT_AUTOMAKE} == "latest" ]] && WANT_AUTOMAKE="1.10" |
|
|
26 | export WANT_AUTOMAKE |
|
|
27 | fi |
|
|
28 | |
|
|
29 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
|
|
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}*" ;; |
|
|
33 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.61" ;; |
|
|
34 | *) _autoconf_atom=">=sys-devel/autoconf-FAIL" ;; |
|
|
35 | esac |
|
|
36 | [[ ${WANT_AUTOCONF} == "latest" ]] && WANT_AUTOCONF="2.5" |
|
|
37 | export WANT_AUTOCONF |
|
|
38 | fi |
|
|
39 | DEPEND="${_automake_atom} |
|
|
40 | ${_autoconf_atom} |
| 17 | sys-devel/libtool" |
41 | sys-devel/libtool" |
|
|
42 | RDEPEND="" |
|
|
43 | unset _automake_atom _autoconf_atom |
| 18 | |
44 | |
| 19 | # Variables: |
45 | # Variables: |
| 20 | # |
46 | # |
| 21 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
47 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
| 22 | # AM_OPTS - Additional options to pass to automake during |
48 | # AM_OPTS - Additional options to pass to automake during |
| 23 | # eautoreconf call. |
49 | # eautoreconf call. |
|
|
50 | # AT_NOELIBTOOLIZE - Don't run elibtoolize command if set to 'yes', |
|
|
51 | # useful when elibtoolize needs to be ran with |
|
|
52 | # particular options |
| 24 | |
53 | |
| 25 | # Functions: |
54 | # Functions: |
| 26 | # |
55 | # |
| 27 | # eautoreconf() - Should do a full autoreconf - normally what most people |
56 | # eautoreconf() - Should do a full autoreconf - normally what most people |
| 28 | # will be interested in. Also should handle additional |
57 | # will be interested in. Also should handle additional |
| … | |
… | |
| 34 | # eautoconf - Runs autoconf. |
63 | # eautoconf - Runs autoconf. |
| 35 | # eautoheader - Runs autoheader. |
64 | # eautoheader - Runs autoheader. |
| 36 | # eautomake - Runs automake |
65 | # eautomake - Runs automake |
| 37 | # |
66 | # |
| 38 | |
67 | |
| 39 | # XXX: M4DIR should be depreciated |
68 | # XXX: M4DIR should be deprecated |
| 40 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
69 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
| 41 | AT_GNUCONF_UPDATE="no" |
70 | AT_GNUCONF_UPDATE="no" |
| 42 | |
71 | |
| 43 | |
72 | |
| 44 | # This function mimes the behavior of autoreconf, but uses the different |
73 | # This function mimes the behavior of autoreconf, but uses the different |
| 45 | # eauto* functions to run the tools. It doesn't accept parameters, but |
74 | # eauto* functions to run the tools. It doesn't accept parameters, but |
| 46 | # the directory with include files can be specified with AT_M4DIR variable. |
75 | # the directory with include files can be specified with AT_M4DIR variable. |
| 47 | eautoreconf() { |
76 | eautoreconf() { |
| 48 | local pwd=$(pwd) x auxdir |
77 | local pwd=$(pwd) x auxdir |
| 49 | |
78 | |
|
|
79 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
| 50 | # Take care of subdirs |
80 | # Take care of subdirs |
| 51 | for x in $(autotools_get_subdirs); do |
81 | for x in $(autotools_get_subdirs); do |
| 52 | if [[ -d ${x} ]] ; then |
82 | if [[ -d ${x} ]] ; then |
| 53 | cd "${x}" |
83 | cd "${x}" |
| 54 | AT_NOELIBTOOLIZE="yes" eautoreconf |
84 | AT_NOELIBTOOLIZE="yes" eautoreconf |
| 55 | cd "${pwd}" |
85 | cd "${pwd}" |
| 56 | fi |
86 | fi |
| 57 | done |
87 | done |
|
|
88 | fi |
| 58 | |
89 | |
| 59 | auxdir=$(autotools_get_auxdir) |
90 | auxdir=$(autotools_get_auxdir) |
| 60 | |
91 | |
| 61 | einfo "Running eautoreconf in '$(pwd)' ..." |
92 | einfo "Running eautoreconf in '$(pwd)' ..." |
| 62 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
93 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
| … | |
… | |
| 119 | } |
150 | } |
| 120 | |
151 | |
| 121 | eautoheader() { |
152 | eautoheader() { |
| 122 | # Check if we should run autoheader |
153 | # Check if we should run autoheader |
| 123 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
154 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
| 124 | autotools_run_tool autoheader "$@" |
155 | NO_FAIL=1 autotools_run_tool autoheader "$@" |
| 125 | } |
156 | } |
| 126 | |
157 | |
| 127 | eautoconf() { |
158 | eautoconf() { |
| 128 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
159 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
| 129 | echo |
160 | echo |
| … | |
… | |
| 162 | |
193 | |
| 163 | # --force-missing seems not to be recognized by some flavours of automake |
194 | # --force-missing seems not to be recognized by some flavours of automake |
| 164 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
195 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 165 | } |
196 | } |
| 166 | |
197 | |
| 167 | |
|
|
| 168 | |
|
|
| 169 | # Internal function to run an autotools' tool |
198 | # Internal function to run an autotools' tool |
| 170 | autotools_run_tool() { |
199 | autotools_run_tool() { |
| 171 | local STDERR_TARGET="${T}/$$.out" |
200 | local STDERR_TARGET="${T}/$$.out" |
| 172 | local PATCH_TARGET="${T}/$$.patch" |
|
|
| 173 | local ris |
201 | local ris |
| 174 | |
202 | |
| 175 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
203 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
| 176 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
204 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
| 177 | |
205 | |
| 178 | ebegin "Running $@" |
206 | ebegin "Running $@" |
| 179 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
207 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
| 180 | ris=$? |
208 | ris=$? |
| 181 | eend ${ris} |
209 | eend ${ris} |
| 182 | |
210 | |
| 183 | if [[ ${ris} != 0 ]]; then |
211 | if [[ ${ris} != 0 && ${NO_FAIL} != 1 ]]; then |
| 184 | echo |
212 | echo |
| 185 | eerror "Failed Running $1 !" |
213 | eerror "Failed Running $1 !" |
| 186 | eerror |
214 | eerror |
| 187 | eerror "Include in your bugreport the contents of:" |
215 | eerror "Include in your bugreport the contents of:" |
| 188 | eerror |
216 | eerror |