| 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.91 2010/01/17 01:09:04 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 | DEPEND="${_automake_atom} |
|
|
50 | ${_autoconf_atom}" |
|
|
51 | [[ ${CATEGORY}/${PN} != "sys-devel/libtool" ]] && DEPEND="${DEPEND} sys-devel/libtool" |
|
|
52 | RDEPEND="" |
|
|
53 | unset _automake_atom _autoconf_atom |
|
|
54 | |
|
|
55 | # @ECLASS-VARIABLE: AM_OPTS |
|
|
56 | # @DESCRIPTION: |
|
|
57 | # Additional options to pass to automake during |
|
|
58 | # eautoreconf call. |
|
|
59 | |
|
|
60 | # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE |
|
|
61 | # @DESCRIPTION: |
|
|
62 | # Don't run elibtoolize command if set to 'yes', |
|
|
63 | # useful when elibtoolize needs to be ran with |
|
|
64 | # particular options |
|
|
65 | |
|
|
66 | # XXX: M4DIR should be deprecated |
|
|
67 | # @ECLASS-VARIABLE: AT_M4DIR |
|
|
68 | # @DESCRIPTION: |
|
|
69 | # Additional director(y|ies) aclocal should search |
|
|
70 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
|
|
71 | AT_GNUCONF_UPDATE="no" |
|
|
72 | |
|
|
73 | |
|
|
74 | # @FUNCTION: eautoreconf |
|
|
75 | # @DESCRIPTION: |
|
|
76 | # This function mimes the behavior of autoreconf, but uses the different |
|
|
77 | # eauto* functions to run the tools. It doesn't accept parameters, but |
|
|
78 | # the directory with include files can be specified with AT_M4DIR variable. |
| 8 | # |
79 | # |
| 9 | # This eclass was made to bridge the incompadibility problem of autoconf-2.13, |
80 | # 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 |
81 | # 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 |
82 | eautoreconf() { |
| 12 | # of these packages due to incompadibility, thus when we have a package that |
83 | 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 | |
84 | |
| 73 | |
85 | if [[ -z ${AT_NO_RECURSIVE} ]]; then |
| 74 | ECLASS=autotools |
86 | # Take care of subdirs |
| 75 | INHERITED="$INHERITED $ECLASS" |
87 | for x in $(autotools_get_subdirs); do |
| 76 | |
88 | if [[ -d ${x} ]] ; then |
| 77 | #[ -z "$ACONFVER" ] && ACONFVER=2.52f |
89 | pushd "${x}" >/dev/null |
| 78 | #[ -z "$AMAKEVER" ] && AMAKEVER=1.5b |
90 | AT_NOELIBTOOLIZE="yes" eautoreconf |
| 79 | [ -z "$ACONFVER" ] && die "!!! You need to set \$ACONFVER *before* inheriting the eclass !!!" |
91 | 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 |
92 | fi |
| 132 | echo |
93 | done |
| 133 | fi |
94 | fi |
|
|
95 | |
|
|
96 | auxdir=$(autotools_get_auxdir) |
|
|
97 | |
|
|
98 | einfo "Running eautoreconf in '${PWD}' ..." |
|
|
99 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
|
|
100 | eaclocal |
|
|
101 | [[ ${CHOST} == *-darwin* ]] && g=g |
|
|
102 | if ${LIBTOOLIZE:-${g}libtoolize} -n --install >& /dev/null ; then |
|
|
103 | _elibtoolize --copy --force --install |
|
|
104 | else |
|
|
105 | _elibtoolize --copy --force |
|
|
106 | fi |
|
|
107 | eautoconf |
|
|
108 | eautoheader |
|
|
109 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
|
|
110 | |
|
|
111 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
|
|
112 | |
|
|
113 | # Call it here to prevent failures due to elibtoolize called _before_ |
|
|
114 | # eautoreconf. We set $S because elibtoolize runs on that #265319 |
|
|
115 | S=${PWD} elibtoolize |
|
|
116 | |
|
|
117 | return 0 |
|
|
118 | } |
|
|
119 | |
|
|
120 | # @FUNCTION: eaclocal |
|
|
121 | # @DESCRIPTION: |
|
|
122 | # These functions runs the autotools using autotools_run_tool with the |
|
|
123 | # specified parametes. The name of the tool run is the same of the function |
|
|
124 | # without e prefix. |
|
|
125 | # They also force installing the support files for safety. |
|
|
126 | # Respects AT_M4DIR for additional directories to search for macro's. |
|
|
127 | eaclocal() { |
|
|
128 | local aclocal_opts |
|
|
129 | |
|
|
130 | local amflags_file |
|
|
131 | for amflags_file in GNUmakefile.am Makefile.am GNUmakefile.in Makefile.in ; do |
|
|
132 | [[ -e ${amflags_file} ]] || continue |
|
|
133 | aclocal_opts=$(sed -n '/^ACLOCAL_AMFLAGS[[:space:]]*=/s:[^=]*=::p' ${amflags_file}) |
|
|
134 | eval aclocal_opts=\"${aclocal_opts}\" |
|
|
135 | break |
| 134 | done |
136 | done |
| 135 | } |
|
|
| 136 | |
137 | |
| 137 | unpack_autotools() { |
138 | if [[ -n ${AT_M4DIR} ]] ; then |
|
|
139 | for x in ${AT_M4DIR} ; do |
|
|
140 | case "${x}" in |
|
|
141 | "-I") |
|
|
142 | # We handle it below |
|
|
143 | ;; |
|
|
144 | *) |
|
|
145 | [[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist" |
|
|
146 | aclocal_opts="${aclocal_opts} -I ${x}" |
|
|
147 | ;; |
|
|
148 | esac |
|
|
149 | done |
|
|
150 | fi |
| 138 | |
151 | |
| 139 | cd ${AUTO_S} |
152 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
|
|
153 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
|
|
154 | } |
| 140 | |
155 | |
| 141 | local x |
156 | # @FUNCTION: _elibtoolize |
| 142 | for x in ${ASRC_URI} |
157 | # @DESCRIPTION: |
| 143 | do |
158 | # Runs libtoolize. Note the '_' prefix .. to not collide with elibtoolize() from |
| 144 | unpack ${x##*/} || die "!!! Could not unpack ${x##*/} needed by autotools !!!" |
159 | # libtool.eclass. |
|
|
160 | _elibtoolize() { |
|
|
161 | local opts g= |
|
|
162 | |
|
|
163 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
|
|
164 | # check for both it and the current AC_PROG_LIBTOOL) |
|
|
165 | [[ -n $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] || return 0 |
|
|
166 | |
|
|
167 | [[ -f GNUmakefile.am || -f Makefile.am ]] && opts="--automake" |
|
|
168 | |
|
|
169 | [[ ${CHOST} == *-darwin* ]] && g=g |
|
|
170 | autotools_run_tool ${LIBTOOLIZE:-${g}libtoolize} "$@" ${opts} |
|
|
171 | |
|
|
172 | # Need to rerun aclocal |
|
|
173 | eaclocal |
|
|
174 | } |
|
|
175 | |
|
|
176 | # @FUNCTION: eautoheader |
|
|
177 | # @DESCRIPTION: |
|
|
178 | # Runs autoheader. |
|
|
179 | eautoheader() { |
|
|
180 | # Check if we should run autoheader |
|
|
181 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
|
|
182 | NO_FAIL=1 autotools_run_tool autoheader "$@" |
|
|
183 | } |
|
|
184 | |
|
|
185 | # @FUNCTION: eautoconf |
|
|
186 | # @DESCRIPTION: |
|
|
187 | # Runs autoconf. |
|
|
188 | eautoconf() { |
|
|
189 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
|
|
190 | echo |
|
|
191 | eerror "No configure.{ac,in} present in '${PWD}'!" |
|
|
192 | echo |
|
|
193 | die "No configure.{ac,in} present!" |
|
|
194 | fi |
|
|
195 | |
|
|
196 | autotools_run_tool autoconf "$@" |
|
|
197 | } |
|
|
198 | |
|
|
199 | # @FUNCTION: eautomake |
|
|
200 | # @DESCRIPTION: |
|
|
201 | # Runs automake. |
|
|
202 | eautomake() { |
|
|
203 | local extra_opts |
|
|
204 | local makefile_name |
|
|
205 | |
|
|
206 | if [[ -f GNUmakefile.am ]]; then |
|
|
207 | makefile_name="GNUmakefile" |
|
|
208 | elif [[ -f Makefile.am ]]; then |
|
|
209 | makefile_name="Makefile" |
|
|
210 | else |
|
|
211 | return 0 |
|
|
212 | fi |
|
|
213 | |
|
|
214 | if [[ -z ${FROM_EAUTORECONF} && -f ${makefile_name}.in ]]; then |
|
|
215 | local used_automake |
|
|
216 | local installed_automake |
|
|
217 | |
|
|
218 | installed_automake=$(WANT_AUTOMAKE= automake --version | head -n 1 | \ |
|
|
219 | sed -e 's:.*(GNU automake) ::') |
|
|
220 | used_automake=$(head -n 1 < ${makefile_name}.in | \ |
|
|
221 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
|
|
222 | |
|
|
223 | if [[ ${installed_automake} != ${used_automake} ]]; then |
|
|
224 | einfo "Automake used for the package (${used_automake}) differs from" |
|
|
225 | einfo "the installed version (${installed_automake})." |
|
|
226 | eautoreconf |
|
|
227 | return 0 |
|
|
228 | fi |
|
|
229 | fi |
|
|
230 | |
|
|
231 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS ]] \ |
|
|
232 | || extra_opts="${extra_opts} --foreign" |
|
|
233 | |
|
|
234 | # --force-missing seems not to be recognized by some flavours of automake |
|
|
235 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
|
|
236 | } |
|
|
237 | |
|
|
238 | # @FUNCTION: eautopoint |
|
|
239 | # @DESCRIPTION: |
|
|
240 | # Runs autopoint (from the gettext package). |
|
|
241 | eautopoint() { |
|
|
242 | autotools_run_tool autopoint "$@" |
|
|
243 | } |
|
|
244 | |
|
|
245 | # Internal function to run an autotools' tool |
|
|
246 | autotools_run_tool() { |
|
|
247 | if [[ ${EBUILD_PHASE} != "unpack" && ${EBUILD_PHASE} != "prepare" ]]; then |
|
|
248 | ewarn "QA Warning: running $1 in ${EBUILD_PHASE} phase" |
|
|
249 | fi |
|
|
250 | |
|
|
251 | # We do the “latest” → version switch here because it solves |
|
|
252 | # possible order problems, see bug #270010 as an example. |
|
|
253 | [[ ${WANT_AUTOMAKE} == "latest" ]] && export WANT_AUTOMAKE=1.10 |
|
|
254 | [[ ${WANT_AUTOCONF} == "latest" ]] && export WANT_AUTOCONF=2.5 |
|
|
255 | |
|
|
256 | local STDERR_TARGET="${T}/$1.out" |
|
|
257 | # most of the time, there will only be one run, but if there are |
|
|
258 | # more, make sure we get unique log filenames |
|
|
259 | if [[ -e ${STDERR_TARGET} ]] ; then |
|
|
260 | STDERR_TARGET="${T}/$1-$$.out" |
|
|
261 | fi |
|
|
262 | |
|
|
263 | printf "***** $1 *****\n***** PWD: ${PWD}\n***** $*\n\n" > "${STDERR_TARGET}" |
|
|
264 | |
|
|
265 | ebegin "Running $@" |
|
|
266 | "$@" >> "${STDERR_TARGET}" 2>&1 |
|
|
267 | eend $? |
|
|
268 | |
|
|
269 | if [[ $? != 0 && ${NO_FAIL} != 1 ]] ; then |
|
|
270 | echo |
|
|
271 | eerror "Failed Running $1 !" |
|
|
272 | eerror |
|
|
273 | eerror "Include in your bugreport the contents of:" |
|
|
274 | eerror |
|
|
275 | eerror " ${STDERR_TARGET}" |
|
|
276 | echo |
|
|
277 | die "Failed Running $1 !" |
|
|
278 | fi |
|
|
279 | } |
|
|
280 | |
|
|
281 | # Internal function to check for support |
|
|
282 | autotools_check_macro() { |
|
|
283 | [[ -f configure.ac || -f configure.in ]] || return 0 |
|
|
284 | local macro |
|
|
285 | for macro ; do |
|
|
286 | WANT_AUTOCONF="2.5" autoconf --trace="${macro}" 2>/dev/null |
| 145 | done |
287 | done |
|
|
288 | return 0 |
| 146 | } |
289 | } |
| 147 | |
290 | |
| 148 | install_autoconf() { |
291 | # Internal function to get additional subdirs to configure |
|
|
292 | autotools_get_subdirs() { |
|
|
293 | local subdirs_scan_out |
| 149 | |
294 | |
| 150 | cd ${AUTO_S}/autoconf-${ACONFVER} || die "!!! Failed to build autoconf !!!" |
295 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
|
|
296 | [[ -n ${subdirs_scan_out} ]] || return 0 |
| 151 | |
297 | |
| 152 | ./configure --prefix=${AUTO_D} \ |
298 | echo "${subdirs_scan_out}" | gawk \ |
| 153 | --infodir=${AUTO_D}/share/info \ |
299 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
| 154 | --mandir=${AUTO_D}/share/man \ |
300 | if (match($0, /AC_CONFIG_SUBDIRS:(.*)$/, res)) |
| 155 | --target=${CHOST} || die "!!! Failed to configure autoconf !!!" |
301 | print res[1] |
|
|
302 | }' | uniq |
| 156 | |
303 | |
| 157 | emake || die "!!! Failed to build autoconf !!!" |
304 | return 0 |
| 158 | |
|
|
| 159 | make install || die "!!! Failed to install autoconf !!!" |
|
|
| 160 | } |
305 | } |
| 161 | |
306 | |
| 162 | install_automake() { |
307 | autotools_get_auxdir() { |
|
|
308 | local auxdir_scan_out |
| 163 | |
309 | |
| 164 | cd ${AUTO_S}/automake-${AMAKEVER} || die "!!! Failed to build automake !!!" |
310 | auxdir_scan_out=$(autotools_check_macro "AC_CONFIG_AUX_DIR") |
|
|
311 | [[ -n ${auxdir_scan_out} ]] || return 0 |
| 165 | |
312 | |
| 166 | ./configure --prefix=${AUTO_D} \ |
313 | echo ${auxdir_scan_out} | gawk \ |
| 167 | --infodir=${AUTO_D}/share/info \ |
314 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
| 168 | --mandir=${AUTO_D}/share/man \ |
315 | if (match($0, /AC_CONFIG_AUX_DIR:(.*)$/, res)) |
| 169 | --target=${CHOST} || die "!!! Failed to configure automake !!!" |
316 | print res[1] |
|
|
317 | }' | uniq |
| 170 | |
318 | |
| 171 | emake || die "!!! Failed to build automake !!!" |
319 | return 0 |
| 172 | |
|
|
| 173 | make install || die "!!! Failed to install automake !!!" |
|
|
| 174 | } |
320 | } |
| 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 | |
|
|