| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 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.21 2005/09/08 15:04:47 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.50 2006/10/17 18:59:36 flameeyes Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Diego Pettenò <flameeyes@gentoo.org> |
5 | # Author: Diego Pettenò <flameeyes@gentoo.org> |
| 6 | # Enhancements: Martin Schlemmer <azarah@gentoo.org> |
6 | # Enhancements: Martin Schlemmer <azarah@gentoo.org> |
| 7 | # |
7 | # |
| 8 | # This eclass is for handling autotooled software packages that |
8 | # This eclass is for handling autotooled software packages that |
| 9 | # needs to regenerate their build scripts. |
9 | # needs to regenerate their build scripts. |
| 10 | # |
10 | # |
| 11 | # NB: If you add anything, please comment it! |
11 | # NB: If you add anything, please comment it! |
| 12 | |
12 | |
| 13 | inherit eutils gnuconfig |
13 | inherit eutils libtool |
| 14 | |
14 | |
| 15 | #DEPEND="sys-devel/automake |
15 | _automake_atom="sys-devel/automake" |
| 16 | # sys-devel/autoconf |
16 | _autoconf_atom="sys-devel/autoconf" |
|
|
17 | if [[ -n ${WANT_AUTOMAKE} ]] && [[ ${WANT_AUTOMAKE} != "latest" ]]; then |
|
|
18 | case ${WANT_AUTOMAKE} in |
|
|
19 | # workaround while we have different versions of automake in arch and ~arch |
|
|
20 | latest) _automake_atom="|| ( =sys-devel/automake-1.10* =sys-devel/automake-1.9* )" ;; |
|
|
21 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
|
|
22 | esac |
|
|
23 | fi |
|
|
24 | |
|
|
25 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
|
|
26 | case ${WANT_AUTOCONF} in |
|
|
27 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
|
|
28 | latest | 2.5) _autoconf_atom=">=sys-devel/autoconf-2.59" ;; |
|
|
29 | esac |
|
|
30 | fi |
|
|
31 | DEPEND="${_automake_atom} |
|
|
32 | ${_autoconf_atom} |
| 17 | # sys-devel/libtool" |
33 | sys-devel/libtool" |
| 18 | # |
34 | RDEPEND="" |
| 19 | # Ebuilds should rather depend on the proper version of the tool. |
35 | unset _automake_atom _autoconf_atom |
| 20 | |
36 | |
| 21 | # Variables: |
37 | # Variables: |
| 22 | # |
38 | # |
| 23 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
39 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
| 24 | # AT_GNUCONF_UPDATE - Should gnuconfig_update() be run (normally handled by |
40 | # AM_OPTS - Additional options to pass to automake during |
| 25 | # econf()) [yes|no] |
41 | # eautoreconf call. |
| 26 | |
42 | |
| 27 | # Functions: |
43 | # Functions: |
| 28 | # |
44 | # |
| 29 | # eautoreconf() - Should do a full autoreconf - normally what most people |
45 | # eautoreconf() - Should do a full autoreconf - normally what most people |
| 30 | # will be interested in. Also should handle additional |
46 | # will be interested in. Also should handle additional |
| 31 | # directories specified by AC_CONFIG_SUBDIRS. |
47 | # directories specified by AC_CONFIG_SUBDIRS. |
| 32 | # eaclocal() - Runs aclocal. Respects AT_M4DIR for additional directories |
48 | # eaclocal() - Runs aclocal. Respects AT_M4DIR for additional directories |
| 33 | # to search for macro's. |
49 | # to search for macro's. |
| 34 | # _elibtoolize() - Runs libtoolize. Note the '_' prefix .. to not collide |
50 | # _elibtoolize() - Runs libtoolize. Note the '_' prefix .. to not collide |
| 35 | # with elibtoolize() from libtool.eclass |
51 | # with elibtoolize() from libtool.eclass |
| 36 | # eautoconf - Runs autoconf. |
52 | # eautoconf - Runs autoconf. |
| 37 | # eautoheader - Runs autoheader. |
53 | # eautoheader - Runs autoheader. |
| 38 | # eautomake - Runs automake |
54 | # eautomake - Runs automake |
| 39 | # |
55 | # |
| 40 | |
56 | |
| 41 | # XXX: M4DIR should be depreciated |
57 | # XXX: M4DIR should be depreciated |
| 42 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
58 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
| 43 | AT_GNUCONF_UPDATE="no" |
59 | AT_GNUCONF_UPDATE="no" |
| 44 | |
60 | |
| 45 | |
61 | |
| 46 | # This function mimes the behavior of autoreconf, but uses the different |
62 | # This function mimes the behavior of autoreconf, but uses the different |
| 47 | # eauto* functions to run the tools. It doesn't accept parameters, but |
63 | # eauto* functions to run the tools. It doesn't accept parameters, but |
| 48 | # the directory with include files can be specified with AT_M4DIR variable. |
64 | # the directory with include files can be specified with AT_M4DIR variable. |
| 49 | # |
|
|
| 50 | # Note: doesn't run autopoint right now, but runs gnuconfig_update. |
|
|
| 51 | eautoreconf() { |
65 | eautoreconf() { |
| 52 | local pwd=$(pwd) x |
66 | local pwd=$(pwd) x auxdir |
| 53 | |
67 | |
|
|
68 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
| 54 | # Take care of subdirs |
69 | # Take care of subdirs |
| 55 | for x in $(autotools_get_subdirs); do |
70 | for x in $(autotools_get_subdirs); do |
| 56 | if [[ -d ${x} ]] ; then |
71 | if [[ -d ${x} ]] ; then |
| 57 | cd "${x}" |
72 | cd "${x}" |
| 58 | eautoreconf |
73 | AT_NOELIBTOOLIZE="yes" eautoreconf |
| 59 | cd "${pwd}" |
74 | cd "${pwd}" |
| 60 | fi |
75 | fi |
| 61 | done |
76 | done |
|
|
77 | fi |
| 62 | |
78 | |
|
|
79 | auxdir=$(autotools_get_auxdir) |
|
|
80 | |
|
|
81 | einfo "Running eautoreconf in '$(pwd)' ..." |
|
|
82 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
| 63 | eaclocal |
83 | eaclocal |
| 64 | _elibtoolize --copy --force |
84 | _elibtoolize --copy --force |
| 65 | eautoconf |
85 | eautoconf |
| 66 | eautoheader |
86 | eautoheader |
| 67 | eautomake |
87 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
| 68 | |
88 | |
| 69 | # Normally run by econf() |
89 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
| 70 | [[ ${AT_GNUCONF_UPDATE} == "yes" ]] && gnuconfig_update |
90 | |
|
|
91 | # Call it here to prevent failures due to elibtoolize called _before_ |
|
|
92 | # eautoreconf. |
|
|
93 | elibtoolize |
| 71 | |
94 | |
| 72 | return 0 |
95 | return 0 |
| 73 | } |
96 | } |
| 74 | |
97 | |
| 75 | # These functions runs the autotools using autotools_run_tool with the |
98 | # These functions runs the autotools using autotools_run_tool with the |
| … | |
… | |
| 77 | # without e prefix. |
100 | # without e prefix. |
| 78 | # They also force installing the support files for safety. |
101 | # They also force installing the support files for safety. |
| 79 | eaclocal() { |
102 | eaclocal() { |
| 80 | local aclocal_opts |
103 | local aclocal_opts |
| 81 | |
104 | |
| 82 | # XXX: M4DIR should be depreciated |
|
|
| 83 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
|
|
| 84 | |
|
|
| 85 | if [[ -n ${AT_M4DIR} ]] ; then |
105 | if [[ -n ${AT_M4DIR} ]] ; then |
| 86 | for x in ${AT_M4DIR} ; do |
106 | for x in ${AT_M4DIR} ; do |
| 87 | case "${x}" in |
107 | case "${x}" in |
| 88 | "-I") |
108 | "-I") |
| 89 | # We handle it below |
109 | # We handle it below |
| 90 | ;; |
|
|
| 91 | "-I"*) |
|
|
| 92 | # Invalid syntax, but maybe we should help out ... |
|
|
| 93 | ewarn "eaclocal: Proper syntax is (note the space after '-I'): aclocal -I <dir>" |
|
|
| 94 | aclocal_opts="${aclocal_opts} -I ${x}" |
|
|
| 95 | ;; |
110 | ;; |
| 96 | *) |
111 | *) |
| 97 | [[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist" |
112 | [[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist" |
| 98 | aclocal_opts="${aclocal_opts} -I ${x}" |
113 | aclocal_opts="${aclocal_opts} -I ${x}" |
| 99 | ;; |
114 | ;; |
| 100 | esac |
115 | esac |
| 101 | done |
116 | done |
| 102 | fi |
117 | fi |
| 103 | |
118 | |
|
|
119 | autotools_set_versions |
| 104 | [[ -f aclocal.m4 && -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
120 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
| 105 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
121 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
| 106 | } |
122 | } |
| 107 | |
123 | |
| 108 | _elibtoolize() { |
124 | _elibtoolize() { |
| 109 | local opts |
125 | local opts |
|
|
126 | local lttest |
| 110 | |
127 | |
| 111 | # Check if we should run libtoolize |
128 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
| 112 | [[ -n $(autotools_check_macro "AC_PROG_LIBTOOL") ]] || return 0 |
129 | # check for both it and the current AC_PROG_LIBTOOL) |
|
|
130 | lttest="$(autotools_check_macro "AC_PROG_LIBTOOL")$(autotools_check_macro "AM_PROG_LIBTOOL")" |
|
|
131 | [[ -n $lttest ]] || return 0 |
| 113 | |
132 | |
| 114 | [[ -f Makefile.am ]] && opts="--automake" |
133 | [[ -f Makefile.am ]] && opts="--automake" |
| 115 | |
134 | |
| 116 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
135 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
| 117 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
136 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
| … | |
… | |
| 121 | } |
140 | } |
| 122 | |
141 | |
| 123 | eautoheader() { |
142 | eautoheader() { |
| 124 | # Check if we should run autoheader |
143 | # Check if we should run autoheader |
| 125 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
144 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
|
|
145 | autotools_set_versions |
| 126 | autotools_run_tool autoheader "$@" |
146 | autotools_run_tool autoheader "$@" |
| 127 | } |
147 | } |
| 128 | |
148 | |
| 129 | eautoconf() { |
149 | eautoconf() { |
| 130 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
150 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
| … | |
… | |
| 132 | eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!" |
152 | eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!" |
| 133 | echo |
153 | echo |
| 134 | die "No configure.{ac,in} present!" |
154 | die "No configure.{ac,in} present!" |
| 135 | fi |
155 | fi |
| 136 | |
156 | |
|
|
157 | autotools_set_versions |
| 137 | autotools_run_tool autoconf "$@" |
158 | autotools_run_tool autoconf "$@" |
| 138 | } |
159 | } |
| 139 | |
160 | |
| 140 | eautomake() { |
161 | eautomake() { |
|
|
162 | local extra_opts |
|
|
163 | |
| 141 | [[ -f Makefile.am ]] || return 0 |
164 | [[ -f Makefile.am ]] || return 0 |
|
|
165 | |
|
|
166 | autotools_set_versions |
|
|
167 | if [[ -z ${FROM_EAUTORECONF} && -f Makefile.in ]]; then |
|
|
168 | local used_automake |
|
|
169 | local installed_automake |
|
|
170 | |
|
|
171 | installed_automake=$(automake --version | head -n 1 | \ |
|
|
172 | sed -e 's:.*(GNU automake) ::') |
|
|
173 | used_automake=$(head -n 1 < Makefile.in | \ |
|
|
174 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
|
|
175 | |
|
|
176 | if [[ ${installed_automake} != ${used_automake} ]]; then |
|
|
177 | einfo "Automake used for the package (${used_automake}) differs from" |
|
|
178 | einfo "the installed version (${installed_automake})." |
|
|
179 | eautoreconf |
|
|
180 | return 0 |
|
|
181 | fi |
|
|
182 | fi |
|
|
183 | |
|
|
184 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS ]] \ |
|
|
185 | || extra_opts="${extra_opts} --foreign" |
|
|
186 | |
| 142 | # --force-missing seems not to be recognized by some flavours of automake |
187 | # --force-missing seems not to be recognized by some flavours of automake |
| 143 | autotools_run_tool automake --add-missing --copy "$@" |
188 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 144 | } |
189 | } |
| 145 | |
190 | |
|
|
191 | autotools_set_versions() { |
|
|
192 | [[ -n ${autotools_version_sets} ]] && return 0 |
| 146 | |
193 | |
|
|
194 | if [[ -n ${WANT_AUTOCONF} ]]; then |
|
|
195 | [[ ${WANT_AUTOCONF} == "latest" ]] && WANT_AUTOCONF="2.5" |
|
|
196 | export WANT_AUTOCONF |
|
|
197 | einfo "Requested autoconf ${WANT_AUTOCONF}" |
|
|
198 | einfo "Using $(autoconf --version 2>/dev/null | head -n 1)" |
|
|
199 | einfo "Using $(autoheader --version 2>/dev/null | head -n 1)" |
|
|
200 | fi |
|
|
201 | |
|
|
202 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
|
|
203 | if [[ ${WANT_AUTOMAKE} == "latest" ]]; then |
|
|
204 | # Consider starting from 1.9, as that is stable everywhere. |
|
|
205 | has_version '~sys-devel/automake-1.9' && WANT_AUTOMAKE="1.9" |
|
|
206 | has_version '~sys-devel/automake-1.10' && WANT_AUTOMAKE="1.10" |
|
|
207 | fi |
|
|
208 | export WANT_AUTOMAKE |
|
|
209 | einfo "Requested automake ${WANT_AUTOMAKE}" |
|
|
210 | einfo "Using $(automake --version 2>/dev/null | head -n 1)" |
|
|
211 | einfo "Using $(aclocal --version 2>/dev/null | head -n 1)" |
|
|
212 | fi |
|
|
213 | |
|
|
214 | autotools_version_sets="yes" |
|
|
215 | } |
| 147 | |
216 | |
| 148 | # Internal function to run an autotools' tool |
217 | # Internal function to run an autotools' tool |
| 149 | autotools_run_tool() { |
218 | autotools_run_tool() { |
| 150 | local STDERR_TARGET="${T}/$$.out" |
219 | local STDERR_TARGET="${T}/$$.out" |
| 151 | local PATCH_TARGET="${T}/$$.patch" |
220 | local PATCH_TARGET="${T}/$$.patch" |
| 152 | local ris |
221 | local ris |
| 153 | |
222 | |
| 154 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
223 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
| 155 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
224 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
| 156 | |
225 | |
| 157 | ebegin "Running $1" |
226 | ebegin "Running $@" |
| 158 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
227 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
| 159 | ris=$? |
228 | ris=$? |
| 160 | eend ${ris} |
229 | eend ${ris} |
| 161 | |
230 | |
| 162 | if [[ ${ris} != 0 ]]; then |
231 | if [[ ${ris} != 0 ]]; then |
| … | |
… | |
| 172 | } |
241 | } |
| 173 | |
242 | |
| 174 | # Internal function to check for support |
243 | # Internal function to check for support |
| 175 | autotools_check_macro() { |
244 | autotools_check_macro() { |
| 176 | [[ -f configure.ac || -f configure.in ]] && \ |
245 | [[ -f configure.ac || -f configure.in ]] && \ |
| 177 | autoconf --trace=$1 2>/dev/null |
246 | WANT_AUTOCONF="2.5" autoconf --trace=$1 2>/dev/null |
| 178 | return 0 |
247 | return 0 |
| 179 | } |
248 | } |
| 180 | |
249 | |
| 181 | # Internal function to get additional subdirs to configure |
250 | # Internal function to get additional subdirs to configure |
| 182 | autotools_get_subdirs() { |
251 | autotools_get_subdirs() { |
| … | |
… | |
| 185 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
254 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
| 186 | [[ -n ${subdirs_scan_out} ]] || return 0 |
255 | [[ -n ${subdirs_scan_out} ]] || return 0 |
| 187 | |
256 | |
| 188 | echo "${subdirs_scan_out}" | gawk \ |
257 | echo "${subdirs_scan_out}" | gawk \ |
| 189 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
258 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
| 190 | if (match($0, "AC_CONFIG_SUBDIRS\\(\\[?([^\\])]*)", res)) { |
259 | if (match($0, /AC_CONFIG_SUBDIRS:(.*)$/, res)) |
| 191 | split(res[1], DIRS, /[\])]/) |
|
|
| 192 | print DIRS[1] |
260 | print res[1] |
| 193 | } |
|
|
| 194 | }' | uniq |
261 | }' | uniq |
| 195 | |
262 | |
| 196 | return 0 |
263 | return 0 |
| 197 | } |
264 | } |
| 198 | |
265 | |
|
|
266 | autotools_get_auxdir() { |
|
|
267 | local auxdir_scan_out |
|
|
268 | |
|
|
269 | auxdir_scan_out=$(autotools_check_macro "AC_CONFIG_AUX_DIR") |
|
|
270 | [[ -n ${auxdir_scan_out} ]] || return 0 |
|
|
271 | |
|
|
272 | echo ${auxdir_scan_out} | gawk \ |
|
|
273 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
|
|
274 | if (match($0, /AC_CONFIG_AUX_DIR:(.*)$/, res)) |
|
|
275 | print res[1] |
|
|
276 | }' | uniq |
|
|
277 | |
|
|
278 | return 0 |
|
|
279 | } |