| 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.29 2006/01/18 23:04:57 vapier 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. |
| … | |
… | |
| 84 | for x in ${AT_M4DIR} ; do |
87 | for x in ${AT_M4DIR} ; do |
| 85 | case "${x}" in |
88 | case "${x}" in |
| 86 | "-I") |
89 | "-I") |
| 87 | # We handle it below |
90 | # We handle it below |
| 88 | ;; |
91 | ;; |
| 89 | "-I"*) |
|
|
| 90 | # Invalid syntax, but maybe we should help out ... |
|
|
| 91 | ewarn "eaclocal: Proper syntax is (note the space after '-I'): aclocal -I <dir>" |
|
|
| 92 | aclocal_opts="${aclocal_opts} -I ${x}" |
|
|
| 93 | ;; |
|
|
| 94 | *) |
92 | *) |
| 95 | [[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist" |
93 | [[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist" |
| 96 | aclocal_opts="${aclocal_opts} -I ${x}" |
94 | aclocal_opts="${aclocal_opts} -I ${x}" |
| 97 | ;; |
95 | ;; |
| 98 | esac |
96 | esac |
| 99 | done |
97 | done |
| 100 | fi |
98 | fi |
| 101 | |
99 | |
| 102 | [[ -f aclocal.m4 && -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
100 | [[ ! -f aclocal.m4 || -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
| 103 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
101 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
| 104 | } |
102 | } |
| 105 | |
103 | |
| 106 | _elibtoolize() { |
104 | _elibtoolize() { |
| 107 | local opts |
105 | local opts |
| 108 | |
106 | |
| 109 | # Check if we should run libtoolize |
107 | # Check if we should run libtoolize |
| 110 | [[ -n $(autotools_check_macro "AC_PROG_LIBTOOL") ]] || return 0 |
108 | [[ -n $(autotools_check_macro "AC_PROG_LIBTOOL") ]] || return 0 |
| 111 | |
109 | |
| 112 | [[ -f Makefile.am ]] && opts="--automake" |
110 | [[ -f Makefile.am ]] && opts="--automake" |
| 113 | |
111 | |
| 114 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
112 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
| 115 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
113 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
| 116 | |
114 | |
| 117 | # Need to rerun aclocal |
115 | # Need to rerun aclocal |
| 118 | eaclocal |
116 | eaclocal |
| … | |
… | |
| 134 | |
132 | |
| 135 | autotools_run_tool autoconf "$@" |
133 | autotools_run_tool autoconf "$@" |
| 136 | } |
134 | } |
| 137 | |
135 | |
| 138 | eautomake() { |
136 | eautomake() { |
|
|
137 | local extra_opts |
|
|
138 | |
| 139 | [[ -f Makefile.am ]] || return 0 |
139 | [[ -f Makefile.am ]] || return 0 |
|
|
140 | |
|
|
141 | [[ -f INSTALL && -f AUTHORS && -f ChangeLog ]] \ |
|
|
142 | || extra_opts="${extra_opts} --foreign" |
|
|
143 | |
| 140 | # --force-missing seems not to be recognized by some flavours of automake |
144 | # --force-missing seems not to be recognized by some flavours of automake |
| 141 | autotools_run_tool automake --add-missing --copy "$@" |
145 | autotools_run_tool automake --add-missing --copy ${extra_opts} "$@" |
| 142 | } |
146 | } |
| 143 | |
147 | |
| 144 | |
148 | |
| 145 | |
149 | |
| 146 | # Internal function to run an autotools' tool |
150 | # Internal function to run an autotools' tool |
| … | |
… | |
| 150 | local ris |
154 | local ris |
| 151 | |
155 | |
| 152 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
156 | echo "***** $1 *****" > ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
| 153 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
157 | echo >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} |
| 154 | |
158 | |
| 155 | ebegin "Running $1" |
159 | ebegin "Running $@" |
| 156 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
160 | $@ >> ${STDERR_TARGET%/*}/$1-${STDERR_TARGET##*/} 2>&1 |
| 157 | ris=$? |
161 | ris=$? |
| 158 | eend ${ris} |
162 | eend ${ris} |
| 159 | |
163 | |
| 160 | if [[ ${ris} != 0 ]]; then |
164 | if [[ ${ris} != 0 ]]; then |
| … | |
… | |
| 183 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
187 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
| 184 | [[ -n ${subdirs_scan_out} ]] || return 0 |
188 | [[ -n ${subdirs_scan_out} ]] || return 0 |
| 185 | |
189 | |
| 186 | echo "${subdirs_scan_out}" | gawk \ |
190 | echo "${subdirs_scan_out}" | gawk \ |
| 187 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
191 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
| 188 | if (match($0, "AC_CONFIG_SUBDIRS\\(\\[?([^\\])]*)", res)) { |
192 | if (match($0, /AC_CONFIG_SUBDIRS:(.*)$/, res)) |
| 189 | split(res[1], DIRS, /[\])]/) |
|
|
| 190 | print DIRS[1] |
193 | print res[1] |
| 191 | } |
|
|
| 192 | }' | uniq |
194 | }' | uniq |
| 193 | |
195 | |
| 194 | return 0 |
196 | return 0 |
| 195 | } |
197 | } |
| 196 | |
198 | |