1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2011 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.23 2011/09/18 21:03:59 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.29 2011/11/27 09:57:20 mgorny 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 | # Michał Górny <mgorny@gentoo.org> |
9 | # @BLURB: common ebuild functions for autotools-based packages |
9 | # @BLURB: common ebuild functions for autotools-based packages |
10 | # @DESCRIPTION: |
10 | # @DESCRIPTION: |
11 | # 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 |
12 | # providing all inherited features along with econf arguments as Bash array, |
12 | # providing all inherited features along with econf arguments as Bash array, |
13 | # out of source build with overridable build dir location, static archives |
13 | # out of source build with overridable build dir location, static archives |
14 | # 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. |
15 | # |
19 | # |
16 | # @EXAMPLE: |
20 | # @EXAMPLE: |
17 | # Typical ebuild using autotools-utils.eclass: |
21 | # Typical ebuild using autotools-utils.eclass: |
18 | # |
22 | # |
19 | # @CODE |
23 | # @CODE |
… | |
… | |
87 | case ${EAPI:-0} in |
91 | case ${EAPI:-0} in |
88 | 2|3|4) ;; |
92 | 2|3|4) ;; |
89 | *) die "EAPI=${EAPI} is not supported" ;; |
93 | *) die "EAPI=${EAPI} is not supported" ;; |
90 | esac |
94 | esac |
91 | |
95 | |
92 | inherit autotools base eutils |
96 | inherit autotools base eutils libtool |
93 | |
97 | |
94 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
98 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
95 | |
99 | |
96 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
100 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
97 | # @DESCRIPTION: |
101 | # @DESCRIPTION: |
… | |
… | |
199 | if [[ ${removing} ]]; then |
203 | if [[ ${removing} ]]; then |
200 | einfo "Removing unnecessary ${f#${D%/}} (${removing})" |
204 | einfo "Removing unnecessary ${f#${D%/}} (${removing})" |
201 | rm -f "${f}" || die |
205 | rm -f "${f}" || die |
202 | fi |
206 | fi |
203 | done |
207 | done |
|
|
208 | |
|
|
209 | # check for invalid eclass use |
|
|
210 | # this is the most commonly used function, so do it here |
|
|
211 | _check_build_dir |
|
|
212 | if [[ ! -d "${AUTOTOOLS_BUILD_DIR}" ]]; then |
|
|
213 | eqawarn "autotools-utils used but autotools-utils_src_configure was never called." |
|
|
214 | eqawarn "This is not supported and never was. Please report a bug against" |
|
|
215 | eqawarn "the offending ebuild. This will become a fatal error in a near future." |
|
|
216 | fi |
204 | } |
217 | } |
205 | |
218 | |
206 | # @FUNCTION: autotools-utils_src_prepare |
219 | # @FUNCTION: autotools-utils_src_prepare |
207 | # @DESCRIPTION: |
220 | # @DESCRIPTION: |
208 | # The src_prepare function. |
221 | # The src_prepare function. |
… | |
… | |
210 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
223 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
211 | autotools-utils_src_prepare() { |
224 | autotools-utils_src_prepare() { |
212 | debug-print-function ${FUNCNAME} "$@" |
225 | debug-print-function ${FUNCNAME} "$@" |
213 | |
226 | |
214 | base_src_prepare |
227 | base_src_prepare |
|
|
228 | elibtoolize --patch-only |
215 | } |
229 | } |
216 | |
230 | |
217 | # @FUNCTION: autotools-utils_src_configure |
231 | # @FUNCTION: autotools-utils_src_configure |
218 | # @DESCRIPTION: |
232 | # @DESCRIPTION: |
219 | # The src_configure function. For out of source build it creates build |
233 | # The src_configure function. For out of source build it creates build |
… | |
… | |
230 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
244 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
231 | |
245 | |
232 | # Common args |
246 | # Common args |
233 | local econfargs=() |
247 | local econfargs=() |
234 | |
248 | |
235 | # Handle debug found in IUSE |
|
|
236 | if has debug ${IUSE//+}; then |
|
|
237 | local debugarg=$(use_enable debug) |
|
|
238 | if ! has "${debugarg}" "${myeconfargs[@]}"; then |
|
|
239 | eqawarn 'Implicit $(use_enable debug) for IUSE="debug" is no longer supported.' |
|
|
240 | eqawarn 'Please add the necessary arg to myeconfargs if requested.' |
|
|
241 | eqawarn 'The autotools-utils eclass will stop warning about it on Oct 15th.' |
|
|
242 | fi |
|
|
243 | fi |
|
|
244 | |
|
|
245 | # Handle static-libs found in IUSE, disable them by default |
249 | # Handle static-libs found in IUSE, disable them by default |
246 | if has static-libs ${IUSE//+}; then |
250 | if in_iuse static-libs; then |
247 | econfargs+=( |
251 | econfargs+=( |
248 | --enable-shared |
252 | --enable-shared |
249 | $(use_enable static-libs static) |
253 | $(use_enable static-libs static) |
250 | ) |
254 | ) |
251 | fi |
255 | fi |