| 1 | # Copyright 1999-2002 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2005 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 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.38 2006/06/28 00:15:32 flameeyes Exp $ |
|
|
4 | # |
|
|
5 | # Author: Diego Pettenò <flameeyes@gentoo.org> |
| 3 | # Author: Martin Schlemmer <azarah@gentoo.org> |
6 | # Enhancements: Martin Schlemmer <azarah@gentoo.org> |
| 4 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.1 2001/12/31 23:43:41 azarah Exp $ |
|
|
| 5 | # The autotools eclass enables building of the apps that needs the latest autconf/automake. |
|
|
| 6 | # |
7 | # |
| 7 | # NOTES: |
8 | # This eclass is for handling autotooled software packages that |
|
|
9 | # needs to regenerate their build scripts. |
| 8 | # |
10 | # |
| 9 | # This eclass was made to bridge the incompadibility problem of autoconf-2.13, |
11 | # NB: If you add anything, please comment it! |
| 10 | # autoconf-2.5x and automake-1.4x, automake-1.5x. Most packages needs |
|
|
| 11 | # autoconf-2.13 and automake-1.4x, but cannot work with the latest versions |
|
|
| 12 | # of these packages due to incompadibility, thus when we have a package that |
|
|
| 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.1 2001/12/31 23:43:41 azarah 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 || die |
|
|
| 34 | # inherit autotools || die |
|
|
| 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 | |
12 | |
|
|
13 | inherit eutils libtool |
| 73 | |
14 | |
| 74 | ECLASS=AutoTools |
|
|
| 75 | |
|
|
| 76 | #[ -z "$ACONFVER" ] && ACONFVER=2.52f |
|
|
| 77 | #[ -z "$AMAKEVER" ] && AMAKEVER=1.5b |
|
|
| 78 | [ -z "$ACONFVER" ] && die "!!! You need to set \$ACONFVER *before* inheriting the eclass !!!" |
|
|
| 79 | [ -z "$AMAKEVER" ] && die "!!! You need to set \$AMAKEVER *before* inheriting the eclass !!!" |
|
|
| 80 | |
|
|
| 81 | DESCRIPTION="Based on the $ECLASS eclass" |
|
|
| 82 | #ASRC_URI="ftp://ftp.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2 |
|
|
| 83 | # ftp://alpha.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2 |
|
|
| 84 | # ftp://ftp.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2 |
|
|
| 85 | # ftp://alpha.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2" |
|
|
| 86 | SRC_URI="ftp://ftp.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2 |
|
|
| 87 | ftp://alpha.gnu.org/gnu/autoconf/autoconf-${ACONFVER}.tar.bz2 |
|
|
| 88 | ftp://ftp.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2 |
|
|
| 89 | ftp://alpha.gnu.org/gnu/automake/automake-${AMAKEVER}.tar.bz2" |
|
|
| 90 | |
|
|
| 91 | DEPEND="sys-devel/make |
15 | DEPEND="sys-devel/automake |
| 92 | sys-devel/perl |
16 | sys-devel/autoconf |
| 93 | >=sys-devel/m4-1.4o-r2" |
17 | sys-devel/libtool" |
| 94 | |
18 | |
|
|
19 | # Variables: |
|
|
20 | # |
|
|
21 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
|
|
22 | # AM_OPTS - Additional options to pass to automake during |
|
|
23 | # eautoreconf call. |
| 95 | |
24 | |
| 96 | AUTO_S="${WORKDIR}" |
25 | # Functions: |
| 97 | AUTO_D="${T}/autotools" |
26 | # |
|
|
27 | # eautoreconf() - Should do a full autoreconf - normally what most people |
|
|
28 | # will be interested in. Also should handle additional |
|
|
29 | # directories specified by AC_CONFIG_SUBDIRS. |
|
|
30 | # eaclocal() - Runs aclocal. Respects AT_M4DIR for additional directories |
|
|
31 | # to search for macro's. |
|
|
32 | # _elibtoolize() - Runs libtoolize. Note the '_' prefix .. to not collide |
|
|
33 | # with elibtoolize() from libtool.eclass |
|
|
34 | # eautoconf - Runs autoconf. |
|
|
35 | # eautoheader - Runs autoheader. |
|
|
36 | # eautomake - Runs automake |
|
|
37 | # |
| 98 | |
38 | |
| 99 | fetch_autotools() { |
39 | # XXX: M4DIR should be depreciated |
|
|
40 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
|
|
41 | AT_GNUCONF_UPDATE="no" |
| 100 | |
42 | |
| 101 | local y |
43 | |
| 102 | for y in ${ASRC_URI} |
44 | # This function mimes the behavior of autoreconf, but uses the different |
| 103 | do |
45 | # eauto* functions to run the tools. It doesn't accept parameters, but |
| 104 | if [ ! -e ${DISTDIR}/${y##*/} ] |
46 | # the directory with include files can be specified with AT_M4DIR variable. |
| 105 | then |
47 | eautoreconf() { |
| 106 | echo ">>> Fetching ${y##*/}..." |
48 | local pwd=$(pwd) x auxdir |
| 107 | echo |
49 | |
| 108 | local x |
50 | # Take care of subdirs |
| 109 | local _SRC_URI |
51 | for x in $(autotools_get_subdirs); do |
| 110 | for x in ${GENTOO_MIRRORS} |
52 | if [[ -d ${x} ]] ; then |
| 111 | do |
53 | cd "${x}" |
| 112 | _SRC_URI="${_SRC_URI} ${x}/distfiles/${y##*/}" |
54 | AT_NOELIBTOOLIZE="yes" eautoreconf |
| 113 | done |
55 | cd "${pwd}" |
| 114 | _SRC_URI="${_SRC_URI} `queryhost.sh "${SRC_URI}"`" |
|
|
| 115 | for x in ${_SRC_URI} |
|
|
| 116 | do |
|
|
| 117 | if [ ! -e ${DISTDIR}/${y##*/} ] |
|
|
| 118 | then |
|
|
| 119 | if [ "${y##*/}" = "${x##*/}" ] |
|
|
| 120 | then |
|
|
| 121 | echo ">>> Trying site ${x}..." |
|
|
| 122 | eval "${FETCHCOMMAND}" |
|
|
| 123 | fi |
|
|
| 124 | fi |
|
|
| 125 | done |
|
|
| 126 | if [ ! -e ${DISTDIR}/${y##*/} ] |
|
|
| 127 | then |
|
|
| 128 | echo '!!!'" Couldn't download ${y##*/} needed by autotools.eclass. Aborting." |
|
|
| 129 | exit 1 |
|
|
| 130 | fi |
56 | fi |
| 131 | echo |
|
|
| 132 | fi |
|
|
| 133 | done |
57 | done |
| 134 | } |
|
|
| 135 | |
58 | |
| 136 | unpack_autotools() { |
59 | auxdir=$(autotools_get_auxdir) |
| 137 | |
60 | |
| 138 | cd ${AUTO_S} |
61 | einfo "Running eautoreconf in '$(pwd)' ..." |
|
|
62 | [[ -n ${auxdir} ]] && mkdir -p ${auxdir} |
|
|
63 | eaclocal |
|
|
64 | _elibtoolize --copy --force |
|
|
65 | eautoconf |
|
|
66 | eautoheader |
|
|
67 | FROM_EAUTORECONF="yes" eautomake ${AM_OPTS} |
| 139 | |
68 | |
| 140 | local x |
69 | [[ ${AT_NOELIBTOOLIZE} == "yes" ]] && return 0 |
| 141 | for x in ${ASRC_URI} |
70 | |
| 142 | do |
71 | # Call it here to prevent failures due to elibtoolize called _before_ |
| 143 | unpack ${x##*/} || die "!!! Could not unpack ${x##*/} needed by autotools !!!" |
72 | # eautoreconf. |
|
|
73 | elibtoolize |
|
|
74 | |
|
|
75 | return 0 |
|
|
76 | } |
|
|
77 | |
|
|
78 | # These functions runs the autotools using autotools_run_tool with the |
|
|
79 | # specified parametes. The name of the tool run is the same of the function |
|
|
80 | # without e prefix. |
|
|
81 | # They also force installing the support files for safety. |
|
|
82 | eaclocal() { |
|
|
83 | local aclocal_opts |
|
|
84 | |
|
|
85 | if [[ -n ${AT_M4DIR} ]] ; then |
|
|
86 | for x in ${AT_M4DIR} ; do |
|
|
87 | case "${x}" in |
|
|
88 | "-I") |
|
|
89 | # We handle it below |
|
|
90 | ;; |
|
|
91 | *) |
|
|
92 | [[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist" |
|
|
93 | aclocal_opts="${aclocal_opts} -I ${x}" |
|
|
94 | ;; |
|
|
95 | esac |
| 144 | done |
96 | done |
| 145 | } |
97 | fi |
| 146 | |
98 | |
| 147 | install_autoconf() { |
99 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
| 148 | |
100 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
| 149 | cd ${AUTO_S}/autoconf-${ACONFVER} || die "!!! Failed to build autoconf !!!" |
|
|
| 150 | |
|
|
| 151 | ./configure --prefix=${AUTO_D} \ |
|
|
| 152 | --infodir=${AUTO_D}/share/info \ |
|
|
| 153 | --mandir=${AUTO_D}/share/man \ |
|
|
| 154 | --target=${CHOST} || die "!!! Failed to configure autoconf !!!" |
|
|
| 155 | |
|
|
| 156 | emake || die "!!! Failed to build autoconf !!!" |
|
|
| 157 | |
|
|
| 158 | make install || die "!!! Failed to install autoconf !!!" |
|
|
| 159 | } |
101 | } |
| 160 | |
102 | |
| 161 | install_automake() { |
103 | _elibtoolize() { |
|
|
104 | local opts |
|
|
105 | local lttest |
| 162 | |
106 | |
| 163 | cd ${AUTO_S}/automake-${AMAKEVER} || die "!!! Failed to build automake !!!" |
107 | # Check if we should run libtoolize (AM_PROG_LIBTOOL is an older macro, |
|
|
108 | # check for both it and the current AC_PROG_LIBTOOL) |
|
|
109 | lttest="$(autotools_check_macro "AC_PROG_LIBTOOL")$(autotools_check_macro "AM_PROG_LIBTOOL")" |
|
|
110 | [[ -n $lttest ]] || return 0 |
| 164 | |
111 | |
| 165 | ./configure --prefix=${AUTO_D} \ |
112 | [[ -f Makefile.am ]] && opts="--automake" |
| 166 | --infodir=${AUTO_D}/share/info \ |
|
|
| 167 | --mandir=${AUTO_D}/share/man \ |
|
|
| 168 | --target=${CHOST} || die "!!! Failed to configure automake !!!" |
|
|
| 169 | |
113 | |
| 170 | emake || die "!!! Failed to build automake !!!" |
114 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
|
|
115 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
| 171 | |
116 | |
| 172 | make install || die "!!! Failed to install automake !!!" |
117 | # Need to rerun aclocal |
|
|
118 | eaclocal |
| 173 | } |
119 | } |
| 174 | |
120 | |
| 175 | install_autotools() { |
121 | eautoheader() { |
|
|
122 | # Check if we should run autoheader |
|
|
123 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
|
|
124 | autotools_run_tool autoheader "$@" |
|
|
125 | } |
| 176 | |
126 | |
| 177 | if [ "${SRC_URI/autoconf/}" = "$SRC_URI" ] || [ "${SRC_URI/automake/}" = "$SRC_URI" ] |
127 | eautoconf() { |
| 178 | then |
128 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
| 179 | echo "!!! \$SRC_URI was not set properly !!! It needs to include \${SRC_URI}" |
129 | echo |
| 180 | exit 1 |
130 | eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!" |
|
|
131 | echo |
|
|
132 | die "No configure.{ac,in} present!" |
|
|
133 | fi |
|
|
134 | |
|
|
135 | autotools_run_tool autoconf "$@" |
|
|
136 | } |
|
|
137 | |
|
|
138 | eautomake() { |
|
|
139 | local extra_opts |
|
|
140 | |
|
|
141 | [[ -f Makefile.am ]] || return 0 |
|
|
142 | |
|
|
143 | if [[ -z ${FROM_EAUTORECONF} && -f Makefile.in ]]; then |
|
|
144 | local used_automake |
|
|
145 | local installed_automake |
|
|
146 | |
|
|
147 | installed_automake=$(automake --version | head -n 1 | \ |
|
|
148 | sed -e 's:.*(GNU automake) ::') |
|
|
149 | used_automake=$(head -n 1 < Makefile.in | \ |
|
|
150 | sed -e 's:.*by automake \(.*\) from .*:\1:') |
|
|
151 | |
|
|
152 | if [[ ${installed_automake} != ${used_automake} ]]; then |
|
|
153 | einfo "Automake used for the package (${used_automake}) differs from" |
|
|
154 | einfo "the installed version (${installed_automake})." |
|
|
155 | eautoreconf |
|
|
156 | return 0 |
| 181 | fi |
157 | fi |
| 182 | |
|
|
| 183 | if [ "${DEPEND/make/}" = "$DEPEND" ] || [ "${DEPEND/perl/}" = "$DEPEND" ] || \ |
|
|
| 184 | [ "${DEPEND/m4/}" = "$DEPEND" ] |
|
|
| 185 | then |
|
|
| 186 | echo "!!! \$DEPEND was not set properly !!! It needs to include \${DEPEND}" |
|
|
| 187 | exit 1 |
|
|
| 188 | fi |
158 | fi |
| 189 | |
159 | |
| 190 | mkdir -p ${AUTO_S} |
160 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog && -f NEWS ]] \ |
| 191 | mkdir -p ${AUTO_D}/{bin,etc,lib,include,share} \ |
161 | || extra_opts="${extra_opts} --foreign" |
| 192 | || die "!!! Could not create needed directories for autotools !!!" |
|
|
| 193 | |
162 | |
| 194 | # fetch_autotools |
163 | # --force-missing seems not to be recognized by some flavours of automake |
| 195 | # unpack_autotools |
164 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 196 | install_autoconf |
|
|
| 197 | install_automake |
|
|
| 198 | |
|
|
| 199 | export PATH=${AUTO_D}/bin:${PATH} |
|
|
| 200 | cd ${S} |
|
|
| 201 | ln -sf ${AUTO_D}/share/automake/depcomp ${S}/depcomp |
|
|
| 202 | } |
165 | } |
| 203 | |
166 | |
|
|
167 | |
|
|
168 | |
|
|
169 | # Internal function to run an autotools' tool |
|
|
170 | autotools_run_tool() { |
|
|
171 | local STDERR_TARGET="${T}/$$.out" |
|
|
172 | local PATCH_TARGET="${T}/$$.patch" |
|
|
173 | local ris |
|
|
174 | |
|
|
175 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
|
|
176 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
|
|
177 | |
|
|
178 | ebegin "Running $@" |
|
|
179 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
|
|
180 | ris=$? |
|
|
181 | eend ${ris} |
|
|
182 | |
|
|
183 | if [[ ${ris} != 0 ]]; then |
|
|
184 | echo |
|
|
185 | eerror "Failed Running $1 !" |
|
|
186 | eerror |
|
|
187 | eerror "Include in your bugreport the contents of:" |
|
|
188 | eerror |
|
|
189 | eerror " ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/}" |
|
|
190 | echo |
|
|
191 | die "Failed Running $1 !" |
|
|
192 | fi |
|
|
193 | } |
|
|
194 | |
|
|
195 | # Internal function to check for support |
|
|
196 | autotools_check_macro() { |
|
|
197 | [[ -f configure.ac || -f configure.in ]] && \ |
|
|
198 | WANT_AUTOCONF="2.5" autoconf --trace=$1 2>/dev/null |
|
|
199 | return 0 |
|
|
200 | } |
|
|
201 | |
|
|
202 | # Internal function to get additional subdirs to configure |
|
|
203 | autotools_get_subdirs() { |
|
|
204 | local subdirs_scan_out |
|
|
205 | |
|
|
206 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
|
|
207 | [[ -n ${subdirs_scan_out} ]] || return 0 |
|
|
208 | |
|
|
209 | echo "${subdirs_scan_out}" | gawk \ |
|
|
210 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
|
|
211 | if (match($0, /AC_CONFIG_SUBDIRS:(.*)$/, res)) |
|
|
212 | print res[1] |
|
|
213 | }' | uniq |
|
|
214 | |
|
|
215 | return 0 |
|
|
216 | } |
|
|
217 | |
|
|
218 | autotools_get_auxdir() { |
|
|
219 | local auxdir_scan_out |
|
|
220 | |
|
|
221 | auxdir_scan_out=$(autotools_check_macro "AC_CONFIG_AUX_DIR") |
|
|
222 | [[ -n ${auxdir_scan_out} ]] || return 0 |
|
|
223 | |
|
|
224 | echo ${auxdir_scan_out} | gawk \ |
|
|
225 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
|
|
226 | if (match($0, /AC_CONFIG_AUX_DIR:(.*)$/, res)) |
|
|
227 | print res[1] |
|
|
228 | }' | uniq |
|
|
229 | |
|
|
230 | return 0 |
|
|
231 | } |