| 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.38 2006/06/28 00:15:32 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 |
| … | |
… | |
| 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 libtool |
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" |
|
|
34 | RDEPEND="" |
|
|
35 | unset _automake_atom _autoconf_atom |
| 18 | |
36 | |
| 19 | # Variables: |
37 | # Variables: |
| 20 | # |
38 | # |
| 21 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
39 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
| 22 | # AM_OPTS - Additional options to pass to automake during |
40 | # AM_OPTS - Additional options to pass to automake during |
| … | |
… | |
| 45 | # 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 |
| 46 | # 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. |
| 47 | eautoreconf() { |
65 | eautoreconf() { |
| 48 | local pwd=$(pwd) x auxdir |
66 | local pwd=$(pwd) x auxdir |
| 49 | |
67 | |
|
|
68 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
| 50 | # Take care of subdirs |
69 | # Take care of subdirs |
| 51 | for x in $(autotools_get_subdirs); do |
70 | for x in $(autotools_get_subdirs); do |
| 52 | if [[ -d ${x} ]] ; then |
71 | if [[ -d ${x} ]] ; then |
| 53 | cd "${x}" |
72 | cd "${x}" |
| 54 | AT_NOELIBTOOLIZE="yes" eautoreconf |
73 | AT_NOELIBTOOLIZE="yes" eautoreconf |
| 55 | cd "${pwd}" |
74 | cd "${pwd}" |
| 56 | fi |
75 | fi |
| 57 | done |
76 | done |
|
|
77 | fi |
| 58 | |
78 | |
| 59 | auxdir=$(autotools_get_auxdir) |
79 | auxdir=$(autotools_get_auxdir) |
| 60 | |
80 | |
| 61 | einfo "Running eautoreconf in '$(pwd)' ..." |
81 | einfo "Running eautoreconf in '$(pwd)' ..." |
| 62 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
82 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
| … | |
… | |
| 94 | ;; |
114 | ;; |
| 95 | esac |
115 | esac |
| 96 | done |
116 | done |
| 97 | fi |
117 | fi |
| 98 | |
118 | |
|
|
119 | autotools_set_versions |
| 99 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
120 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
| 100 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
121 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
| 101 | } |
122 | } |
| 102 | |
123 | |
| 103 | _elibtoolize() { |
124 | _elibtoolize() { |
| … | |
… | |
| 119 | } |
140 | } |
| 120 | |
141 | |
| 121 | eautoheader() { |
142 | eautoheader() { |
| 122 | # Check if we should run autoheader |
143 | # Check if we should run autoheader |
| 123 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
144 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
|
|
145 | autotools_set_versions |
| 124 | autotools_run_tool autoheader "$@" |
146 | autotools_run_tool autoheader "$@" |
| 125 | } |
147 | } |
| 126 | |
148 | |
| 127 | eautoconf() { |
149 | eautoconf() { |
| 128 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
150 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
| … | |
… | |
| 130 | eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!" |
152 | eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!" |
| 131 | echo |
153 | echo |
| 132 | die "No configure.{ac,in} present!" |
154 | die "No configure.{ac,in} present!" |
| 133 | fi |
155 | fi |
| 134 | |
156 | |
|
|
157 | autotools_set_versions |
| 135 | autotools_run_tool autoconf "$@" |
158 | autotools_run_tool autoconf "$@" |
| 136 | } |
159 | } |
| 137 | |
160 | |
| 138 | eautomake() { |
161 | eautomake() { |
| 139 | local extra_opts |
162 | local extra_opts |
| 140 | |
163 | |
| 141 | [[ -f Makefile.am ]] || return 0 |
164 | [[ -f Makefile.am ]] || return 0 |
| 142 | |
165 | |
|
|
166 | autotools_set_versions |
| 143 | if [[ -z ${FROM_EAUTORECONF} && -f Makefile.in ]]; then |
167 | if [[ -z ${FROM_EAUTORECONF} && -f Makefile.in ]]; then |
| 144 | local used_automake |
168 | local used_automake |
| 145 | local installed_automake |
169 | local installed_automake |
| 146 | |
170 | |
| 147 | installed_automake=$(automake --version | head -n 1 | \ |
171 | installed_automake=$(automake --version | head -n 1 | \ |
| … | |
… | |
| 162 | |
186 | |
| 163 | # --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 |
| 164 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
188 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 165 | } |
189 | } |
| 166 | |
190 | |
|
|
191 | autotools_set_versions() { |
|
|
192 | [[ -n ${autotools_version_sets} ]] && return 0 |
| 167 | |
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 | } |
| 168 | |
216 | |
| 169 | # Internal function to run an autotools' tool |
217 | # Internal function to run an autotools' tool |
| 170 | autotools_run_tool() { |
218 | autotools_run_tool() { |
| 171 | local STDERR_TARGET="${T}/$$.out" |
219 | local STDERR_TARGET="${T}/$$.out" |
| 172 | local PATCH_TARGET="${T}/$$.patch" |
220 | local PATCH_TARGET="${T}/$$.patch" |