| 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.75 2008/04/24 03:15:43 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 |
|
|
13 | |
|
|
14 | [[ -z ${WANT_AUTOCONF} ]] && WANT_AUTOCONF="latest" |
|
|
15 | [[ -z ${WANT_AUTOMAKE} ]] && WANT_AUTOMAKE="latest" |
| 14 | |
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" |
| 17 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
19 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
| 18 | case ${WANT_AUTOMAKE} in |
20 | case ${WANT_AUTOMAKE} in |
| 19 | # workaround while we have different versions of automake in arch and ~arch |
21 | 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* )" ;; |
22 | latest) _automake_atom="=sys-devel/automake-1.10*" ;; |
| 21 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
23 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
| 22 | esac |
24 | esac |
|
|
25 | [[ ${WANT_AUTOMAKE} == "latest" ]] && WANT_AUTOMAKE="1.10" |
|
|
26 | export WANT_AUTOMAKE |
| 23 | fi |
27 | fi |
| 24 | |
28 | |
| 25 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
29 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
| 26 | case ${WANT_AUTOCONF} in |
30 | case ${WANT_AUTOCONF} in |
|
|
31 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
| 27 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
32 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
| 28 | 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" ;; |
| 29 | esac |
35 | esac |
|
|
36 | [[ ${WANT_AUTOCONF} == "latest" ]] && WANT_AUTOCONF="2.5" |
|
|
37 | export WANT_AUTOCONF |
| 30 | fi |
38 | fi |
| 31 | DEPEND="${_automake_atom} |
39 | DEPEND="${_automake_atom} |
| 32 | ${_autoconf_atom} |
40 | ${_autoconf_atom} |
| 33 | sys-devel/libtool" |
41 | sys-devel/libtool" |
| 34 | RDEPEND="" |
42 | RDEPEND="" |
| … | |
… | |
| 55 | # eautoconf - Runs autoconf. |
63 | # eautoconf - Runs autoconf. |
| 56 | # eautoheader - Runs autoheader. |
64 | # eautoheader - Runs autoheader. |
| 57 | # eautomake - Runs automake |
65 | # eautomake - Runs automake |
| 58 | # |
66 | # |
| 59 | |
67 | |
| 60 | # XXX: M4DIR should be depreciated |
68 | # XXX: M4DIR should be deprecated |
| 61 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
69 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
| 62 | AT_GNUCONF_UPDATE="no" |
70 | AT_GNUCONF_UPDATE="no" |
| 63 | |
71 | |
| 64 | |
72 | |
| 65 | # This function mimes the behavior of autoreconf, but uses the different |
73 | # This function mimes the behavior of autoreconf, but uses the different |
| … | |
… | |
| 82 | auxdir=$(autotools_get_auxdir) |
90 | auxdir=$(autotools_get_auxdir) |
| 83 | |
91 | |
| 84 | einfo "Running eautoreconf in '$(pwd)' ..." |
92 | einfo "Running eautoreconf in '$(pwd)' ..." |
| 85 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
93 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
| 86 | eaclocal |
94 | eaclocal |
|
|
95 | if ${LIBTOOLIZE:-libtoolize} -n --install >& /dev/null ; then |
|
|
96 | _elibtoolize --copy --force --install |
|
|
97 | else |
| 87 | _elibtoolize --copy --force |
98 | _elibtoolize --copy --force |
|
|
99 | fi |
| 88 | eautoconf |
100 | eautoconf |
| 89 | eautoheader |
101 | eautoheader |
| 90 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
102 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
| 91 | |
103 | |
| 92 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
104 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
| … | |
… | |
| 102 | # 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 |
| 103 | # without e prefix. |
115 | # without e prefix. |
| 104 | # They also force installing the support files for safety. |
116 | # They also force installing the support files for safety. |
| 105 | eaclocal() { |
117 | eaclocal() { |
| 106 | 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 | eval aclocal_opts=\"${aclocal_opts}\" |
|
|
125 | break |
|
|
126 | done |
| 107 | |
127 | |
| 108 | if [[ -n ${AT_M4DIR} ]] ; then |
128 | if [[ -n ${AT_M4DIR} ]] ; then |
| 109 | for x in ${AT_M4DIR} ; do |
129 | for x in ${AT_M4DIR} ; do |
| 110 | case "${x}" in |
130 | case "${x}" in |
| 111 | "-I") |
131 | "-I") |
| … | |
… | |
| 117 | ;; |
137 | ;; |
| 118 | esac |
138 | esac |
| 119 | done |
139 | done |
| 120 | fi |
140 | fi |
| 121 | |
141 | |
| 122 | autotools_set_versions |
|
|
| 123 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
142 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
| 124 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
143 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
| 125 | } |
144 | } |
| 126 | |
145 | |
| 127 | _elibtoolize() { |
146 | _elibtoolize() { |
| … | |
… | |
| 131 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
150 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
| 132 | # check for both it and the current AC_PROG_LIBTOOL) |
151 | # check for both it and the current AC_PROG_LIBTOOL) |
| 133 | lttest="$(autotools_check_macro "AC_PROG_LIBTOOL")$(autotools_check_macro "AM_PROG_LIBTOOL")" |
152 | lttest="$(autotools_check_macro "AC_PROG_LIBTOOL")$(autotools_check_macro "AM_PROG_LIBTOOL")" |
| 134 | [[ -n $lttest ]] || return 0 |
153 | [[ -n $lttest ]] || return 0 |
| 135 | |
154 | |
| 136 | [[ -f Makefile.am ]] && opts="--automake" |
155 | [[ -f GNUmakefile.am || -f Makefile.am ]] && opts="--automake" |
| 137 | |
156 | |
| 138 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
157 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
| 139 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
158 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
| 140 | |
159 | |
| 141 | # Need to rerun aclocal |
160 | # Need to rerun aclocal |
| … | |
… | |
| 143 | } |
162 | } |
| 144 | |
163 | |
| 145 | eautoheader() { |
164 | eautoheader() { |
| 146 | # Check if we should run autoheader |
165 | # Check if we should run autoheader |
| 147 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
166 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
| 148 | autotools_set_versions |
|
|
| 149 | NO_FAIL=1 autotools_run_tool autoheader "$@" |
167 | NO_FAIL=1 autotools_run_tool autoheader "$@" |
| 150 | } |
168 | } |
| 151 | |
169 | |
| 152 | eautoconf() { |
170 | eautoconf() { |
| 153 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
171 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
| … | |
… | |
| 155 | eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!" |
173 | eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!" |
| 156 | echo |
174 | echo |
| 157 | die "No configure.{ac,in} present!" |
175 | die "No configure.{ac,in} present!" |
| 158 | fi |
176 | fi |
| 159 | |
177 | |
| 160 | autotools_set_versions |
|
|
| 161 | autotools_run_tool autoconf "$@" |
178 | autotools_run_tool autoconf "$@" |
| 162 | } |
179 | } |
| 163 | |
180 | |
| 164 | eautomake() { |
181 | eautomake() { |
| 165 | local extra_opts |
182 | local extra_opts |
|
|
183 | local makefile_name |
| 166 | |
184 | |
| 167 | [[ -f Makefile.am ]] || return 0 |
185 | if [[ -f GNUmakefile.am ]]; then |
|
|
186 | makefile_name="GNUmakefile" |
|
|
187 | elif [[ -f Makefile.am ]]; then |
|
|
188 | makefile_name="Makefile" |
|
|
189 | else |
|
|
190 | return 0 |
|
|
191 | fi |
| 168 | |
192 | |
| 169 | autotools_set_versions |
|
|
| 170 | if [[ -z ${FROM_EAUTORECONF} && -f Makefile.in ]]; then |
193 | if [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name}.in ]]; then |
| 171 | local used_automake |
194 | local used_automake |
| 172 | local installed_automake |
195 | local installed_automake |
| 173 | |
196 | |
| 174 | installed_automake=$(automake --version | head -n 1 | \ |
197 | installed_automake=$(automake --version | head -n 1 | \ |
| 175 | sed -e 's:.*(GNU automake) ::') |
198 | sed -e 's:.*(GNU automake) ::') |
| 176 | used_automake=$(head -n 1 < Makefile.in | \ |
199 | used_automake=$(head -n 1 < ${makefile_name}.in | \ |
| 177 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
200 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
| 178 | |
201 | |
| 179 | if [[ ${installed_automake} != ${used_automake} ]]; then |
202 | if [[ ${installed_automake} != ${used_automake} ]]; then |
| 180 | einfo "Automake used for the package (${used_automake}) differs from" |
203 | einfo "Automake used for the package (${used_automake}) differs from" |
| 181 | einfo "the installed version (${installed_automake})." |
204 | einfo "the installed version (${installed_automake})." |
| … | |
… | |
| 189 | |
212 | |
| 190 | # --force-missing seems not to be recognized by some flavours of automake |
213 | # --force-missing seems not to be recognized by some flavours of automake |
| 191 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
214 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 192 | } |
215 | } |
| 193 | |
216 | |
| 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 |
217 | # Internal function to run an autotools' tool |
| 228 | autotools_run_tool() { |
218 | autotools_run_tool() { |
|
|
219 | if [[ ${EBUILD_PHASE} != "unpack" ]]; then |
|
|
220 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
|
|
221 | fi |
|
|
222 | |
| 229 | local STDERR_TARGET="${T}/$$.out" |
223 | local STDERR_TARGET="${T}/$$.out" |
| 230 | local ris |
224 | local ris |
| 231 | |
225 | |
| 232 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
226 | printf "***** $1 *****\n***** $*\n\n" > "${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" |
| 233 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
|
|
| 234 | |
227 | |
| 235 | ebegin "Running $@" |
228 | ebegin "Running $@" |
| 236 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
229 | "$@" >> "${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" 2>&1 |
| 237 | ris=$? |
230 | ris=$? |
| 238 | eend ${ris} |
231 | eend ${ris} |
| 239 | |
232 | |
| 240 | if [[ ${ris} != 0 && ${NO_FAIL} != 1 ]]; then |
233 | if [[ ${ris} != 0 && ${NO_FAIL} != 1 ]]; then |
| 241 | echo |
234 | echo |