| 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.22 2011/09/18 07:57:55 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.31 2011/12/22 18:01:12 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 |
| … | |
… | |
| 56 | # "${FILESDIR}/${P}-unbundle_libpng.patch" |
60 | # "${FILESDIR}/${P}-unbundle_libpng.patch" |
| 57 | # ) |
61 | # ) |
| 58 | # |
62 | # |
| 59 | # src_configure() { |
63 | # src_configure() { |
| 60 | # local myeconfargs=( |
64 | # local myeconfargs=( |
|
|
65 | # $(use_enable debug) |
| 61 | # $(use_with qt4) |
66 | # $(use_with qt4) |
| 62 | # $(use_enable threads multithreading) |
67 | # $(use_enable threads multithreading) |
| 63 | # $(use_with tiff) |
68 | # $(use_with tiff) |
| 64 | # ) |
69 | # ) |
| 65 | # autotools-utils_src_configure |
70 | # autotools-utils_src_configure |
| … | |
… | |
| 86 | case ${EAPI:-0} in |
91 | case ${EAPI:-0} in |
| 87 | 2|3|4) ;; |
92 | 2|3|4) ;; |
| 88 | *) die "EAPI=${EAPI} is not supported" ;; |
93 | *) die "EAPI=${EAPI} is not supported" ;; |
| 89 | esac |
94 | esac |
| 90 | |
95 | |
| 91 | inherit autotools base eutils |
96 | inherit autotools eutils libtool |
| 92 | |
97 | |
| 93 | 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 |
| 94 | |
99 | |
| 95 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
100 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
|
|
101 | # @DEFAULT_UNSET |
| 96 | # @DESCRIPTION: |
102 | # @DESCRIPTION: |
| 97 | # Build directory, location where all autotools generated files should be |
103 | # Build directory, location where all autotools generated files should be |
| 98 | # placed. For out of source builds it defaults to ${WORKDIR}/${P}_build. |
104 | # placed. For out of source builds it defaults to ${WORKDIR}/${P}_build. |
| 99 | |
105 | |
| 100 | # @ECLASS-VARIABLE: AUTOTOOLS_IN_SOURCE_BUILD |
106 | # @ECLASS-VARIABLE: AUTOTOOLS_IN_SOURCE_BUILD |
|
|
107 | # @DEFAULT_UNSET |
| 101 | # @DESCRIPTION: |
108 | # @DESCRIPTION: |
| 102 | # Set to enable in-source build. |
109 | # Set to enable in-source build. |
| 103 | |
110 | |
| 104 | # @ECLASS-VARIABLE: ECONF_SOURCE |
111 | # @ECLASS-VARIABLE: ECONF_SOURCE |
|
|
112 | # @DEFAULT_UNSET |
| 105 | # @DESCRIPTION: |
113 | # @DESCRIPTION: |
| 106 | # Specify location of autotools' configure script. By default it uses ${S}. |
114 | # Specify location of autotools' configure script. By default it uses ${S}. |
| 107 | |
115 | |
| 108 | # @ECLASS-VARIABLE: myeconfargs |
116 | # @ECLASS-VARIABLE: myeconfargs |
|
|
117 | # @DEFAULT_UNSET |
| 109 | # @DESCRIPTION: |
118 | # @DESCRIPTION: |
| 110 | # Optional econf arguments as Bash array. Should be defined before calling src_configure. |
119 | # Optional econf arguments as Bash array. Should be defined before calling src_configure. |
| 111 | # @CODE |
120 | # @CODE |
| 112 | # src_configure() { |
121 | # src_configure() { |
| 113 | # local myeconfargs=( |
122 | # local myeconfargs=( |
| … | |
… | |
| 116 | # $(use_enable debug cnddebug) |
125 | # $(use_enable debug cnddebug) |
| 117 | # $(use_enable threads multithreading) |
126 | # $(use_enable threads multithreading) |
| 118 | # ) |
127 | # ) |
| 119 | # autotools-utils_src_configure |
128 | # autotools-utils_src_configure |
| 120 | # } |
129 | # } |
|
|
130 | # @CODE |
|
|
131 | |
|
|
132 | # @ECLASS-VARIABLE: DOCS |
|
|
133 | # @DEFAULT_UNSET |
|
|
134 | # @DESCRIPTION: |
|
|
135 | # Array containing documents passed to dodoc command. |
|
|
136 | # |
|
|
137 | # Example: |
|
|
138 | # @CODE |
|
|
139 | # DOCS=( NEWS README ) |
|
|
140 | # @CODE |
|
|
141 | |
|
|
142 | # @ECLASS-VARIABLE: HTML_DOCS |
|
|
143 | # @DEFAULT_UNSET |
|
|
144 | # @DESCRIPTION: |
|
|
145 | # Array containing documents passed to dohtml command. |
|
|
146 | # |
|
|
147 | # Example: |
|
|
148 | # @CODE |
|
|
149 | # HTML_DOCS=( doc/html/ ) |
|
|
150 | # @CODE |
|
|
151 | |
|
|
152 | # @ECLASS-VARIABLE: PATCHES |
|
|
153 | # @DEFAULT_UNSET |
|
|
154 | # @DESCRIPTION: |
|
|
155 | # PATCHES array variable containing all various patches to be applied. |
|
|
156 | # |
|
|
157 | # Example: |
|
|
158 | # @CODE |
|
|
159 | # PATCHES=( "${FILESDIR}"/${P}-mypatch.patch ) |
| 121 | # @CODE |
160 | # @CODE |
| 122 | |
161 | |
| 123 | # Determine using IN or OUT source build |
162 | # Determine using IN or OUT source build |
| 124 | _check_build_dir() { |
163 | _check_build_dir() { |
| 125 | : ${ECONF_SOURCE:=${S}} |
164 | : ${ECONF_SOURCE:=${S}} |
| … | |
… | |
| 198 | if [[ ${removing} ]]; then |
237 | if [[ ${removing} ]]; then |
| 199 | einfo "Removing unnecessary ${f#${D%/}} (${removing})" |
238 | einfo "Removing unnecessary ${f#${D%/}} (${removing})" |
| 200 | rm -f "${f}" || die |
239 | rm -f "${f}" || die |
| 201 | fi |
240 | fi |
| 202 | done |
241 | done |
|
|
242 | |
|
|
243 | # check for invalid eclass use |
|
|
244 | # this is the most commonly used function, so do it here |
|
|
245 | _check_build_dir |
|
|
246 | if [[ ! -d "${AUTOTOOLS_BUILD_DIR}" ]]; then |
|
|
247 | eqawarn "autotools-utils used but autotools-utils_src_configure was never called." |
|
|
248 | eqawarn "This is not supported and never was. Please report a bug against" |
|
|
249 | eqawarn "the offending ebuild. This will become a fatal error in a near future." |
|
|
250 | fi |
| 203 | } |
251 | } |
| 204 | |
252 | |
| 205 | # @FUNCTION: autotools-utils_src_prepare |
253 | # @FUNCTION: autotools-utils_src_prepare |
| 206 | # @DESCRIPTION: |
254 | # @DESCRIPTION: |
| 207 | # The src_prepare function. |
255 | # The src_prepare function. |
| 208 | # |
256 | # |
| 209 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
257 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
|
|
258 | # |
|
|
259 | # This function calls elibtoolize implicitly. If you need to call eautoreconf |
|
|
260 | # afterwards, please use AT_NOELIBTOOLIZE=yes to avoid it being called twice. |
| 210 | autotools-utils_src_prepare() { |
261 | autotools-utils_src_prepare() { |
| 211 | debug-print-function ${FUNCNAME} "$@" |
262 | debug-print-function ${FUNCNAME} "$@" |
| 212 | |
263 | |
| 213 | base_src_prepare |
264 | [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" |
|
|
265 | epatch_user |
|
|
266 | |
|
|
267 | elibtoolize --patch-only |
| 214 | } |
268 | } |
| 215 | |
269 | |
| 216 | # @FUNCTION: autotools-utils_src_configure |
270 | # @FUNCTION: autotools-utils_src_configure |
| 217 | # @DESCRIPTION: |
271 | # @DESCRIPTION: |
| 218 | # The src_configure function. For out of source build it creates build |
272 | # The src_configure function. For out of source build it creates build |
| … | |
… | |
| 229 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
283 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
| 230 | |
284 | |
| 231 | # Common args |
285 | # Common args |
| 232 | local econfargs=() |
286 | local econfargs=() |
| 233 | |
287 | |
| 234 | # Handle debug found in IUSE |
|
|
| 235 | if has debug ${IUSE//+}; then |
|
|
| 236 | local debugarg=$(use_enable debug) |
|
|
| 237 | if ! has "${debugarg}" "${myeconfargs[@]}"; then |
|
|
| 238 | eqawarn 'Implicit $(use_enable debug) for IUSE="debug" is no longer supported.' |
|
|
| 239 | eqawarn 'Please add the necessary arg to myeconfargs if requested.' |
|
|
| 240 | eqawarn 'The autotools-utils eclass will stop warning about it on Oct 15th.' |
|
|
| 241 | fi |
|
|
| 242 | fi |
|
|
| 243 | |
|
|
| 244 | # Handle static-libs found in IUSE, disable them by default |
288 | # Handle static-libs found in IUSE, disable them by default |
| 245 | if has static-libs ${IUSE//+}; then |
289 | if in_iuse static-libs; then |
| 246 | econfargs+=( |
290 | econfargs+=( |
| 247 | --enable-shared |
291 | --enable-shared |
| 248 | $(use_enable static-libs static) |
292 | $(use_enable static-libs static) |
| 249 | ) |
293 | ) |
| 250 | fi |
294 | fi |
| … | |
… | |
| 253 | econfargs+=("${myeconfargs[@]}") |
297 | econfargs+=("${myeconfargs[@]}") |
| 254 | |
298 | |
| 255 | _check_build_dir |
299 | _check_build_dir |
| 256 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
300 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
| 257 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
301 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 258 | base_src_configure "${econfargs[@]}" "$@" |
302 | econf "${econfargs[@]}" "$@" |
| 259 | popd > /dev/null |
303 | popd > /dev/null |
| 260 | } |
304 | } |
| 261 | |
305 | |
| 262 | # @FUNCTION: autotools-utils_src_compile |
306 | # @FUNCTION: autotools-utils_src_compile |
| 263 | # @DESCRIPTION: |
307 | # @DESCRIPTION: |
| … | |
… | |
| 265 | autotools-utils_src_compile() { |
309 | autotools-utils_src_compile() { |
| 266 | debug-print-function ${FUNCNAME} "$@" |
310 | debug-print-function ${FUNCNAME} "$@" |
| 267 | |
311 | |
| 268 | _check_build_dir |
312 | _check_build_dir |
| 269 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
313 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 270 | base_src_compile "$@" |
314 | emake "$@" || die 'emake failed' |
| 271 | popd > /dev/null |
315 | popd > /dev/null |
| 272 | } |
316 | } |
| 273 | |
317 | |
| 274 | # @FUNCTION: autotools-utils_src_install |
318 | # @FUNCTION: autotools-utils_src_install |
| 275 | # @DESCRIPTION: |
319 | # @DESCRIPTION: |
| … | |
… | |
| 282 | autotools-utils_src_install() { |
326 | autotools-utils_src_install() { |
| 283 | debug-print-function ${FUNCNAME} "$@" |
327 | debug-print-function ${FUNCNAME} "$@" |
| 284 | |
328 | |
| 285 | _check_build_dir |
329 | _check_build_dir |
| 286 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
330 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 287 | base_src_install "$@" |
331 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 288 | popd > /dev/null |
332 | popd > /dev/null |
|
|
333 | |
|
|
334 | # XXX: support installing them from builddir as well? |
|
|
335 | if [[ ${DOCS} ]]; then |
|
|
336 | dodoc "${DOCS[@]}" || die "dodoc failed" |
|
|
337 | fi |
|
|
338 | if [[ ${HTML_DOCS} ]]; then |
|
|
339 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
|
|
340 | fi |
| 289 | |
341 | |
| 290 | # Remove libtool files and unnecessary static libs |
342 | # Remove libtool files and unnecessary static libs |
| 291 | remove_libtool_files |
343 | remove_libtool_files |
| 292 | } |
344 | } |
| 293 | |
345 | |