1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2010 Gentoo Foundation |
2 | # Distributed under the terms of the GNU General Public License, v2 or later |
2 | # Distributed under the terms of the GNU General Public License v2 |
3 | # Author: Martin Schlemmer <azarah@gentoo.org> |
|
|
4 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.4 2002/07/26 21:50:14 danarmak Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.93 2010/03/07 17:42:39 vapier Exp $ |
5 | # The autotools eclass enables building of the apps that needs the latest autconf/automake. |
4 | |
|
|
5 | # @ECLASS: autotools.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # base-system@gentoo.org |
|
|
8 | # @BLURB: Regenerates auto* build scripts |
|
|
9 | # @DESCRIPTION: |
|
|
10 | # This eclass is for safely handling autotooled software packages that need to |
|
|
11 | # regenerate their build scripts. All functions will abort in case of errors. |
6 | # |
12 | # |
7 | # NOTES: |
13 | # NB: If you add anything, please comment it! |
|
|
14 | |
|
|
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" |
|
|
26 | |
|
|
27 | _automake_atom="sys-devel/automake" |
|
|
28 | _autoconf_atom="sys-devel/autoconf" |
|
|
29 | if [[ -n ${WANT_AUTOMAKE} ]]; then |
|
|
30 | case ${WANT_AUTOMAKE} in |
|
|
31 | none) _automake_atom="" ;; # some packages don't require automake at all |
|
|
32 | # if you change the “latest” version here, change also autotools_run_tool |
|
|
33 | latest) _automake_atom="=sys-devel/automake-1.10*" ;; |
|
|
34 | *) _automake_atom="=sys-devel/automake-${WANT_AUTOMAKE}*" ;; |
|
|
35 | esac |
|
|
36 | export WANT_AUTOMAKE |
|
|
37 | fi |
|
|
38 | |
|
|
39 | if [[ -n ${WANT_AUTOCONF} ]] ; then |
|
|
40 | case ${WANT_AUTOCONF} in |
|
|
41 | none) _autoconf_atom="" ;; # some packages don't require autoconf at all |
|
|
42 | 2.1) _autoconf_atom="=sys-devel/autoconf-${WANT_AUTOCONF}*" ;; |
|
|
43 | # if you change the “latest” version here, change also autotools_run_tool |
|
|
44 | latest|2.5) _autoconf_atom=">=sys-devel/autoconf-2.61" ;; |
|
|
45 | *) _autoconf_atom="INCORRECT-WANT_AUTOCONF-SETTING-IN-EBUILD" ;; |
|
|
46 | esac |
|
|
47 | export WANT_AUTOCONF |
|
|
48 | fi |
|
|
49 | |
|
|
50 | AUTOTOOLS_DEPEND="${_automake_atom} ${_autoconf_atom}" |
|
|
51 | [[ ${CATEGORY}/${PN} != "sys-devel/libtool" ]] && AUTOTOOLS_DEPEND="${AUTOTOOLS_DEPEND} >=sys-devel/libtool-2.2.6b" |
|
|
52 | RDEPEND="" |
|
|
53 | |
|
|
54 | # @ECLASS-VARIABLE: AUTOTOOLS_AUTO_DEPEND |
|
|
55 | # @DESCRIPTION: |
|
|
56 | # Set to 'no' to disable automatically adding to DEPEND. This lets |
|
|
57 | # ebuilds former conditional depends by using ${AUTOTOOLS_DEPEND} in |
|
|
58 | # their own DEPEND string. |
|
|
59 | if [[ ${AUTOTOOLS_AUTO_DEPEND} != "no" ]] ; then |
|
|
60 | DEPEND=${AUTOTOOLS_DEPEND} |
|
|
61 | fi |
|
|
62 | |
|
|
63 | unset _automake_atom _autoconf_atom |
|
|
64 | |
|
|
65 | # @ECLASS-VARIABLE: AM_OPTS |
|
|
66 | # @DESCRIPTION: |
|
|
67 | # Additional options to pass to automake during |
|
|
68 | # eautoreconf call. |
|
|
69 | |
|
|
70 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
|
|
71 | # @DESCRIPTION: |
|
|
72 | # Don't run elibtoolize command if set to 'yes', |
|
|
73 | # useful when elibtoolize needs to be ran with |
|
|
74 | # particular options |
|
|
75 | |
|
|
76 | # XXX: M4DIR should be deprecated |
|
|
77 | # @ECLASS-VARIABLE: AT_M4DIR |
|
|
78 | # @DESCRIPTION: |
|
|
79 | # Additional director(y|ies) aclocal should search |
|
|
80 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
|
|
81 | AT_GNUCONF_UPDATE="no" |
|
|
82 | |
|
|
83 | |
|
|
84 | # @FUNCTION: eautoreconf |
|
|
85 | # @DESCRIPTION: |
|
|
86 | # This function mimes the behavior of autoreconf, but uses the different |
|
|
87 | # eauto* functions to run the tools. It doesn't accept parameters, but |
|
|
88 | # the directory with include files can be specified with AT_M4DIR variable. |
8 | # |
89 | # |
9 | # This eclass was made to bridge the incompadibility problem of autoconf-2.13, |
90 | # Should do a full autoreconf - normally what most people will be interested in. |
10 | # autoconf-2.5x and automake-1.4x, automake-1.5x. Most packages needs |
91 | # Also should handle additional directories specified by AC_CONFIG_SUBDIRS. |
11 | # autoconf-2.13 and automake-1.4x, but cannot work with the latest versions |
92 | eautoreconf() { |
12 | # of these packages due to incompadibility, thus when we have a package that |
93 | local x auxdir g |
13 | # needs the latest versions of automake and autoconf, it begins to get a |
|
|
14 | # problem. |
|
|
15 | # |
|
|
16 | # |
|
|
17 | # Commented Example: |
|
|
18 | # |
|
|
19 | # The following is a commented template for how to use this eclass: |
|
|
20 | # |
|
|
21 | # #<cut here> |
|
|
22 | # # Copyright 1999-2002 Gentoo Technologies, Inc. |
|
|
23 | # # Distributed under the terms of the GNU General Public License, v2 or later |
|
|
24 | # # Maintainer: John Doe <john@foo.com> |
|
|
25 | # # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.4 2002/07/26 21:50:14 danarmak Exp $ |
|
|
26 | # |
|
|
27 | # # If you need to set the versions different from in here, it *must* |
|
|
28 | # # be done before inherit.eclass is sourced |
|
|
29 | # #ACONFVER=2.52f |
|
|
30 | # #AMAKEVER=1.5b |
|
|
31 | # |
|
|
32 | # # Source inherit.eclass and inherit AutoTools |
|
|
33 | # . /usr/portage/eclass/inherit.eclass |
|
|
34 | # inherit autotools |
|
|
35 | # |
|
|
36 | # # This is pretty standard. |
|
|
37 | # S=${WORKDIR}/${P} |
|
|
38 | # DESCRIPTION="My Application" |
|
|
39 | # |
|
|
40 | # # Here you *NEED* to have $SRC_URI as a source url to include the automake |
|
|
41 | # # and autoconf source tarballs |
|
|
42 | # SRC_URI="${SRC_URI} |
|
|
43 | # http://download.foo.com/files/${P}.tar.gz" |
|
|
44 | # |
|
|
45 | # HOMEPAGE="http://www.foo.com/" |
|
|
46 | # |
|
|
47 | # # Here you *NEED* to have "$DEPEND" as an depend to include the dependancies |
|
|
48 | # # of automake and autoconf. |
|
|
49 | # DEPEND="${DEPEND} |
|
|
50 | # foo-libs/libfoo" |
|
|
51 | # |
|
|
52 | # src_compile() { |
|
|
53 | # |
|
|
54 | # # This will install automake and autoconf in a tempory directory and |
|
|
55 | # # setup the environment. Do not forget!!!!!!! |
|
|
56 | # install_autotools |
|
|
57 | # |
|
|
58 | # # Now like normal |
|
|
59 | # ./configure --host=${CHOST} \ |
|
|
60 | # --prefix=/usr || die |
|
|
61 | # emake || die |
|
|
62 | # } |
|
|
63 | # |
|
|
64 | # src_install() { |
|
|
65 | # |
|
|
66 | # # Still pretty standard to how you would normally do it |
|
|
67 | # make DESTDIR=${D} install || die |
|
|
68 | # dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO |
|
|
69 | # } |
|
|
70 | # #<cut here> |
|
|
71 | # |
|
|
72 | |
94 | |
73 | |
95 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
74 | ECLASS=autotools |
96 | # Take care of subdirs |
75 | INHERITED="$INHERITED $ECLASS" |
97 | for x in $(autotools_get_subdirs); do |
76 | |
98 | if [[ -d ${x} ]] ; then |
77 | #[ -z "$ACONFVER" ] && ACONFVER=2.52f |
99 | pushd "${x}" >/dev/null |
78 | #[ -z "$AMAKEVER" ] && AMAKEVER=1.5b |
100 | AT_NOELIBTOOLIZE="yes" eautoreconf |
79 | [ -z "$ACONFVER" ] && die "!!! You need to set \$ACONFVER *before* inheriting the eclass !!!" |
101 | popd >/dev/null |
80 | [ -z "$AMAKEVER" ] && die "!!! You need to set \$AMAKEVER *before* inheriting the eclass !!!" |
|
|
81 | |
|
|
82 | DESCRIPTION="Based on the $ECLASS eclass" |
|
|
83 | #ASRC_URI="ftp://ftp.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2 |
|
|
84 | # ftp://alpha.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2 |
|
|
85 | # ftp://ftp.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2 |
|
|
86 | # ftp://alpha.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2" |
|
|
87 | SRC_URI="ftp://ftp.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2 |
|
|
88 | ftp://alpha.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2 |
|
|
89 | ftp://ftp.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2 |
|
|
90 | ftp://alpha.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2" |
|
|
91 | |
|
|
92 | DEPEND="sys-devel/make |
|
|
93 | sys-devel/perl |
|
|
94 | >=sys-devel/m4-1.4o-r2" |
|
|
95 | |
|
|
96 | |
|
|
97 | AUTO_S="${WORKDIR}" |
|
|
98 | AUTO_D="${T}/autotools" |
|
|
99 | |
|
|
100 | fetch_autotools() { |
|
|
101 | |
|
|
102 | local y |
|
|
103 | for y in ${ASRC_URI} |
|
|
104 | do |
|
|
105 | if [ ! -e ${DISTDIR}/${y##*/} ] |
|
|
106 | then |
|
|
107 | echo ">>> Fetching ${y##*/}..." |
|
|
108 | echo |
|
|
109 | local x |
|
|
110 | local _SRC_URI |
|
|
111 | for x in ${GENTOO_MIRRORS} |
|
|
112 | do |
|
|
113 | _SRC_URI="${_SRC_URI} ${x}/distfiles/${y##*/}" |
|
|
114 | done |
|
|
115 | _SRC_URI="${_SRC_URI} `queryhost.sh "${SRC_URI}"`" |
|
|
116 | for x in ${_SRC_URI} |
|
|
117 | do |
|
|
118 | if [ ! -e ${DISTDIR}/${y##*/} ] |
|
|
119 | then |
|
|
120 | if [ "${y##*/}" = "${x##*/}" ] |
|
|
121 | then |
|
|
122 | echo ">>> Trying site ${x}..." |
|
|
123 | eval "${FETCHCOMMAND}" |
|
|
124 | fi |
|
|
125 | fi |
|
|
126 | done |
|
|
127 | if [ ! -e ${DISTDIR}/${y##*/} ] |
|
|
128 | then |
|
|
129 | echo '!!!'" Couldn't download ${y##*/} needed by autotools.eclass. Aborting." |
|
|
130 | exit 1 |
|
|
131 | fi |
102 | fi |
132 | echo |
103 | done |
133 | fi |
104 | fi |
|
|
105 | |
|
|
106 | auxdir=$(autotools_get_auxdir) |
|
|
107 | |
|
|
108 | einfo "Running eautoreconf in '${PWD}' ..." |
|
|
109 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
|
|
110 | eaclocal |
|
|
111 | [[ ${CHOST} == *-darwin* ]] && g=g |
|
|
112 | if ${LIBTOOLIZE:-${g}libtoolize} -n --install >& /dev/null ; then |
|
|
113 | _elibtoolize --copy --force --install |
|
|
114 | else |
|
|
115 | _elibtoolize --copy --force |
|
|
116 | fi |
|
|
117 | eautoconf |
|
|
118 | eautoheader |
|
|
119 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
|
|
120 | |
|
|
121 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
|
|
122 | |
|
|
123 | # Call it here to prevent failures due to elibtoolize called _before_ |
|
|
124 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
|
|
125 | S=${PWD} elibtoolize |
|
|
126 | |
|
|
127 | return 0 |
|
|
128 | } |
|
|
129 | |
|
|
130 | # @FUNCTION: eaclocal |
|
|
131 | # @DESCRIPTION: |
|
|
132 | # These functions runs the autotools using autotools_run_tool with the |
|
|
133 | # specified parametes. The name of the tool run is the same of the function |
|
|
134 | # without e prefix. |
|
|
135 | # They also force installing the support files for safety. |
|
|
136 | # Respects AT_M4DIR for additional directories to search for macro's. |
|
|
137 | eaclocal() { |
|
|
138 | local aclocal_opts |
|
|
139 | |
|
|
140 | local amflags_file |
|
|
141 | for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do |
|
|
142 | [[ -e ${amflags_file} ]] || continue |
|
|
143 | aclocal_opts=$(sed -n '/^ACLOCAL_AMFLAGS[[:space:]]*=/s:[^=]*=::p' ${amflags_file}) |
|
|
144 | eval aclocal_opts=\"${aclocal_opts}\" |
|
|
145 | break |
134 | done |
146 | done |
135 | } |
|
|
136 | |
147 | |
137 | unpack_autotools() { |
148 | if [[ -n ${AT_M4DIR} ]] ; then |
|
|
149 | for x in ${AT_M4DIR} ; do |
|
|
150 | case "${x}" in |
|
|
151 | "-I") |
|
|
152 | # We handle it below |
|
|
153 | ;; |
|
|
154 | *) |
|
|
155 | [[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist" |
|
|
156 | aclocal_opts="${aclocal_opts} -I ${x}" |
|
|
157 | ;; |
|
|
158 | esac |
|
|
159 | done |
|
|
160 | fi |
138 | |
161 | |
139 | cd ${AUTO_S} |
162 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
|
|
163 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
|
|
164 | } |
140 | |
165 | |
141 | local x |
166 | # @FUNCTION: _elibtoolize |
142 | for x in ${ASRC_URI} |
167 | # @DESCRIPTION: |
143 | do |
168 | # Runs libtoolize. Note the '_' prefix .. to not collide with elibtoolize() from |
144 | unpack ${x##*/} || die "!!! Could not unpack ${x##*/} needed by autotools !!!" |
169 | # libtool.eclass. |
|
|
170 | _elibtoolize() { |
|
|
171 | local opts g= |
|
|
172 | |
|
|
173 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
|
|
174 | # check for both it and the current AC_PROG_LIBTOOL) |
|
|
175 | [[ -n $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] || return 0 |
|
|
176 | |
|
|
177 | [[ -f GNUmakefile.am || -f Makefile.am ]] && opts="--automake" |
|
|
178 | |
|
|
179 | [[ ${CHOST} == *-darwin* ]] && g=g |
|
|
180 | autotools_run_tool ${LIBTOOLIZE:-${g}libtoolize} "$@" ${opts} |
|
|
181 | |
|
|
182 | # Need to rerun aclocal |
|
|
183 | eaclocal |
|
|
184 | } |
|
|
185 | |
|
|
186 | # @FUNCTION: eautoheader |
|
|
187 | # @DESCRIPTION: |
|
|
188 | # Runs autoheader. |
|
|
189 | eautoheader() { |
|
|
190 | # Check if we should run autoheader |
|
|
191 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
|
|
192 | NO_FAIL=1 autotools_run_tool autoheader "$@" |
|
|
193 | } |
|
|
194 | |
|
|
195 | # @FUNCTION: eautoconf |
|
|
196 | # @DESCRIPTION: |
|
|
197 | # Runs autoconf. |
|
|
198 | eautoconf() { |
|
|
199 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
|
|
200 | echo |
|
|
201 | eerror "No configure.{ac,in} present in '${PWD}'!" |
|
|
202 | echo |
|
|
203 | die "No configure.{ac,in} present!" |
|
|
204 | fi |
|
|
205 | |
|
|
206 | autotools_run_tool autoconf "$@" |
|
|
207 | } |
|
|
208 | |
|
|
209 | # @FUNCTION: eautomake |
|
|
210 | # @DESCRIPTION: |
|
|
211 | # Runs automake. |
|
|
212 | eautomake() { |
|
|
213 | local extra_opts |
|
|
214 | local makefile_name |
|
|
215 | |
|
|
216 | if [[ -f GNUmakefile.am ]]; then |
|
|
217 | makefile_name="GNUmakefile" |
|
|
218 | elif [[ -f Makefile.am ]]; then |
|
|
219 | makefile_name="Makefile" |
|
|
220 | else |
|
|
221 | return 0 |
|
|
222 | fi |
|
|
223 | |
|
|
224 | if [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name}.in ]]; then |
|
|
225 | local used_automake |
|
|
226 | local installed_automake |
|
|
227 | |
|
|
228 | installed_automake=$(WANT_AUTOMAKE= automake --version | head -n 1 | \ |
|
|
229 | sed -e 's:.*(GNU automake) ::') |
|
|
230 | used_automake=$(head -n 1 < ${makefile_name}.in | \ |
|
|
231 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
|
|
232 | |
|
|
233 | if [[ ${installed_automake} != ${used_automake} ]]; then |
|
|
234 | einfo "Automake used for the package (${used_automake}) differs from" |
|
|
235 | einfo "the installed version (${installed_automake})." |
|
|
236 | eautoreconf |
|
|
237 | return 0 |
|
|
238 | fi |
|
|
239 | fi |
|
|
240 | |
|
|
241 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS ]] \ |
|
|
242 | || extra_opts="${extra_opts} --foreign" |
|
|
243 | |
|
|
244 | # --force-missing seems not to be recognized by some flavours of automake |
|
|
245 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
|
|
246 | } |
|
|
247 | |
|
|
248 | # @FUNCTION: eautopoint |
|
|
249 | # @DESCRIPTION: |
|
|
250 | # Runs autopoint (from the gettext package). |
|
|
251 | eautopoint() { |
|
|
252 | autotools_run_tool autopoint "$@" |
|
|
253 | } |
|
|
254 | |
|
|
255 | # Internal function to run an autotools' tool |
|
|
256 | autotools_run_tool() { |
|
|
257 | if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then |
|
|
258 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
|
|
259 | fi |
|
|
260 | |
|
|
261 | # We do the “latest” → version switch here because it solves |
|
|
262 | # possible order problems, see bug #270010 as an example. |
|
|
263 | [[ ${WANT_AUTOMAKE} == "latest" ]] && export WANT_AUTOMAKE=1.10 |
|
|
264 | [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 |
|
|
265 | |
|
|
266 | local STDERR_TARGET="${T}/$1.out" |
|
|
267 | # most of the time, there will only be one run, but if there are |
|
|
268 | # more, make sure we get unique log filenames |
|
|
269 | if [[ -e ${STDERR_TARGET} ]] ; then |
|
|
270 | STDERR_TARGET="${T}/$1-$$.out" |
|
|
271 | fi |
|
|
272 | |
|
|
273 | printf "***** $1 *****\n***** PWD: ${PWD}\n***** $*\n\n" > "${STDERR_TARGET}" |
|
|
274 | |
|
|
275 | ebegin "Running $@" |
|
|
276 | "$@" >> "${STDERR_TARGET}" 2>&1 |
|
|
277 | eend $? |
|
|
278 | |
|
|
279 | if [[ $? != 0 && ${NO_FAIL} != 1 ]] ; then |
|
|
280 | echo |
|
|
281 | eerror "Failed Running $1 !" |
|
|
282 | eerror |
|
|
283 | eerror "Include in your bugreport the contents of:" |
|
|
284 | eerror |
|
|
285 | eerror " ${STDERR_TARGET}" |
|
|
286 | echo |
|
|
287 | die "Failed Running $1 !" |
|
|
288 | fi |
|
|
289 | } |
|
|
290 | |
|
|
291 | # Internal function to check for support |
|
|
292 | autotools_check_macro() { |
|
|
293 | [[ -f configure.ac || -f configure.in ]] || return 0 |
|
|
294 | local macro |
|
|
295 | for macro ; do |
|
|
296 | WANT_AUTOCONF="2.5" autoconf --trace="${macro}" 2>/dev/null |
145 | done |
297 | done |
|
|
298 | return 0 |
146 | } |
299 | } |
147 | |
300 | |
148 | install_autoconf() { |
301 | # Internal function to get additional subdirs to configure |
|
|
302 | autotools_get_subdirs() { |
|
|
303 | local subdirs_scan_out |
149 | |
304 | |
150 | cd ${AUTO_S}/autoconf-${ACONFVER} || die "!!! Failed to build autoconf !!!" |
305 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
|
|
306 | [[ -n ${subdirs_scan_out} ]] || return 0 |
151 | |
307 | |
152 | ./configure --prefix=${AUTO_D} \ |
308 | echo "${subdirs_scan_out}" | gawk \ |
153 | --infodir=${AUTO_D}/share/info \ |
309 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
154 | --mandir=${AUTO_D}/share/man \ |
310 | if (match($0, /AC_CONFIG_SUBDIRS:(.*)$/, res)) |
155 | --target=${CHOST} || die "!!! Failed to configure autoconf !!!" |
311 | print res[1] |
|
|
312 | }' | uniq |
156 | |
313 | |
157 | emake || die "!!! Failed to build autoconf !!!" |
314 | return 0 |
158 | |
|
|
159 | make install || die "!!! Failed to install autoconf !!!" |
|
|
160 | } |
315 | } |
161 | |
316 | |
162 | install_automake() { |
317 | autotools_get_auxdir() { |
|
|
318 | local auxdir_scan_out |
163 | |
319 | |
164 | cd ${AUTO_S}/automake-${AMAKEVER} || die "!!! Failed to build automake !!!" |
320 | auxdir_scan_out=$(autotools_check_macro "AC_CONFIG_AUX_DIR") |
|
|
321 | [[ -n ${auxdir_scan_out} ]] || return 0 |
165 | |
322 | |
166 | ./configure --prefix=${AUTO_D} \ |
323 | echo ${auxdir_scan_out} | gawk \ |
167 | --infodir=${AUTO_D}/share/info \ |
324 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
168 | --mandir=${AUTO_D}/share/man \ |
325 | if (match($0, /AC_CONFIG_AUX_DIR:(.*)$/, res)) |
169 | --target=${CHOST} || die "!!! Failed to configure automake !!!" |
326 | print res[1] |
|
|
327 | }' | uniq |
170 | |
328 | |
171 | emake || die "!!! Failed to build automake !!!" |
329 | return 0 |
172 | |
|
|
173 | make install || die "!!! Failed to install automake !!!" |
|
|
174 | } |
330 | } |
175 | |
|
|
176 | install_autotools() { |
|
|
177 | |
|
|
178 | if [ "${SRC_URI/autoconf/}" = "$SRC_URI" ] || [ "${SRC_URI/automake/}" = "$SRC_URI" ] |
|
|
179 | then |
|
|
180 | echo "!!! \$SRC_URI was not set properly !!! It needs to include \${SRC_URI}" |
|
|
181 | exit 1 |
|
|
182 | fi |
|
|
183 | |
|
|
184 | if [ "${DEPEND/make/}" = "$DEPEND" ] || [ "${DEPEND/perl/}" = "$DEPEND" ] || \ |
|
|
185 | [ "${DEPEND/m4/}" = "$DEPEND" ] |
|
|
186 | then |
|
|
187 | echo "!!! \$DEPEND was not set properly !!! It needs to include \${DEPEND}" |
|
|
188 | exit 1 |
|
|
189 | fi |
|
|
190 | |
|
|
191 | mkdir -p ${AUTO_S} |
|
|
192 | mkdir -p ${AUTO_D}/{bin,etc,lib,include,share} \ |
|
|
193 | || die "!!! Could not create needed directories for autotools !!!" |
|
|
194 | |
|
|
195 | # fetch_autotools |
|
|
196 | # unpack_autotools |
|
|
197 | install_autoconf |
|
|
198 | install_automake |
|
|
199 | |
|
|
200 | export PATH=${AUTO_D}/bin:${PATH} |
|
|
201 | cd ${S} |
|
|
202 | ln -sf ${AUTO_D}/share/automake/depcomp ${S}/depcomp |
|
|
203 | } |
|
|
204 | |
|
|