| 1 | # Copyright 1999-2005 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.61 2007/01/04 14:56:46 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.81 2008/09/26 16:21:54 jmbsvicetto Exp $ |
| 4 | # |
4 | |
| 5 | # Author: Diego Pettenò <flameeyes@gentoo.org> |
5 | # @ECLASS: autotools.eclass |
| 6 | # Enhancements: Martin Schlemmer <azarah@gentoo.org> |
6 | # @MAINTAINER: |
| 7 | # |
7 | # base-system@gentoo.org |
|
|
8 | # @BLURB: Regenerates auto* build scripts |
|
|
9 | # @DESCRIPTION: |
| 8 | # This eclass is for handling autotooled software packages that |
10 | # This eclass is for safely handling autotooled software packages that need to |
| 9 | # needs to regenerate their build scripts. |
11 | # regenerate their build scripts. All functions will abort in case of errors. |
| 10 | # |
12 | # |
| 11 | # NB: If you add anything, please comment it! |
13 | # NB: If you add anything, please comment it! |
| 12 | |
14 | |
| 13 | inherit eutils libtool |
15 | inherit eutils libtool |
|
|
16 | |
|
|
17 | # @ECLASS-VARIABLE: WANT_AUTOCONF |
|
|
18 | # @DESCRIPTION: |
|
|
19 | # The major version of autoconf your package needs |
|
|
20 | [[ -z ${WANT_AUTOCONF} ]] && WANT_AUTOCONF="latest" |
|
|
21 | |
|
|
22 | # @ECLASS-VARIABLE: WANT_AUTOMAKE |
|
|
23 | # @DESCRIPTION: |
|
|
24 | # The major version of automake your package needs |
|
|
25 | [[ -z ${WANT_AUTOMAKE} ]] && WANT_AUTOMAKE="latest" |
| 14 | |
26 | |
| 15 | _automake_atom="sys-devel/automake" |
27 | _automake_atom="sys-devel/automake" |
| 16 | _autoconf_atom="sys-devel/autoconf" |
28 | _autoconf_atom="sys-devel/autoconf" |
| 17 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
29 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
| 18 | case ${WANT_AUTOMAKE} in |
30 | case ${WANT_AUTOMAKE} in |
| 19 | # workaround while we have different versions of automake in arch and ~arch |
31 | none) _automake_atom="" ;; # some packages don't require automake at all |
| 20 | latest) _automake_atom="|| ( =sys-devel/automake-1.10* =sys-devel/automake-1.9* )" ;; |
32 | latest) _automake_atom="=sys-devel/automake-1.10*" ;; |
| 21 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
33 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
| 22 | esac |
34 | esac |
|
|
35 | [[ ${WANT_AUTOMAKE} == "latest" ]] && WANT_AUTOMAKE="1.10" |
|
|
36 | export WANT_AUTOMAKE |
| 23 | fi |
37 | fi |
| 24 | |
38 | |
| 25 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
39 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
| 26 | case ${WANT_AUTOCONF} in |
40 | case ${WANT_AUTOCONF} in |
|
|
41 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
| 27 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
42 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
| 28 | latest | 2.5) _autoconf_atom=">=sys-devel/autoconf-2.59" ;; |
43 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.61" ;; |
|
|
44 | *) _autoconf_atom="INCORRECT-WANT_AUTOCONF-SETTING-IN-EBUILD" ;; |
| 29 | esac |
45 | esac |
|
|
46 | [[ ${WANT_AUTOCONF} == "latest" ]] && WANT_AUTOCONF="2.5" |
|
|
47 | export WANT_AUTOCONF |
| 30 | fi |
48 | fi |
| 31 | DEPEND="${_automake_atom} |
49 | DEPEND="${_automake_atom} |
| 32 | ${_autoconf_atom} |
50 | ${_autoconf_atom} |
| 33 | sys-devel/libtool" |
51 | sys-devel/libtool" |
| 34 | RDEPEND="" |
52 | RDEPEND="" |
| 35 | unset _automake_atom _autoconf_atom |
53 | unset _automake_atom _autoconf_atom |
| 36 | |
54 | |
| 37 | # Variables: |
55 | # @ECLASS-VARIABLE: AM_OPTS |
| 38 | # |
56 | # @DESCRIPTION: |
| 39 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
|
|
| 40 | # AM_OPTS - Additional options to pass to automake during |
57 | # Additional options to pass to automake during |
| 41 | # eautoreconf call. |
58 | # eautoreconf call. |
|
|
59 | |
|
|
60 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
|
|
61 | # @DESCRIPTION: |
| 42 | # AT_NOELIBTOOLIZE - Don't run elibtoolize command if set to 'yes', |
62 | # Don't run elibtoolize command if set to 'yes', |
| 43 | # useful when elibtoolize needs to be ran with |
63 | # useful when elibtoolize needs to be ran with |
| 44 | # particular options |
64 | # particular options |
| 45 | |
65 | |
| 46 | # Functions: |
|
|
| 47 | # |
|
|
| 48 | # eautoreconf() - Should do a full autoreconf - normally what most people |
|
|
| 49 | # will be interested in. Also should handle additional |
|
|
| 50 | # directories specified by AC_CONFIG_SUBDIRS. |
|
|
| 51 | # eaclocal() - Runs aclocal. Respects AT_M4DIR for additional directories |
|
|
| 52 | # to search for macro's. |
|
|
| 53 | # _elibtoolize() - Runs libtoolize. Note the '_' prefix .. to not collide |
|
|
| 54 | # with elibtoolize() from libtool.eclass |
|
|
| 55 | # eautoconf - Runs autoconf. |
|
|
| 56 | # eautoheader - Runs autoheader. |
|
|
| 57 | # eautomake - Runs automake |
|
|
| 58 | # |
|
|
| 59 | |
|
|
| 60 | # XXX: M4DIR should be depreciated |
66 | # XXX: M4DIR should be deprecated |
|
|
67 | # @ECLASS-VARIABLE: AT_M4DIR |
|
|
68 | # @DESCRIPTION: |
|
|
69 | # Additional director(y|ies) aclocal should search |
| 61 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
70 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
| 62 | AT_GNUCONF_UPDATE="no" |
71 | AT_GNUCONF_UPDATE="no" |
| 63 | |
72 | |
| 64 | |
73 | |
|
|
74 | # @FUNCTION: eautoreconf |
|
|
75 | # @DESCRIPTION: |
| 65 | # This function mimes the behavior of autoreconf, but uses the different |
76 | # This function mimes the behavior of autoreconf, but uses the different |
| 66 | # eauto* functions to run the tools. It doesn't accept parameters, but |
77 | # eauto* functions to run the tools. It doesn't accept parameters, but |
| 67 | # the directory with include files can be specified with AT_M4DIR variable. |
78 | # the directory with include files can be specified with AT_M4DIR variable. |
|
|
79 | # |
|
|
80 | # Should do a full autoreconf - normally what most people will be interested in. |
|
|
81 | # Also should handle additional directories specified by AC_CONFIG_SUBDIRS. |
| 68 | eautoreconf() { |
82 | eautoreconf() { |
| 69 | local pwd=$(pwd) x auxdir |
83 | local pwd=$(pwd) x auxdir |
| 70 | |
84 | |
| 71 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
85 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
| 72 | # Take care of subdirs |
86 | # Take care of subdirs |
| … | |
… | |
| 82 | auxdir=$(autotools_get_auxdir) |
96 | auxdir=$(autotools_get_auxdir) |
| 83 | |
97 | |
| 84 | einfo "Running eautoreconf in '$(pwd)' ..." |
98 | einfo "Running eautoreconf in '$(pwd)' ..." |
| 85 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
99 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
| 86 | eaclocal |
100 | eaclocal |
|
|
101 | if ${LIBTOOLIZE:-libtoolize} -n --install >& /dev/null ; then |
|
|
102 | _elibtoolize --copy --force --install |
|
|
103 | else |
| 87 | _elibtoolize --copy --force |
104 | _elibtoolize --copy --force |
|
|
105 | fi |
| 88 | eautoconf |
106 | eautoconf |
| 89 | eautoheader |
107 | eautoheader |
| 90 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
108 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
| 91 | |
109 | |
| 92 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
110 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
| … | |
… | |
| 96 | elibtoolize |
114 | elibtoolize |
| 97 | |
115 | |
| 98 | return 0 |
116 | return 0 |
| 99 | } |
117 | } |
| 100 | |
118 | |
|
|
119 | # @FUNCTION: eaclocal |
|
|
120 | # @DESCRIPTION: |
| 101 | # These functions runs the autotools using autotools_run_tool with the |
121 | # These functions runs the autotools using autotools_run_tool with the |
| 102 | # specified parametes. The name of the tool run is the same of the function |
122 | # specified parametes. The name of the tool run is the same of the function |
| 103 | # without e prefix. |
123 | # without e prefix. |
| 104 | # They also force installing the support files for safety. |
124 | # They also force installing the support files for safety. |
|
|
125 | # Respects AT_M4DIR for additional directories to search for macro's. |
| 105 | eaclocal() { |
126 | eaclocal() { |
| 106 | local aclocal_opts |
127 | local aclocal_opts |
|
|
128 | |
|
|
129 | local amflags_file |
|
|
130 | for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do |
|
|
131 | [[ -e ${amflags_file} ]] || continue |
|
|
132 | aclocal_opts=$(sed -n '/^ACLOCAL_AMFLAGS[[:space:]]*=/s:[^=]*=::p' ${amflags_file}) |
|
|
133 | eval aclocal_opts=\"${aclocal_opts}\" |
|
|
134 | break |
|
|
135 | done |
| 107 | |
136 | |
| 108 | if [[ -n ${AT_M4DIR} ]] ; then |
137 | if [[ -n ${AT_M4DIR} ]] ; then |
| 109 | for x in ${AT_M4DIR} ; do |
138 | for x in ${AT_M4DIR} ; do |
| 110 | case "${x}" in |
139 | case "${x}" in |
| 111 | "-I") |
140 | "-I") |
| … | |
… | |
| 117 | ;; |
146 | ;; |
| 118 | esac |
147 | esac |
| 119 | done |
148 | done |
| 120 | fi |
149 | fi |
| 121 | |
150 | |
| 122 | autotools_set_versions |
|
|
| 123 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
151 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
| 124 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
152 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
| 125 | } |
153 | } |
| 126 | |
154 | |
|
|
155 | # @FUNCTION: _elibtoolize |
|
|
156 | # @DESCRIPTION: |
|
|
157 | # Runs libtoolize. Note the '_' prefix .. to not collide with elibtoolize() from |
|
|
158 | # libtool.eclass. |
| 127 | _elibtoolize() { |
159 | _elibtoolize() { |
| 128 | local opts |
160 | local opts |
| 129 | local lttest |
|
|
| 130 | |
161 | |
| 131 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
162 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
| 132 | # check for both it and the current AC_PROG_LIBTOOL) |
163 | # check for both it and the current AC_PROG_LIBTOOL) |
| 133 | lttest="$(autotools_check_macro "AC_PROG_LIBTOOL")$(autotools_check_macro "AM_PROG_LIBTOOL")" |
164 | [[ -n $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] || return 0 |
| 134 | [[ -n $lttest ]] || return 0 |
|
|
| 135 | |
165 | |
| 136 | [[ -f Makefile.am ]] && opts="--automake" |
166 | [[ -f GNUmakefile.am || -f Makefile.am ]] && opts="--automake" |
| 137 | |
167 | |
| 138 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
168 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
| 139 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
169 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
| 140 | |
170 | |
| 141 | # Need to rerun aclocal |
171 | # Need to rerun aclocal |
| 142 | eaclocal |
172 | eaclocal |
| 143 | } |
173 | } |
| 144 | |
174 | |
|
|
175 | # @FUNCTION: eautoheader |
|
|
176 | # @DESCRIPTION: |
|
|
177 | # Runs autoheader. |
| 145 | eautoheader() { |
178 | eautoheader() { |
| 146 | # Check if we should run autoheader |
179 | # Check if we should run autoheader |
| 147 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
180 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
| 148 | autotools_set_versions |
|
|
| 149 | NO_FAIL=1 autotools_run_tool autoheader "$@" |
181 | NO_FAIL=1 autotools_run_tool autoheader "$@" |
| 150 | } |
182 | } |
| 151 | |
183 | |
|
|
184 | # @FUNCTION: eautoconf |
|
|
185 | # @DESCRIPTION: |
|
|
186 | # Runs autoconf. |
| 152 | eautoconf() { |
187 | eautoconf() { |
| 153 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
188 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
| 154 | echo |
189 | echo |
| 155 | eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!" |
190 | eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!" |
| 156 | echo |
191 | echo |
| 157 | die "No configure.{ac,in} present!" |
192 | die "No configure.{ac,in} present!" |
| 158 | fi |
193 | fi |
| 159 | |
194 | |
| 160 | autotools_set_versions |
|
|
| 161 | autotools_run_tool autoconf "$@" |
195 | autotools_run_tool autoconf "$@" |
| 162 | } |
196 | } |
| 163 | |
197 | |
|
|
198 | # @FUNCTION: eautomake |
|
|
199 | # @DESCRIPTION: |
|
|
200 | # Runs automake. |
| 164 | eautomake() { |
201 | eautomake() { |
| 165 | local extra_opts |
202 | local extra_opts |
|
|
203 | local makefile_name |
| 166 | |
204 | |
| 167 | [[ -f Makefile.am ]] || return 0 |
205 | if [[ -f GNUmakefile.am ]]; then |
|
|
206 | makefile_name="GNUmakefile" |
|
|
207 | elif [[ -f Makefile.am ]]; then |
|
|
208 | makefile_name="Makefile" |
|
|
209 | else |
|
|
210 | return 0 |
|
|
211 | fi |
| 168 | |
212 | |
| 169 | autotools_set_versions |
|
|
| 170 | if [[ -z ${FROM_EAUTORECONF} && -f Makefile.in ]]; then |
213 | if [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name}.in ]]; then |
| 171 | local used_automake |
214 | local used_automake |
| 172 | local installed_automake |
215 | local installed_automake |
| 173 | |
216 | |
| 174 | installed_automake=$(automake --version | head -n 1 | \ |
217 | installed_automake=$(automake --version | head -n 1 | \ |
| 175 | sed -e 's:.*(GNU automake) ::') |
218 | sed -e 's:.*(GNU automake) ::') |
| 176 | used_automake=$(head -n 1 < Makefile.in | \ |
219 | used_automake=$(head -n 1 < ${makefile_name}.in | \ |
| 177 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
220 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
| 178 | |
221 | |
| 179 | if [[ ${installed_automake} != ${used_automake} ]]; then |
222 | if [[ ${installed_automake} != ${used_automake} ]]; then |
| 180 | einfo "Automake used for the package (${used_automake}) differs from" |
223 | einfo "Automake used for the package (${used_automake}) differs from" |
| 181 | einfo "the installed version (${installed_automake})." |
224 | einfo "the installed version (${installed_automake})." |
| … | |
… | |
| 189 | |
232 | |
| 190 | # --force-missing seems not to be recognized by some flavours of automake |
233 | # --force-missing seems not to be recognized by some flavours of automake |
| 191 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
234 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 192 | } |
235 | } |
| 193 | |
236 | |
| 194 | autotools_set_versions() { |
|
|
| 195 | [[ -n ${autotools_version_sets} ]] && return 0 |
|
|
| 196 | |
|
|
| 197 | if [[ -n ${WANT_AUTOCONF} ]]; then |
|
|
| 198 | [[ ${WANT_AUTOCONF} == "latest" ]] && WANT_AUTOCONF="2.5" |
|
|
| 199 | export WANT_AUTOCONF |
|
|
| 200 | einfo "Requested autoconf ${WANT_AUTOCONF}" |
|
|
| 201 | einfo "Using $(autoconf --version 2>/dev/null | head -n 1)" |
|
|
| 202 | einfo "Using $(autoheader --version 2>/dev/null | head -n 1)" |
|
|
| 203 | else |
|
|
| 204 | ewarn "QA Notice: \${WANT_AUTOCONF} variable unset. Please report on http://bugs.gentoo.org/" |
|
|
| 205 | fi |
|
|
| 206 | |
|
|
| 207 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
|
|
| 208 | local latest_automake |
|
|
| 209 | if [[ ${WANT_AUTOMAKE} == "latest" ]]; then |
|
|
| 210 | latest_automake="latest: " |
|
|
| 211 | for amver in 1.10 1.9 1.8 1.7 1.6; do |
|
|
| 212 | WANT_AUTOMAKE="${amver}" |
|
|
| 213 | ROOT=/ has_version =sys-devel/automake-${amver}* && break |
|
|
| 214 | done |
|
|
| 215 | fi |
|
|
| 216 | export WANT_AUTOMAKE |
|
|
| 217 | einfo "Requested automake ${latest_automake}${WANT_AUTOMAKE}" |
|
|
| 218 | einfo "Using $(automake --version 2>/dev/null | head -n 1)" |
|
|
| 219 | einfo "Using $(aclocal --version 2>/dev/null | head -n 1)" |
|
|
| 220 | else |
|
|
| 221 | ewarn "QA Notice: \${WANT_AUTOMAKE} variable unset. Please report on http://bugs.gentoo.org/" |
|
|
| 222 | fi |
|
|
| 223 | |
|
|
| 224 | autotools_version_sets="yes" |
|
|
| 225 | } |
|
|
| 226 | |
|
|
| 227 | # Internal function to run an autotools' tool |
237 | # Internal function to run an autotools' tool |
| 228 | autotools_run_tool() { |
238 | autotools_run_tool() { |
|
|
239 | if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then |
|
|
240 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
|
|
241 | fi |
|
|
242 | |
| 229 | local STDERR_TARGET="${T}/$$.out" |
243 | local STDERR_TARGET="${T}/$$.out" |
| 230 | local ris |
244 | local ris |
| 231 | |
245 | |
| 232 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
246 | printf "***** $1 *****\n***** $*\n\n" > "${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" |
| 233 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
|
|
| 234 | |
247 | |
| 235 | ebegin "Running $@" |
248 | ebegin "Running $@" |
| 236 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
249 | "$@" >> "${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" 2>&1 |
| 237 | ris=$? |
250 | ris=$? |
| 238 | eend ${ris} |
251 | eend ${ris} |
| 239 | |
252 | |
| 240 | if [[ ${ris} != 0 && ${NO_FAIL} != 1 ]]; then |
253 | if [[ ${ris} != 0 && ${NO_FAIL} != 1 ]]; then |
| 241 | echo |
254 | echo |
| … | |
… | |
| 249 | fi |
262 | fi |
| 250 | } |
263 | } |
| 251 | |
264 | |
| 252 | # Internal function to check for support |
265 | # Internal function to check for support |
| 253 | autotools_check_macro() { |
266 | autotools_check_macro() { |
| 254 | [[ -f configure.ac || -f configure.in ]] && \ |
267 | [[ -f configure.ac || -f configure.in ]] || return 0 |
|
|
268 | local macro |
|
|
269 | for macro ; do |
| 255 | WANT_AUTOCONF="2.5" autoconf --trace=$1 2>/dev/null |
270 | WANT_AUTOCONF="2.5" autoconf --trace="${macro}" 2>/dev/null |
|
|
271 | done |
| 256 | return 0 |
272 | return 0 |
| 257 | } |
273 | } |
| 258 | |
274 | |
| 259 | # Internal function to get additional subdirs to configure |
275 | # Internal function to get additional subdirs to configure |
| 260 | autotools_get_subdirs() { |
276 | autotools_get_subdirs() { |