| 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.19 2005/09/02 08:23:30 azarah Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.28 2006/01/12 13:13:56 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 gnuconfig |
13 | inherit eutils gnuconfig |
| 14 | |
14 | |
| 15 | #DEPEND="sys-devel/automake |
15 | DEPEND="sys-devel/automake |
| 16 | # sys-devel/autoconf |
16 | sys-devel/autoconf |
| 17 | # sys-devel/libtool" |
17 | sys-devel/libtool" |
| 18 | # |
|
|
| 19 | # Ebuilds should rather depend on the proper version of the tool. |
|
|
| 20 | |
18 | |
| 21 | # Variables: |
19 | # Variables: |
| 22 | # |
20 | # |
| 23 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
21 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
| 24 | # AT_GNUCONF_UPDATE - Should gnuconfig_update() be run (normally handled by |
22 | # AT_GNUCONF_UPDATE - Should gnuconfig_update() be run (normally handled by |
| 25 | # econf()) [yes|no] |
23 | # econf()) [yes|no] |
|
|
24 | # AM_OPTS - Additional options to pass to automake during |
|
|
25 | # eautoreconf call. |
| 26 | |
26 | |
| 27 | # Functions: |
27 | # Functions: |
| 28 | # |
28 | # |
| 29 | # eautoreconf() - Should do a full autoreconf - normally what most people |
29 | # eautoreconf() - Should do a full autoreconf - normally what most people |
| 30 | # will be interested in. Also should handle additional |
30 | # will be interested in. Also should handle additional |
| … | |
… | |
| 58 | eautoreconf |
58 | eautoreconf |
| 59 | cd "${pwd}" |
59 | cd "${pwd}" |
| 60 | fi |
60 | fi |
| 61 | done |
61 | done |
| 62 | |
62 | |
|
|
63 | einfo "Running eautoreconf in '$(pwd)' ..." |
| 63 | eaclocal |
64 | eaclocal |
| 64 | _elibtoolize --copy --force |
65 | _elibtoolize --copy --force |
| 65 | eautoconf |
66 | eautoconf |
| 66 | eautoheader |
67 | eautoheader |
| 67 | eautomake |
68 | eautomake ${AM_OPTS} |
| 68 | |
69 | |
| 69 | # Normally run by econf() |
70 | # Normally run by econf() |
| 70 | [[ ${AT_GNUCONF_UPDATE} == "yes" ]] && gnuconfig_update |
71 | [[ ${AT_GNUCONF_UPDATE} == "yes" ]] && gnuconfig_update |
|
|
72 | |
|
|
73 | return 0 |
| 71 | } |
74 | } |
| 72 | |
75 | |
| 73 | # These functions runs the autotools using autotools_run_tool with the |
76 | # These functions runs the autotools using autotools_run_tool with the |
| 74 | # specified parametes. The name of the tool run is the same of the function |
77 | # specified parametes. The name of the tool run is the same of the function |
| 75 | # without e prefix. |
78 | # without e prefix. |
| … | |
… | |
| 97 | ;; |
100 | ;; |
| 98 | esac |
101 | esac |
| 99 | done |
102 | done |
| 100 | fi |
103 | fi |
| 101 | |
104 | |
| 102 | [[ -f aclocal.m4 && -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
105 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
| 103 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
106 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
| 104 | } |
107 | } |
| 105 | |
108 | |
| 106 | _elibtoolize() { |
109 | _elibtoolize() { |
| 107 | local opts |
110 | local opts |
| 108 | |
111 | |
| 109 | # Check if we should run libtoolize |
112 | # Check if we should run libtoolize |
| 110 | [[ -n $(autotools_check_macro "AC_PROG_LIBTOOL") ]] || return 0 |
113 | [[ -n $(autotools_check_macro "AC_PROG_LIBTOOL") ]] || return 0 |
| 111 | |
114 | |
| 112 | [[ -f Makefile.am ]] && opts="--automake" |
115 | [[ -f Makefile.am ]] && opts="--automake" |
| 113 | |
116 | |
| 114 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
117 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
| 115 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
118 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
| 116 | |
119 | |
| 117 | # Need to rerun aclocal |
120 | # Need to rerun aclocal |
| 118 | eaclocal |
121 | eaclocal |
| … | |
… | |
| 134 | |
137 | |
| 135 | autotools_run_tool autoconf "$@" |
138 | autotools_run_tool autoconf "$@" |
| 136 | } |
139 | } |
| 137 | |
140 | |
| 138 | eautomake() { |
141 | eautomake() { |
|
|
142 | local extra_opts |
|
|
143 | |
| 139 | [[ -f Makefile.am ]] || return 0 |
144 | [[ -f Makefile.am ]] || return 0 |
|
|
145 | |
|
|
146 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog ]] \ |
|
|
147 | || extra_opts="${extra_opts} --foreign" |
|
|
148 | |
| 140 | # --force-missing seems not to be recognized by some flavours of automake |
149 | # --force-missing seems not to be recognized by some flavours of automake |
| 141 | autotools_run_tool automake --add-missing --copy "$@" |
150 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 142 | } |
151 | } |
| 143 | |
152 | |
| 144 | |
153 | |
| 145 | |
154 | |
| 146 | # Internal function to run an autotools' tool |
155 | # Internal function to run an autotools' tool |
| … | |
… | |
| 150 | local ris |
159 | local ris |
| 151 | |
160 | |
| 152 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
161 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
| 153 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
162 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
| 154 | |
163 | |
| 155 | ebegin "Running $1" |
164 | ebegin "Running $@" |
| 156 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
165 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
| 157 | ris=$? |
166 | ris=$? |
| 158 | eend ${ris} |
167 | eend ${ris} |
| 159 | |
168 | |
| 160 | if [[ ${ris} != 0 ]]; then |
169 | if [[ ${ris} != 0 ]]; then |
| … | |
… | |
| 183 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
192 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
| 184 | [[ -n ${subdirs_scan_out} ]] || return 0 |
193 | [[ -n ${subdirs_scan_out} ]] || return 0 |
| 185 | |
194 | |
| 186 | echo "${subdirs_scan_out}" | gawk \ |
195 | echo "${subdirs_scan_out}" | gawk \ |
| 187 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
196 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
| 188 | if (match($0, "AC_CONFIG_SUBDIRS\\(\\[?([^\\])]*)", res)) { |
197 | if (match($0, /AC_CONFIG_SUBDIRS:(.*)$/, res)) |
| 189 | split(res[1], DIRS, /[\])]/) |
|
|
| 190 | print DIRS[1] |
198 | print res[1] |
| 191 | } |
|
|
| 192 | }' | uniq |
199 | }' | uniq |
| 193 | |
200 | |
| 194 | return 0 |
201 | return 0 |
| 195 | } |
202 | } |
| 196 | |
203 | |