| 1 | # Copyright 1999-2011 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.29 2011/11/27 09:57:20 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.38 2012/01/14 15:18:05 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> |
| … | |
… | |
| 91 | case ${EAPI:-0} in |
91 | case ${EAPI:-0} in |
| 92 | 2|3|4) ;; |
92 | 2|3|4) ;; |
| 93 | *) die "EAPI=${EAPI} is not supported" ;; |
93 | *) die "EAPI=${EAPI} is not supported" ;; |
| 94 | esac |
94 | esac |
| 95 | |
95 | |
|
|
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 | # This is usually necessary when using live sources or applying patches |
|
|
103 | # modifying configure.ac or Makefile.am files. Note that in the latter case |
|
|
104 | # setting this variable is obligatory even though the eclass will work without |
|
|
105 | # it (to add the necessary dependencies). |
|
|
106 | # |
|
|
107 | # The eclass will try to determine the correct autotools to run including a few |
|
|
108 | # external tools: gettext, glib-gettext, intltool, gtk-doc, gnome-doc-prepare. |
|
|
109 | # If your tool is not supported, please open a bug and we'll add support for it. |
|
|
110 | # |
|
|
111 | # Note that dependencies are added for autoconf, automake and libtool only. |
|
|
112 | # If your package needs one of the external tools listed above, you need to add |
|
|
113 | # appropriate packages to DEPEND yourself. |
|
|
114 | [[ ${AUTOTOOLS_AUTORECONF} ]] || _autotools_auto_dep=no |
|
|
115 | |
|
|
116 | AUTOTOOLS_AUTO_DEPEND=${_autotools_auto_dep} \ |
| 96 | inherit autotools base eutils libtool |
117 | inherit autotools eutils libtool |
| 97 | |
118 | |
| 98 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
119 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
| 99 | |
120 | |
|
|
121 | unset _autotools_auto_dep |
|
|
122 | |
| 100 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
123 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
|
|
124 | # @DEFAULT_UNSET |
| 101 | # @DESCRIPTION: |
125 | # @DESCRIPTION: |
| 102 | # Build directory, location where all autotools generated files should be |
126 | # Build directory, location where all autotools generated files should be |
| 103 | # placed. For out of source builds it defaults to ${WORKDIR}/${P}_build. |
127 | # placed. For out of source builds it defaults to ${WORKDIR}/${P}_build. |
| 104 | |
128 | |
| 105 | # @ECLASS-VARIABLE: AUTOTOOLS_IN_SOURCE_BUILD |
129 | # @ECLASS-VARIABLE: AUTOTOOLS_IN_SOURCE_BUILD |
|
|
130 | # @DEFAULT_UNSET |
| 106 | # @DESCRIPTION: |
131 | # @DESCRIPTION: |
| 107 | # Set to enable in-source build. |
132 | # Set to enable in-source build. |
| 108 | |
133 | |
| 109 | # @ECLASS-VARIABLE: ECONF_SOURCE |
134 | # @ECLASS-VARIABLE: ECONF_SOURCE |
|
|
135 | # @DEFAULT_UNSET |
| 110 | # @DESCRIPTION: |
136 | # @DESCRIPTION: |
| 111 | # Specify location of autotools' configure script. By default it uses ${S}. |
137 | # Specify location of autotools' configure script. By default it uses ${S}. |
| 112 | |
138 | |
| 113 | # @ECLASS-VARIABLE: myeconfargs |
139 | # @ECLASS-VARIABLE: myeconfargs |
|
|
140 | # @DEFAULT_UNSET |
| 114 | # @DESCRIPTION: |
141 | # @DESCRIPTION: |
| 115 | # Optional econf arguments as Bash array. Should be defined before calling src_configure. |
142 | # Optional econf arguments as Bash array. Should be defined before calling src_configure. |
| 116 | # @CODE |
143 | # @CODE |
| 117 | # src_configure() { |
144 | # src_configure() { |
| 118 | # local myeconfargs=( |
145 | # local myeconfargs=( |
| … | |
… | |
| 121 | # $(use_enable debug cnddebug) |
148 | # $(use_enable debug cnddebug) |
| 122 | # $(use_enable threads multithreading) |
149 | # $(use_enable threads multithreading) |
| 123 | # ) |
150 | # ) |
| 124 | # autotools-utils_src_configure |
151 | # autotools-utils_src_configure |
| 125 | # } |
152 | # } |
|
|
153 | # @CODE |
|
|
154 | |
|
|
155 | # @ECLASS-VARIABLE: DOCS |
|
|
156 | # @DEFAULT_UNSET |
|
|
157 | # @DESCRIPTION: |
|
|
158 | # Array containing documents passed to dodoc command. |
|
|
159 | # |
|
|
160 | # Example: |
|
|
161 | # @CODE |
|
|
162 | # DOCS=( NEWS README ) |
|
|
163 | # @CODE |
|
|
164 | |
|
|
165 | # @ECLASS-VARIABLE: HTML_DOCS |
|
|
166 | # @DEFAULT_UNSET |
|
|
167 | # @DESCRIPTION: |
|
|
168 | # Array containing documents passed to dohtml command. |
|
|
169 | # |
|
|
170 | # Example: |
|
|
171 | # @CODE |
|
|
172 | # HTML_DOCS=( doc/html/ ) |
|
|
173 | # @CODE |
|
|
174 | |
|
|
175 | # @ECLASS-VARIABLE: PATCHES |
|
|
176 | # @DEFAULT_UNSET |
|
|
177 | # @DESCRIPTION: |
|
|
178 | # PATCHES array variable containing all various patches to be applied. |
|
|
179 | # |
|
|
180 | # Example: |
|
|
181 | # @CODE |
|
|
182 | # PATCHES=( "${FILESDIR}"/${P}-mypatch.patch ) |
| 126 | # @CODE |
183 | # @CODE |
| 127 | |
184 | |
| 128 | # Determine using IN or OUT source build |
185 | # Determine using IN or OUT source build |
| 129 | _check_build_dir() { |
186 | _check_build_dir() { |
| 130 | : ${ECONF_SOURCE:=${S}} |
187 | : ${ECONF_SOURCE:=${S}} |
| … | |
… | |
| 214 | eqawarn "This is not supported and never was. Please report a bug against" |
271 | 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." |
272 | eqawarn "the offending ebuild. This will become a fatal error in a near future." |
| 216 | fi |
273 | fi |
| 217 | } |
274 | } |
| 218 | |
275 | |
|
|
276 | # @FUNCTION: autotools-utils_autoreconf |
|
|
277 | # @DESCRIPTION: |
|
|
278 | # Reconfigure the sources (like gnome-autogen.sh or eautoreconf). |
|
|
279 | autotools-utils_autoreconf() { |
|
|
280 | debug-print-function ${FUNCNAME} "$@" |
|
|
281 | |
|
|
282 | # Override this func to not require unnecessary eaclocal calls. |
|
|
283 | autotools_check_macro() { |
|
|
284 | local x |
|
|
285 | |
|
|
286 | # Add a few additional variants as we don't get expansions. |
|
|
287 | [[ ${1} = AC_CONFIG_HEADERS ]] && set -- "${@}" AC_CONFIG_HEADER |
|
|
288 | |
|
|
289 | for x; do |
|
|
290 | grep -h "^${x}" configure.{ac,in} 2>/dev/null |
|
|
291 | done |
|
|
292 | } |
|
|
293 | |
|
|
294 | einfo "Autoreconfiguring '${PWD}' ..." |
|
|
295 | |
|
|
296 | local auxdir=$(sed -n -e 's/^AC_CONFIG_AUX_DIR(\(.*\))$/\1/p' \ |
|
|
297 | configure.{ac,in} 2>/dev/null) |
|
|
298 | if [[ ${auxdir} ]]; then |
|
|
299 | auxdir=${auxdir%%]} |
|
|
300 | mkdir -p ${auxdir##[} |
|
|
301 | fi |
|
|
302 | |
|
|
303 | # Support running additional tools like gnome-autogen.sh. |
|
|
304 | # Note: you need to add additional depends to the ebuild. |
|
|
305 | |
|
|
306 | # gettext |
|
|
307 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
|
|
308 | echo 'no' | autotools_run_tool glib-gettextize --copy |
|
|
309 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
|
|
310 | eautopoint --force |
|
|
311 | fi |
|
|
312 | |
|
|
313 | # intltool |
|
|
314 | if [[ $(autotools_check_macro AC_PROG_INTLTOOL IT_PROG_INTLTOOL) ]] |
|
|
315 | then |
|
|
316 | autotools_run_tool intltoolize --copy --automake --force |
|
|
317 | fi |
|
|
318 | |
|
|
319 | # gtk-doc |
|
|
320 | if [[ $(autotools_check_macro GTK_DOC_CHECK) ]]; then |
|
|
321 | autotools_run_tool gtkdocize --copy |
|
|
322 | fi |
|
|
323 | |
|
|
324 | # gnome-doc |
|
|
325 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
|
|
326 | autotools_run_tool gnome-doc-prepare --copy --force |
|
|
327 | fi |
|
|
328 | |
|
|
329 | # We need to perform the check twice to know whether to run eaclocal. |
|
|
330 | # (_elibtoolize does that itself) |
|
|
331 | if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] |
|
|
332 | then |
|
|
333 | _elibtoolize --copy --force --install |
|
|
334 | else |
|
|
335 | eaclocal |
|
|
336 | fi |
|
|
337 | |
|
|
338 | eautoconf |
|
|
339 | eautoheader |
|
|
340 | FROM_EAUTORECONF=sure eautomake |
|
|
341 | |
|
|
342 | local x |
|
|
343 | for x in $(autotools_get_subdirs); do |
|
|
344 | if [[ -d ${x} ]] ; then |
|
|
345 | pushd "${x}" >/dev/null |
|
|
346 | autotools-utils_eautoreconf |
|
|
347 | popd >/dev/null |
|
|
348 | fi |
|
|
349 | done |
|
|
350 | } |
|
|
351 | |
| 219 | # @FUNCTION: autotools-utils_src_prepare |
352 | # @FUNCTION: autotools-utils_src_prepare |
| 220 | # @DESCRIPTION: |
353 | # @DESCRIPTION: |
| 221 | # The src_prepare function. |
354 | # The src_prepare function. |
| 222 | # |
355 | # |
| 223 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
356 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
| 224 | autotools-utils_src_prepare() { |
357 | autotools-utils_src_prepare() { |
| 225 | debug-print-function ${FUNCNAME} "$@" |
358 | debug-print-function ${FUNCNAME} "$@" |
| 226 | |
359 | |
| 227 | base_src_prepare |
360 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
|
|
361 | |
|
|
362 | touch "${T}"/.autotools-utils.timestamp || die |
|
|
363 | [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" |
|
|
364 | epatch_user |
|
|
365 | if [[ ! ${want_autoreconf} ]]; then |
|
|
366 | if [[ $(find . -newer "${T}"/.autotools-utils.timestamp \ |
|
|
367 | -a '(' -name 'Makefile.am' \ |
|
|
368 | -o -name 'configure.ac' \ |
|
|
369 | -o -name 'configure.in' ')' \ |
|
|
370 | -print -quit) ]]; then |
|
|
371 | einfo 'Will autoreconfigure due to patches applied.' |
|
|
372 | want_autoreconf=yep |
|
|
373 | fi |
|
|
374 | fi |
|
|
375 | |
|
|
376 | [[ ${want_autoreconf} ]] && autotools-utils_autoreconf |
| 228 | elibtoolize --patch-only |
377 | elibtoolize --patch-only |
| 229 | } |
378 | } |
| 230 | |
379 | |
| 231 | # @FUNCTION: autotools-utils_src_configure |
380 | # @FUNCTION: autotools-utils_src_configure |
| 232 | # @DESCRIPTION: |
381 | # @DESCRIPTION: |
| … | |
… | |
| 241 | debug-print-function ${FUNCNAME} "$@" |
390 | debug-print-function ${FUNCNAME} "$@" |
| 242 | |
391 | |
| 243 | [[ -z ${myeconfargs+1} || $(declare -p myeconfargs) == 'declare -a'* ]] \ |
392 | [[ -z ${myeconfargs+1} || $(declare -p myeconfargs) == 'declare -a'* ]] \ |
| 244 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
393 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
| 245 | |
394 | |
|
|
395 | [[ ${EAPI} == 2 ]] && ! use prefix && EPREFIX= |
|
|
396 | |
| 246 | # Common args |
397 | # Common args |
| 247 | local econfargs=() |
398 | local econfargs=( |
|
|
399 | --docdir="${EPREFIX}/usr/share/doc/${PF}" |
|
|
400 | ) |
| 248 | |
401 | |
| 249 | # Handle static-libs found in IUSE, disable them by default |
402 | # Handle static-libs found in IUSE, disable them by default |
| 250 | if in_iuse static-libs; then |
403 | if in_iuse static-libs; then |
| 251 | econfargs+=( |
404 | econfargs+=( |
| 252 | --enable-shared |
405 | --enable-shared |
| … | |
… | |
| 258 | econfargs+=("${myeconfargs[@]}") |
411 | econfargs+=("${myeconfargs[@]}") |
| 259 | |
412 | |
| 260 | _check_build_dir |
413 | _check_build_dir |
| 261 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
414 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
| 262 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
415 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 263 | base_src_configure "${econfargs[@]}" "$@" |
416 | econf "${econfargs[@]}" "$@" |
| 264 | popd > /dev/null |
417 | popd > /dev/null |
| 265 | } |
418 | } |
| 266 | |
419 | |
| 267 | # @FUNCTION: autotools-utils_src_compile |
420 | # @FUNCTION: autotools-utils_src_compile |
| 268 | # @DESCRIPTION: |
421 | # @DESCRIPTION: |
| … | |
… | |
| 270 | autotools-utils_src_compile() { |
423 | autotools-utils_src_compile() { |
| 271 | debug-print-function ${FUNCNAME} "$@" |
424 | debug-print-function ${FUNCNAME} "$@" |
| 272 | |
425 | |
| 273 | _check_build_dir |
426 | _check_build_dir |
| 274 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
427 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 275 | base_src_compile "$@" |
428 | emake "$@" || die 'emake failed' |
| 276 | popd > /dev/null |
429 | popd > /dev/null |
| 277 | } |
430 | } |
| 278 | |
431 | |
| 279 | # @FUNCTION: autotools-utils_src_install |
432 | # @FUNCTION: autotools-utils_src_install |
| 280 | # @DESCRIPTION: |
433 | # @DESCRIPTION: |
| … | |
… | |
| 287 | autotools-utils_src_install() { |
440 | autotools-utils_src_install() { |
| 288 | debug-print-function ${FUNCNAME} "$@" |
441 | debug-print-function ${FUNCNAME} "$@" |
| 289 | |
442 | |
| 290 | _check_build_dir |
443 | _check_build_dir |
| 291 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
444 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 292 | base_src_install "$@" |
445 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 293 | popd > /dev/null |
446 | popd > /dev/null |
|
|
447 | |
|
|
448 | # Move docs installed by autotools (in EAPI < 4). |
|
|
449 | if [[ ${EAPI} == [23] && -d ${D}${EPREFIX}/usr/share/doc/${PF} ]]; then |
|
|
450 | mkdir "${T}"/temp-docdir |
|
|
451 | mv "${D}${EPREFIX}"/usr/share/doc/${PF}/* "${T}"/temp-docdir/ \ |
|
|
452 | || die "moving docs to tempdir failed" |
|
|
453 | |
|
|
454 | local f |
|
|
455 | for f in "${T}"/temp-docdir/*; do |
|
|
456 | [[ -d ${f} ]] \ |
|
|
457 | && die "directories in docdir require at least EAPI 4" |
|
|
458 | done |
|
|
459 | |
|
|
460 | dodoc "${T}"/temp-docdir/* || die "docdir dodoc failed" |
|
|
461 | rm -r "${T}"/temp-docdir || die |
|
|
462 | fi |
|
|
463 | |
|
|
464 | # XXX: support installing them from builddir as well? |
|
|
465 | if [[ ${DOCS} ]]; then |
|
|
466 | dodoc "${DOCS[@]}" || die "dodoc failed" |
|
|
467 | else |
|
|
468 | local f |
|
|
469 | # same list as in PMS |
|
|
470 | for f in README* ChangeLog AUTHORS NEWS TODO CHANGES \ |
|
|
471 | THANKS BUGS FAQ CREDITS CHANGELOG; do |
|
|
472 | if [[ -s ${f} ]]; then |
|
|
473 | dodoc "${f}" || die "(default) dodoc ${f} failed" |
|
|
474 | fi |
|
|
475 | done |
|
|
476 | fi |
|
|
477 | if [[ ${HTML_DOCS} ]]; then |
|
|
478 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
|
|
479 | fi |
| 294 | |
480 | |
| 295 | # Remove libtool files and unnecessary static libs |
481 | # Remove libtool files and unnecessary static libs |
| 296 | remove_libtool_files |
482 | remove_libtool_files |
| 297 | } |
483 | } |
| 298 | |
484 | |