| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2012 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-utils.eclass,v 1.6 2011/01/20 00:12:59 reavertm Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.33 2012/01/09 10:16:25 jlec Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: autotools-utils.eclass |
5 | # @ECLASS: autotools-utils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Maciej Mrozowski <reavertm@gentoo.org> |
7 | # Maciej Mrozowski <reavertm@gentoo.org> |
|
|
8 | # Michał Górny <mgorny@gentoo.org> |
| 8 | # @BLURB: common ebuild functions for autotools-based packages |
9 | # @BLURB: common ebuild functions for autotools-based packages |
| 9 | # @DESCRIPTION: |
10 | # @DESCRIPTION: |
| 10 | # autotools-utils.eclass is autotools.eclass(5) and base.eclass(5) wrapper |
11 | # autotools-utils.eclass is autotools.eclass(5) and base.eclass(5) wrapper |
| 11 | # providing all inherited features along with econf arguments as Bash array, |
12 | # providing all inherited features along with econf arguments as Bash array, |
| 12 | # out of source build with overridable build dir location, static archives |
13 | # out of source build with overridable build dir location, static archives |
| 13 | # handling, libtool files removal, enable/disable debug handling. |
14 | # handling, libtool files removal. |
|
|
15 | # |
|
|
16 | # Please note note that autotools-utils does not support mixing of its phase |
|
|
17 | # functions with regular econf/emake calls. If necessary, please call |
|
|
18 | # autotools-utils_src_compile instead of the latter. |
| 14 | # |
19 | # |
| 15 | # @EXAMPLE: |
20 | # @EXAMPLE: |
| 16 | # Typical ebuild using autotools-utils.eclass: |
21 | # Typical ebuild using autotools-utils.eclass: |
| 17 | # |
22 | # |
| 18 | # @CODE |
23 | # @CODE |
| … | |
… | |
| 55 | # "${FILESDIR}/${P}-unbundle_libpng.patch" |
60 | # "${FILESDIR}/${P}-unbundle_libpng.patch" |
| 56 | # ) |
61 | # ) |
| 57 | # |
62 | # |
| 58 | # src_configure() { |
63 | # src_configure() { |
| 59 | # local myeconfargs=( |
64 | # local myeconfargs=( |
|
|
65 | # $(use_enable debug) |
| 60 | # $(use_with qt4) |
66 | # $(use_with qt4) |
| 61 | # $(use_enable threads multithreading) |
67 | # $(use_enable threads multithreading) |
| 62 | # $(use_with tiff) |
68 | # $(use_with tiff) |
| 63 | # ) |
69 | # ) |
| 64 | # autotools-utils_src_configure |
70 | # autotools-utils_src_configure |
| … | |
… | |
| 81 | # @CODE |
87 | # @CODE |
| 82 | |
88 | |
| 83 | # Keep variable names synced with cmake-utils and the other way around! |
89 | # Keep variable names synced with cmake-utils and the other way around! |
| 84 | |
90 | |
| 85 | case ${EAPI:-0} in |
91 | case ${EAPI:-0} in |
| 86 | 2|3) ;; |
92 | 2|3|4) ;; |
| 87 | *) die "EAPI=${EAPI} is not supported" ;; |
93 | *) die "EAPI=${EAPI} is not supported" ;; |
| 88 | esac |
94 | esac |
| 89 | |
95 | |
| 90 | inherit autotools base |
96 | # @ECLASS-VARIABLE: AUTOTOOLS_AUTORECONF |
|
|
97 | # @DEFAULT_UNSET |
|
|
98 | # @DESCRIPTION: |
|
|
99 | # Set to a non-empty value in order to enable running autoreconf |
|
|
100 | # in src_prepare() and adding autotools dependencies. |
|
|
101 | # |
|
|
102 | # The eclass will try to determine the correct autotools to run including a few |
|
|
103 | # external tools: gettext, glib-gettext, intltool, gtk-doc, gnome-doc-prepare. |
|
|
104 | # If your tool is not supported, please open a bug and we'll add support for it. |
|
|
105 | # |
|
|
106 | # Note that dependencies are added for autoconf, automake and libtool only. |
|
|
107 | # If your package needs one of the external tools listed above, you need to add |
|
|
108 | # appropriate packages to DEPEND yourself. |
|
|
109 | [[ ${AUTOTOOLS_AUTORECONF} ]] || _autotools_auto_dep=no |
|
|
110 | |
|
|
111 | AUTOTOOLS_AUTO_DEPEND=${_autotools_auto_dep} \ |
|
|
112 | inherit autotools eutils libtool |
| 91 | |
113 | |
| 92 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
114 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
| 93 | |
115 | |
|
|
116 | unset _autotools_auto_dep |
|
|
117 | |
| 94 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
118 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
|
|
119 | # @DEFAULT_UNSET |
| 95 | # @DESCRIPTION: |
120 | # @DESCRIPTION: |
| 96 | # Build directory, location where all autotools generated files should be |
121 | # Build directory, location where all autotools generated files should be |
| 97 | # placed. For out of source builds it defaults to ${WORKDIR}/${P}_build. |
122 | # placed. For out of source builds it defaults to ${WORKDIR}/${P}_build. |
| 98 | |
123 | |
| 99 | # @ECLASS-VARIABLE: AUTOTOOLS_IN_SOURCE_BUILD |
124 | # @ECLASS-VARIABLE: AUTOTOOLS_IN_SOURCE_BUILD |
|
|
125 | # @DEFAULT_UNSET |
| 100 | # @DESCRIPTION: |
126 | # @DESCRIPTION: |
| 101 | # Set to enable in-source build. |
127 | # Set to enable in-source build. |
| 102 | |
128 | |
| 103 | # @ECLASS-VARIABLE: ECONF_SOURCE |
129 | # @ECLASS-VARIABLE: ECONF_SOURCE |
|
|
130 | # @DEFAULT_UNSET |
| 104 | # @DESCRIPTION: |
131 | # @DESCRIPTION: |
| 105 | # Specify location of autotools' configure script. By default it uses ${S}. |
132 | # Specify location of autotools' configure script. By default it uses ${S}. |
| 106 | |
133 | |
| 107 | # @ECLASS-VARIABLE: myeconfargs |
134 | # @ECLASS-VARIABLE: myeconfargs |
|
|
135 | # @DEFAULT_UNSET |
| 108 | # @DESCRIPTION: |
136 | # @DESCRIPTION: |
| 109 | # Optional econf arguments as Bash array. Should be defined before calling src_configure. |
137 | # Optional econf arguments as Bash array. Should be defined before calling src_configure. |
| 110 | # @CODE |
138 | # @CODE |
| 111 | # src_configure() { |
139 | # src_configure() { |
| 112 | # myeconfargs=( |
140 | # local myeconfargs=( |
| 113 | # --disable-readline |
141 | # --disable-readline |
| 114 | # --with-confdir="/etc/nasty foo confdir/" |
142 | # --with-confdir="/etc/nasty foo confdir/" |
| 115 | # $(use_enable debug cnddebug) |
143 | # $(use_enable debug cnddebug) |
| 116 | # $(use_enable threads multithreading) |
144 | # $(use_enable threads multithreading) |
| 117 | # ) |
145 | # ) |
| 118 | # autotools-utils_src_configure |
146 | # autotools-utils_src_configure |
| 119 | # } |
147 | # } |
| 120 | # @CODE |
148 | # @CODE |
| 121 | |
149 | |
|
|
150 | # @ECLASS-VARIABLE: DOCS |
|
|
151 | # @DEFAULT_UNSET |
|
|
152 | # @DESCRIPTION: |
|
|
153 | # Array containing documents passed to dodoc command. |
|
|
154 | # |
|
|
155 | # Example: |
|
|
156 | # @CODE |
|
|
157 | # DOCS=( NEWS README ) |
|
|
158 | # @CODE |
|
|
159 | |
|
|
160 | # @ECLASS-VARIABLE: HTML_DOCS |
|
|
161 | # @DEFAULT_UNSET |
|
|
162 | # @DESCRIPTION: |
|
|
163 | # Array containing documents passed to dohtml command. |
|
|
164 | # |
|
|
165 | # Example: |
|
|
166 | # @CODE |
|
|
167 | # HTML_DOCS=( doc/html/ ) |
|
|
168 | # @CODE |
|
|
169 | |
|
|
170 | # @ECLASS-VARIABLE: PATCHES |
|
|
171 | # @DEFAULT_UNSET |
|
|
172 | # @DESCRIPTION: |
|
|
173 | # PATCHES array variable containing all various patches to be applied. |
|
|
174 | # |
|
|
175 | # Example: |
|
|
176 | # @CODE |
|
|
177 | # PATCHES=( "${FILESDIR}"/${P}-mypatch.patch ) |
|
|
178 | # @CODE |
|
|
179 | |
| 122 | # Determine using IN or OUT source build |
180 | # Determine using IN or OUT source build |
| 123 | _check_build_dir() { |
181 | _check_build_dir() { |
| 124 | : ${ECONF_SOURCE:=${S}} |
182 | : ${ECONF_SOURCE:=${S}} |
| 125 | if [[ -n ${AUTOTOOLS_IN_SOURCE_BUILD} ]]; then |
183 | if [[ -n ${AUTOTOOLS_IN_SOURCE_BUILD} ]]; then |
| 126 | AUTOTOOLS_BUILD_DIR="${ECONF_SOURCE}" |
184 | AUTOTOOLS_BUILD_DIR="${ECONF_SOURCE}" |
| … | |
… | |
| 129 | fi |
187 | fi |
| 130 | echo ">>> Working in BUILD_DIR: \"$AUTOTOOLS_BUILD_DIR\"" |
188 | echo ">>> Working in BUILD_DIR: \"$AUTOTOOLS_BUILD_DIR\"" |
| 131 | } |
189 | } |
| 132 | |
190 | |
| 133 | # @FUNCTION: remove_libtool_files |
191 | # @FUNCTION: remove_libtool_files |
| 134 | # @USAGE: [all|none] |
192 | # @USAGE: [all] |
| 135 | # @DESCRIPTION: |
193 | # @DESCRIPTION: |
| 136 | # Determines unnecessary libtool files (.la) and libtool static archives (.a) |
194 | # Determines unnecessary libtool files (.la) and libtool static archives (.a) |
| 137 | # and removes them from installation image. |
195 | # and removes them from installation image. |
|
|
196 | # |
| 138 | # To unconditionally remove all libtool files, pass 'all' as argument. |
197 | # To unconditionally remove all libtool files, pass 'all' as argument. |
| 139 | # To leave all libtool files alone, pass 'none' as argument. |
198 | # Otherwise, libtool archives required for static linking will be preserved. |
| 140 | # Unnecessary static archives are removed in any case. |
|
|
| 141 | # |
199 | # |
| 142 | # In most cases it's not necessary to manually invoke this function. |
200 | # In most cases it's not necessary to manually invoke this function. |
| 143 | # See autotools-utils_src_install for reference. |
201 | # See autotools-utils_src_install for reference. |
| 144 | remove_libtool_files() { |
202 | remove_libtool_files() { |
| 145 | debug-print-function ${FUNCNAME} "$@" |
203 | debug-print-function ${FUNCNAME} "$@" |
|
|
204 | local removing_all |
|
|
205 | [[ ${#} -le 1 ]] || die "Invalid number of args to ${FUNCNAME}()" |
|
|
206 | if [[ ${#} -eq 1 ]]; then |
|
|
207 | case "${1}" in |
|
|
208 | all) |
|
|
209 | removing_all=1 |
|
|
210 | ;; |
|
|
211 | *) |
|
|
212 | die "Invalid argument to ${FUNCNAME}(): ${1}" |
|
|
213 | esac |
|
|
214 | fi |
|
|
215 | |
|
|
216 | local pc_libs=() |
|
|
217 | if [[ ! ${removing_all} ]]; then |
|
|
218 | local arg |
|
|
219 | for arg in $(find "${D}" -name '*.pc' -exec \ |
|
|
220 | sed -n -e 's;^Libs:;;p' {} +); do |
|
|
221 | [[ ${arg} == -l* ]] && pc_libs+=(lib${arg#-l}.la) |
|
|
222 | done |
|
|
223 | fi |
| 146 | |
224 | |
| 147 | local f |
225 | local f |
| 148 | for f in $(find "${D}" -type f -name '*.la'); do |
226 | find "${D}" -type f -name '*.la' -print0 | while read -r -d '' f; do |
| 149 | # Keep only .la files with shouldnotlink=yes - likely plugins |
|
|
| 150 | local shouldnotlink=$(sed -ne '/^shouldnotlink=yes$/p' "${f}") |
227 | local shouldnotlink=$(sed -ne '/^shouldnotlink=yes$/p' "${f}") |
|
|
228 | local archivefile=${f/%.la/.a} |
|
|
229 | [[ "${f}" != "${archivefile}" ]] || die 'regex sanity check failed' |
|
|
230 | |
|
|
231 | # Remove static libs we're not supposed to link against. |
| 151 | if [[ "$1" == 'all' || -z ${shouldnotlink} ]]; then |
232 | if [[ ${shouldnotlink} ]]; then |
| 152 | if [[ "$1" != 'none' ]]; then |
233 | einfo "Removing unnecessary ${archivefile#${D%/}}" |
| 153 | echo "Removing unnecessary ${f}" |
234 | rm -f "${archivefile}" || die |
| 154 | rm -f "${f}" |
235 | # The .la file may be used by a module loader, so avoid removing it |
| 155 | fi |
236 | # unless explicitly requested. |
|
|
237 | [[ ${removing_all} ]] || continue |
| 156 | fi |
238 | fi |
| 157 | # Remove static libs we're not supposed to link against |
239 | |
| 158 | if [[ -n ${shouldnotlink} ]]; then |
240 | # Remove .la files when: |
| 159 | local remove=${f/%.la/.a} |
241 | # - user explicitly wants us to remove all .la files, |
| 160 | [[ "${f}" != "${remove}" ]] || die 'regex sanity check failed' |
242 | # - respective static archive doesn't exist, |
|
|
243 | # - they are covered by a .pc file already, |
|
|
244 | # - they don't provide any new information (no libs & no flags). |
|
|
245 | local removing |
|
|
246 | if [[ ${removing_all} ]]; then removing='forced' |
|
|
247 | elif [[ ! -f ${archivefile} ]]; then removing='no static archive' |
|
|
248 | elif has "$(basename "${f}")" "${pc_libs[@]}"; then |
|
|
249 | removing='covered by .pc' |
|
|
250 | elif [[ ! $(sed -n -e \ |
|
|
251 | "s/^\(dependency_libs\|inherited_linker_flags\)='\(.*\)'$/\2/p" \ |
|
|
252 | "${f}") ]]; then removing='no libs & flags' |
|
|
253 | fi |
|
|
254 | |
|
|
255 | if [[ ${removing} ]]; then |
| 161 | echo "Removing unnecessary ${remove}" |
256 | einfo "Removing unnecessary ${f#${D%/}} (${removing})" |
| 162 | rm -f "${remove}" |
257 | rm -f "${f}" || die |
| 163 | fi |
258 | fi |
| 164 | done |
259 | done |
|
|
260 | |
|
|
261 | # check for invalid eclass use |
|
|
262 | # this is the most commonly used function, so do it here |
|
|
263 | _check_build_dir |
|
|
264 | if [[ ! -d "${AUTOTOOLS_BUILD_DIR}" ]]; then |
|
|
265 | eqawarn "autotools-utils used but autotools-utils_src_configure was never called." |
|
|
266 | eqawarn "This is not supported and never was. Please report a bug against" |
|
|
267 | eqawarn "the offending ebuild. This will become a fatal error in a near future." |
|
|
268 | fi |
|
|
269 | } |
|
|
270 | |
|
|
271 | # @FUNCTION: autotools-utils_autoreconf |
|
|
272 | # @DESCRIPTION: |
|
|
273 | # Reconfigure the sources (like gnome-autogen.sh or eautoreconf). |
|
|
274 | autotools-utils_autoreconf() { |
|
|
275 | debug-print-function ${FUNCNAME} "$@" |
|
|
276 | |
|
|
277 | # Override this func to not require unnecessary eaclocal calls. |
|
|
278 | autotools_check_macro() { |
|
|
279 | local x |
|
|
280 | |
|
|
281 | # Add a few additional variants as we don't get expansions. |
|
|
282 | [[ ${1} = AC_CONFIG_HEADERS ]] && set -- "${@}" AC_CONFIG_HEADER |
|
|
283 | |
|
|
284 | for x; do |
|
|
285 | grep -h "^${x}" configure.{ac,in} 2>/dev/null |
|
|
286 | done |
|
|
287 | } |
|
|
288 | |
|
|
289 | einfo "Autoreconfiguring '${PWD}' ..." |
|
|
290 | |
|
|
291 | local auxdir=$(sed -n -e 's/^AC_CONFIG_AUX_DIR(\(.*\))$/\1/p' \ |
|
|
292 | configure.{ac,in} 2>/dev/null) |
|
|
293 | if [[ ${auxdir} ]]; then |
|
|
294 | auxdir=${auxdir%%]} |
|
|
295 | mkdir -p ${auxdir##[} |
|
|
296 | fi |
|
|
297 | |
|
|
298 | # Support running additional tools like gnome-autogen.sh. |
|
|
299 | # Note: you need to add additional depends to the ebuild. |
|
|
300 | |
|
|
301 | # gettext |
|
|
302 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
|
|
303 | echo 'no' | autotools_run_tool glib-gettextize --copy |
|
|
304 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
|
|
305 | eautopoint |
|
|
306 | fi |
|
|
307 | |
|
|
308 | # intltool |
|
|
309 | if [[ $(autotools_check_macro AC_PROG_INTLTOOL IT_PROG_INTLTOOL) ]] |
|
|
310 | then |
|
|
311 | autotools_run_tool intltoolize --copy --automake |
|
|
312 | fi |
|
|
313 | |
|
|
314 | # gtk-doc |
|
|
315 | if [[ $(autotools_check_macro GTK_DOC_CHECK) ]]; then |
|
|
316 | autotools_run_tool gtkdocize --copy |
|
|
317 | fi |
|
|
318 | |
|
|
319 | # gnome-doc |
|
|
320 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
|
|
321 | autotools_run_tool gnome-doc-prepare --copy |
|
|
322 | fi |
|
|
323 | |
|
|
324 | # We need to perform the check twice to know whether to run eaclocal. |
|
|
325 | # (_elibtoolize does that itself) |
|
|
326 | if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] |
|
|
327 | then |
|
|
328 | _elibtoolize --copy --force --install |
|
|
329 | else |
|
|
330 | eaclocal |
|
|
331 | fi |
|
|
332 | |
|
|
333 | eautoconf |
|
|
334 | eautoheader |
|
|
335 | eautomake |
|
|
336 | |
|
|
337 | local x |
|
|
338 | for x in $(autotools_get_subdirs); do |
|
|
339 | if [[ -d ${x} ]] ; then |
|
|
340 | pushd "${x}" >/dev/null |
|
|
341 | autotools-utils_eautoreconf |
|
|
342 | popd >/dev/null |
|
|
343 | fi |
|
|
344 | done |
| 165 | } |
345 | } |
| 166 | |
346 | |
| 167 | # @FUNCTION: autotools-utils_src_prepare |
347 | # @FUNCTION: autotools-utils_src_prepare |
| 168 | # @DESCRIPTION: |
348 | # @DESCRIPTION: |
| 169 | # The src_prepare function. |
349 | # The src_prepare function. |
| 170 | # |
350 | # |
| 171 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
351 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
| 172 | autotools-utils_src_prepare() { |
352 | autotools-utils_src_prepare() { |
| 173 | debug-print-function ${FUNCNAME} "$@" |
353 | debug-print-function ${FUNCNAME} "$@" |
| 174 | |
354 | |
| 175 | base_src_prepare |
355 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
|
|
356 | |
|
|
357 | [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" |
|
|
358 | epatch_user |
|
|
359 | |
|
|
360 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
|
|
361 | elibtoolize --patch-only |
| 176 | } |
362 | } |
| 177 | |
363 | |
| 178 | # @FUNCTION: autotools-utils_src_configure |
364 | # @FUNCTION: autotools-utils_src_configure |
| 179 | # @DESCRIPTION: |
365 | # @DESCRIPTION: |
| 180 | # The src_configure function. For out of source build it creates build |
366 | # The src_configure function. For out of source build it creates build |
| 181 | # directory and runs econf there. Configuration parameters defined |
367 | # directory and runs econf there. Configuration parameters defined |
| 182 | # in myeconfargs are passed here to econf. Additionally following USE |
368 | # in myeconfargs are passed here to econf. Additionally following USE |
| 183 | # flags are known: |
369 | # flags are known: |
| 184 | # |
370 | # |
| 185 | # IUSE="debug" passes --disable-debug/--enable-debug to econf respectively. |
|
|
| 186 | # |
|
|
| 187 | # IUSE="static-libs" passes --enable-shared and either --disable-static/--enable-static |
371 | # IUSE="static-libs" passes --enable-shared and either --disable-static/--enable-static |
| 188 | # to econf respectively. |
372 | # to econf respectively. |
| 189 | autotools-utils_src_configure() { |
373 | autotools-utils_src_configure() { |
| 190 | debug-print-function ${FUNCNAME} "$@" |
374 | debug-print-function ${FUNCNAME} "$@" |
| 191 | |
375 | |
|
|
376 | [[ -z ${myeconfargs+1} || $(declare -p myeconfargs) == 'declare -a'* ]] \ |
|
|
377 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
|
|
378 | |
| 192 | # Common args |
379 | # Common args |
| 193 | local econfargs=() |
380 | local econfargs=() |
| 194 | |
381 | |
| 195 | # Handle debug found in IUSE |
|
|
| 196 | if has debug ${IUSE//+}; then |
|
|
| 197 | econfargs+=($(use_enable debug)) |
|
|
| 198 | fi |
|
|
| 199 | |
|
|
| 200 | # Handle static-libs found in IUSE, disable them by default |
382 | # Handle static-libs found in IUSE, disable them by default |
| 201 | if has static-libs ${IUSE//+}; then |
383 | if in_iuse static-libs; then |
| 202 | econfargs+=( |
384 | econfargs+=( |
| 203 | --enable-shared |
385 | --enable-shared |
| 204 | $(use_enable static-libs static) |
386 | $(use_enable static-libs static) |
| 205 | ) |
387 | ) |
| 206 | fi |
388 | fi |
| … | |
… | |
| 209 | econfargs+=("${myeconfargs[@]}") |
391 | econfargs+=("${myeconfargs[@]}") |
| 210 | |
392 | |
| 211 | _check_build_dir |
393 | _check_build_dir |
| 212 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
394 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
| 213 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
395 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 214 | base_src_configure "${econfargs[@]}" "$@" |
396 | econf "${econfargs[@]}" "$@" |
| 215 | popd > /dev/null |
397 | popd > /dev/null |
| 216 | } |
398 | } |
| 217 | |
399 | |
| 218 | # @FUNCTION: autotools-utils_src_compile |
400 | # @FUNCTION: autotools-utils_src_compile |
| 219 | # @DESCRIPTION: |
401 | # @DESCRIPTION: |
| … | |
… | |
| 221 | autotools-utils_src_compile() { |
403 | autotools-utils_src_compile() { |
| 222 | debug-print-function ${FUNCNAME} "$@" |
404 | debug-print-function ${FUNCNAME} "$@" |
| 223 | |
405 | |
| 224 | _check_build_dir |
406 | _check_build_dir |
| 225 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
407 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 226 | base_src_compile "$@" |
408 | emake "$@" || die 'emake failed' |
| 227 | popd > /dev/null |
409 | popd > /dev/null |
| 228 | } |
410 | } |
| 229 | |
411 | |
| 230 | # @FUNCTION: autotools-utils_src_install |
412 | # @FUNCTION: autotools-utils_src_install |
| 231 | # @DESCRIPTION: |
413 | # @DESCRIPTION: |
| … | |
… | |
| 238 | autotools-utils_src_install() { |
420 | autotools-utils_src_install() { |
| 239 | debug-print-function ${FUNCNAME} "$@" |
421 | debug-print-function ${FUNCNAME} "$@" |
| 240 | |
422 | |
| 241 | _check_build_dir |
423 | _check_build_dir |
| 242 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
424 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 243 | base_src_install |
425 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 244 | popd > /dev/null |
426 | popd > /dev/null |
| 245 | |
427 | |
|
|
428 | # XXX: support installing them from builddir as well? |
|
|
429 | if [[ ${DOCS} ]]; then |
|
|
430 | dodoc "${DOCS[@]}" || die "dodoc failed" |
|
|
431 | fi |
|
|
432 | if [[ ${HTML_DOCS} ]]; then |
|
|
433 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
|
|
434 | fi |
|
|
435 | |
| 246 | # Remove libtool files and unnecessary static libs |
436 | # Remove libtool files and unnecessary static libs |
| 247 | local args |
|
|
| 248 | has static-libs ${IUSE//+} && ! use static-libs || args='none' |
|
|
| 249 | remove_libtool_files ${args} |
437 | remove_libtool_files |
| 250 | } |
438 | } |
| 251 | |
439 | |
| 252 | # @FUNCTION: autotools-utils_src_test |
440 | # @FUNCTION: autotools-utils_src_test |
| 253 | # @DESCRIPTION: |
441 | # @DESCRIPTION: |
| 254 | # The autotools src_test function. Runs emake check in build directory. |
442 | # The autotools src_test function. Runs emake check in build directory. |