| 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.22 2011/09/18 07:57:55 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.57 2012/09/27 16:35:41 axs 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 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 |
| … | |
… | |
| 82 | # @CODE |
87 | # @CODE |
| 83 | |
88 | |
| 84 | # 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! |
| 85 | |
90 | |
| 86 | case ${EAPI:-0} in |
91 | case ${EAPI:-0} in |
| 87 | 2|3|4) ;; |
92 | 2|3|4|5) ;; |
| 88 | *) die "EAPI=${EAPI} is not supported" ;; |
93 | *) die "EAPI=${EAPI} is not supported" ;; |
| 89 | esac |
94 | esac |
| 90 | |
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_DEPEND:=no} |
|
|
115 | |
| 91 | inherit autotools base eutils |
116 | inherit autotools eutils libtool |
| 92 | |
117 | |
| 93 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
118 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_install src_test |
| 94 | |
119 | |
| 95 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
120 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
|
|
121 | # @DEFAULT_UNSET |
| 96 | # @DESCRIPTION: |
122 | # @DESCRIPTION: |
| 97 | # Build directory, location where all autotools generated files should be |
123 | # Build directory, location where all autotools generated files should be |
| 98 | # placed. For out of source builds it defaults to ${WORKDIR}/${P}_build. |
124 | # placed. For out of source builds it defaults to ${WORKDIR}/${P}_build. |
| 99 | |
125 | |
| 100 | # @ECLASS-VARIABLE: AUTOTOOLS_IN_SOURCE_BUILD |
126 | # @ECLASS-VARIABLE: AUTOTOOLS_IN_SOURCE_BUILD |
|
|
127 | # @DEFAULT_UNSET |
| 101 | # @DESCRIPTION: |
128 | # @DESCRIPTION: |
| 102 | # Set to enable in-source build. |
129 | # Set to enable in-source build. |
| 103 | |
130 | |
| 104 | # @ECLASS-VARIABLE: ECONF_SOURCE |
131 | # @ECLASS-VARIABLE: ECONF_SOURCE |
|
|
132 | # @DEFAULT_UNSET |
| 105 | # @DESCRIPTION: |
133 | # @DESCRIPTION: |
| 106 | # Specify location of autotools' configure script. By default it uses ${S}. |
134 | # Specify location of autotools' configure script. By default it uses ${S}. |
| 107 | |
135 | |
| 108 | # @ECLASS-VARIABLE: myeconfargs |
136 | # @ECLASS-VARIABLE: myeconfargs |
|
|
137 | # @DEFAULT_UNSET |
| 109 | # @DESCRIPTION: |
138 | # @DESCRIPTION: |
| 110 | # Optional econf arguments as Bash array. Should be defined before calling src_configure. |
139 | # Optional econf arguments as Bash array. Should be defined before calling src_configure. |
| 111 | # @CODE |
140 | # @CODE |
| 112 | # src_configure() { |
141 | # src_configure() { |
| 113 | # local myeconfargs=( |
142 | # local myeconfargs=( |
| … | |
… | |
| 118 | # ) |
147 | # ) |
| 119 | # autotools-utils_src_configure |
148 | # autotools-utils_src_configure |
| 120 | # } |
149 | # } |
| 121 | # @CODE |
150 | # @CODE |
| 122 | |
151 | |
|
|
152 | # @ECLASS-VARIABLE: DOCS |
|
|
153 | # @DEFAULT_UNSET |
|
|
154 | # @DESCRIPTION: |
|
|
155 | # Array containing documents passed to dodoc command. |
|
|
156 | # |
|
|
157 | # Example: |
|
|
158 | # @CODE |
|
|
159 | # DOCS=( NEWS README ) |
|
|
160 | # @CODE |
|
|
161 | |
|
|
162 | # @ECLASS-VARIABLE: HTML_DOCS |
|
|
163 | # @DEFAULT_UNSET |
|
|
164 | # @DESCRIPTION: |
|
|
165 | # Array containing documents passed to dohtml command. |
|
|
166 | # |
|
|
167 | # Example: |
|
|
168 | # @CODE |
|
|
169 | # HTML_DOCS=( doc/html/ ) |
|
|
170 | # @CODE |
|
|
171 | |
|
|
172 | # @ECLASS-VARIABLE: PATCHES |
|
|
173 | # @DEFAULT_UNSET |
|
|
174 | # @DESCRIPTION: |
|
|
175 | # PATCHES array variable containing all various patches to be applied. |
|
|
176 | # |
|
|
177 | # Example: |
|
|
178 | # @CODE |
|
|
179 | # PATCHES=( "${FILESDIR}"/${P}-mypatch.patch ) |
|
|
180 | # @CODE |
|
|
181 | |
| 123 | # Determine using IN or OUT source build |
182 | # Determine using IN or OUT source build |
| 124 | _check_build_dir() { |
183 | _check_build_dir() { |
| 125 | : ${ECONF_SOURCE:=${S}} |
184 | : ${ECONF_SOURCE:=${S}} |
| 126 | if [[ -n ${AUTOTOOLS_IN_SOURCE_BUILD} ]]; then |
185 | if [[ -n ${AUTOTOOLS_IN_SOURCE_BUILD} ]]; then |
| 127 | AUTOTOOLS_BUILD_DIR="${ECONF_SOURCE}" |
186 | AUTOTOOLS_BUILD_DIR="${ECONF_SOURCE}" |
| … | |
… | |
| 143 | # In most cases it's not necessary to manually invoke this function. |
202 | # In most cases it's not necessary to manually invoke this function. |
| 144 | # See autotools-utils_src_install for reference. |
203 | # See autotools-utils_src_install for reference. |
| 145 | remove_libtool_files() { |
204 | remove_libtool_files() { |
| 146 | debug-print-function ${FUNCNAME} "$@" |
205 | debug-print-function ${FUNCNAME} "$@" |
| 147 | local removing_all |
206 | local removing_all |
|
|
207 | |
|
|
208 | eqawarn "The remove_libtool_files() function was deprecated." |
|
|
209 | eqawarn "Please use prune_libtool_files() from eutils eclass instead." |
|
|
210 | |
| 148 | [[ ${#} -le 1 ]] || die "Invalid number of args to ${FUNCNAME}()" |
211 | [[ ${#} -le 1 ]] || die "Invalid number of args to ${FUNCNAME}()" |
| 149 | if [[ ${#} -eq 1 ]]; then |
212 | if [[ ${#} -eq 1 ]]; then |
| 150 | case "${1}" in |
213 | case "${1}" in |
| 151 | all) |
214 | all) |
| 152 | removing_all=1 |
215 | removing_all=1 |
| … | |
… | |
| 200 | rm -f "${f}" || die |
263 | rm -f "${f}" || die |
| 201 | fi |
264 | fi |
| 202 | done |
265 | done |
| 203 | } |
266 | } |
| 204 | |
267 | |
|
|
268 | # @FUNCTION: autotools-utils_autoreconf |
|
|
269 | # @DESCRIPTION: |
|
|
270 | # Reconfigure the sources (like gnome-autogen.sh or eautoreconf). |
|
|
271 | autotools-utils_autoreconf() { |
|
|
272 | debug-print-function ${FUNCNAME} "$@" |
|
|
273 | |
|
|
274 | eqawarn "The autotools-utils_autoreconf() function was deprecated." |
|
|
275 | eqawarn "Please call autotools-utils_src_prepare()" |
|
|
276 | eqawarn "with AUTOTOOLS_AUTORECONF set instead." |
|
|
277 | |
|
|
278 | # Override this func to not require unnecessary eaclocal calls. |
|
|
279 | autotools_check_macro() { |
|
|
280 | local x |
|
|
281 | |
|
|
282 | # Add a few additional variants as we don't get expansions. |
|
|
283 | [[ ${1} = AC_CONFIG_HEADERS ]] && set -- "${@}" \ |
|
|
284 | AC_CONFIG_HEADER AM_CONFIG_HEADER |
|
|
285 | |
|
|
286 | for x; do |
|
|
287 | grep -h "^${x}" configure.{ac,in} 2>/dev/null |
|
|
288 | done |
|
|
289 | } |
|
|
290 | |
|
|
291 | einfo "Autoreconfiguring '${PWD}' ..." |
|
|
292 | |
|
|
293 | local auxdir=$(sed -n -e 's/^AC_CONFIG_AUX_DIR(\(.*\))$/\1/p' \ |
|
|
294 | configure.{ac,in} 2>/dev/null) |
|
|
295 | if [[ ${auxdir} ]]; then |
|
|
296 | auxdir=${auxdir%%]} |
|
|
297 | mkdir -p ${auxdir##[} |
|
|
298 | fi |
|
|
299 | |
|
|
300 | # Support running additional tools like gnome-autogen.sh. |
|
|
301 | # Note: you need to add additional depends to the ebuild. |
|
|
302 | |
|
|
303 | # gettext |
|
|
304 | if [[ $(autotools_check_macro AM_GLIB_GNU_GETTEXT) ]]; then |
|
|
305 | echo 'no' | autotools_run_tool glib-gettextize --copy --force |
|
|
306 | elif [[ $(autotools_check_macro AM_GNU_GETTEXT) ]]; then |
|
|
307 | eautopoint --force |
|
|
308 | fi |
|
|
309 | |
|
|
310 | # intltool |
|
|
311 | if [[ $(autotools_check_macro AC_PROG_INTLTOOL IT_PROG_INTLTOOL) ]] |
|
|
312 | then |
|
|
313 | autotools_run_tool intltoolize --copy --automake --force |
|
|
314 | fi |
|
|
315 | |
|
|
316 | # gtk-doc |
|
|
317 | if [[ $(autotools_check_macro GTK_DOC_CHECK) ]]; then |
|
|
318 | autotools_run_tool gtkdocize --copy |
|
|
319 | fi |
|
|
320 | |
|
|
321 | # gnome-doc |
|
|
322 | if [[ $(autotools_check_macro GNOME_DOC_INIT) ]]; then |
|
|
323 | autotools_run_tool gnome-doc-prepare --copy --force |
|
|
324 | fi |
|
|
325 | |
|
|
326 | if [[ $(autotools_check_macro AC_PROG_LIBTOOL AM_PROG_LIBTOOL LT_INIT) ]] |
|
|
327 | then |
|
|
328 | _elibtoolize --copy --force --install |
|
|
329 | fi |
|
|
330 | |
|
|
331 | eaclocal |
|
|
332 | eautoconf |
|
|
333 | eautoheader |
|
|
334 | FROM_EAUTORECONF=sure eautomake |
|
|
335 | |
|
|
336 | local x |
|
|
337 | for x in $(autotools_check_macro_val AC_CONFIG_SUBDIRS); do |
|
|
338 | if [[ -d ${x} ]] ; then |
|
|
339 | pushd "${x}" >/dev/null || die |
|
|
340 | autotools-utils_autoreconf |
|
|
341 | popd >/dev/null || die |
|
|
342 | fi |
|
|
343 | done |
|
|
344 | } |
|
|
345 | |
| 205 | # @FUNCTION: autotools-utils_src_prepare |
346 | # @FUNCTION: autotools-utils_src_prepare |
| 206 | # @DESCRIPTION: |
347 | # @DESCRIPTION: |
| 207 | # The src_prepare function. |
348 | # The src_prepare function. |
| 208 | # |
349 | # |
| 209 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
350 | # Supporting PATCHES array and user patches. See base.eclass(5) for reference. |
| 210 | autotools-utils_src_prepare() { |
351 | autotools-utils_src_prepare() { |
| 211 | debug-print-function ${FUNCNAME} "$@" |
352 | debug-print-function ${FUNCNAME} "$@" |
| 212 | |
353 | |
| 213 | base_src_prepare |
354 | local want_autoreconf=${AUTOTOOLS_AUTORECONF} |
|
|
355 | |
|
|
356 | [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" |
|
|
357 | |
|
|
358 | at_checksum() { |
|
|
359 | find '(' -name 'Makefile.am' \ |
|
|
360 | -o -name 'configure.ac' \ |
|
|
361 | -o -name 'configure.in' ')' \ |
|
|
362 | -exec cksum {} + | sort -k2 |
|
|
363 | } |
|
|
364 | |
|
|
365 | [[ ! ${want_autoreconf} ]] && local checksum=$(at_checksum) |
|
|
366 | epatch_user |
|
|
367 | if [[ ! ${want_autoreconf} ]]; then |
|
|
368 | if [[ ${checksum} != $(at_checksum) ]]; then |
|
|
369 | einfo 'Will autoreconfigure due to user patches applied.' |
|
|
370 | want_autoreconf=yep |
|
|
371 | fi |
|
|
372 | fi |
|
|
373 | |
|
|
374 | [[ ${want_autoreconf} ]] && eautoreconf |
|
|
375 | elibtoolize --patch-only |
| 214 | } |
376 | } |
| 215 | |
377 | |
| 216 | # @FUNCTION: autotools-utils_src_configure |
378 | # @FUNCTION: autotools-utils_src_configure |
| 217 | # @DESCRIPTION: |
379 | # @DESCRIPTION: |
| 218 | # The src_configure function. For out of source build it creates build |
380 | # The src_configure function. For out of source build it creates build |
| … | |
… | |
| 226 | debug-print-function ${FUNCNAME} "$@" |
388 | debug-print-function ${FUNCNAME} "$@" |
| 227 | |
389 | |
| 228 | [[ -z ${myeconfargs+1} || $(declare -p myeconfargs) == 'declare -a'* ]] \ |
390 | [[ -z ${myeconfargs+1} || $(declare -p myeconfargs) == 'declare -a'* ]] \ |
| 229 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
391 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
| 230 | |
392 | |
|
|
393 | [[ ${EAPI} == 2 ]] && ! use prefix && EPREFIX= |
|
|
394 | |
| 231 | # Common args |
395 | # Common args |
| 232 | local econfargs=() |
396 | local econfargs=() |
| 233 | |
397 | |
| 234 | # Handle debug found in IUSE |
398 | _check_build_dir |
| 235 | if has debug ${IUSE//+}; then |
399 | if "${ECONF_SOURCE}"/configure --help 2>&1 | grep -q '^ *--docdir='; then |
| 236 | local debugarg=$(use_enable debug) |
400 | econfargs+=( |
| 237 | if ! has "${debugarg}" "${myeconfargs[@]}"; then |
401 | --docdir="${EPREFIX}"/usr/share/doc/${PF} |
| 238 | eqawarn 'Implicit $(use_enable debug) for IUSE="debug" is no longer supported.' |
402 | ) |
| 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 |
403 | fi |
| 243 | |
404 | |
| 244 | # Handle static-libs found in IUSE, disable them by default |
405 | # Handle static-libs found in IUSE, disable them by default |
| 245 | if has static-libs ${IUSE//+}; then |
406 | if in_iuse static-libs; then |
| 246 | econfargs+=( |
407 | econfargs+=( |
| 247 | --enable-shared |
408 | --enable-shared |
| 248 | $(use_enable static-libs static) |
409 | $(use_enable static-libs static) |
| 249 | ) |
410 | ) |
| 250 | fi |
411 | fi |
| 251 | |
412 | |
| 252 | # Append user args |
413 | # Append user args |
| 253 | econfargs+=("${myeconfargs[@]}") |
414 | econfargs+=("${myeconfargs[@]}") |
| 254 | |
415 | |
| 255 | _check_build_dir |
|
|
| 256 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
416 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
| 257 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
417 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 258 | base_src_configure "${econfargs[@]}" "$@" |
418 | econf "${econfargs[@]}" "$@" |
| 259 | popd > /dev/null |
419 | popd > /dev/null || die |
| 260 | } |
420 | } |
| 261 | |
421 | |
| 262 | # @FUNCTION: autotools-utils_src_compile |
422 | # @FUNCTION: autotools-utils_src_compile |
| 263 | # @DESCRIPTION: |
423 | # @DESCRIPTION: |
| 264 | # The autotools src_compile function, invokes emake in specified AUTOTOOLS_BUILD_DIR. |
424 | # The autotools src_compile function, invokes emake in specified AUTOTOOLS_BUILD_DIR. |
| 265 | autotools-utils_src_compile() { |
425 | autotools-utils_src_compile() { |
| 266 | debug-print-function ${FUNCNAME} "$@" |
426 | debug-print-function ${FUNCNAME} "$@" |
| 267 | |
427 | |
| 268 | _check_build_dir |
428 | _check_build_dir |
| 269 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
429 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 270 | base_src_compile "$@" |
430 | emake "$@" || die 'emake failed' |
| 271 | popd > /dev/null |
431 | popd > /dev/null || die |
| 272 | } |
432 | } |
| 273 | |
433 | |
| 274 | # @FUNCTION: autotools-utils_src_install |
434 | # @FUNCTION: autotools-utils_src_install |
| 275 | # @DESCRIPTION: |
435 | # @DESCRIPTION: |
| 276 | # The autotools src_install function. Runs emake install, unconditionally |
436 | # The autotools src_install function. Runs emake install, unconditionally |
| … | |
… | |
| 281 | # DOCS and HTML_DOCS arrays are supported. See base.eclass(5) for reference. |
441 | # DOCS and HTML_DOCS arrays are supported. See base.eclass(5) for reference. |
| 282 | autotools-utils_src_install() { |
442 | autotools-utils_src_install() { |
| 283 | debug-print-function ${FUNCNAME} "$@" |
443 | debug-print-function ${FUNCNAME} "$@" |
| 284 | |
444 | |
| 285 | _check_build_dir |
445 | _check_build_dir |
| 286 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
446 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 287 | base_src_install "$@" |
447 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 288 | popd > /dev/null |
448 | popd > /dev/null || die |
|
|
449 | |
|
|
450 | # Move docs installed by autotools (in EAPI < 4). |
|
|
451 | if [[ ${EAPI} == [23] ]] \ |
|
|
452 | && path_exists "${D}${EPREFIX}"/usr/share/doc/${PF}/*; then |
|
|
453 | if [[ $(find "${D}${EPREFIX}"/usr/share/doc/${PF}/* -type d) ]]; then |
|
|
454 | eqawarn "autotools-utils: directories in docdir require at least EAPI 4" |
|
|
455 | else |
|
|
456 | mkdir "${T}"/temp-docdir |
|
|
457 | mv "${D}${EPREFIX}"/usr/share/doc/${PF}/* "${T}"/temp-docdir/ \ |
|
|
458 | || die "moving docs to tempdir failed" |
|
|
459 | |
|
|
460 | dodoc "${T}"/temp-docdir/* || die "docdir dodoc failed" |
|
|
461 | rm -r "${T}"/temp-docdir || die |
|
|
462 | fi |
|
|
463 | fi |
|
|
464 | |
|
|
465 | # XXX: support installing them from builddir as well? |
|
|
466 | if [[ ${DOCS} ]]; then |
|
|
467 | dodoc "${DOCS[@]}" || die "dodoc failed" |
|
|
468 | else |
|
|
469 | local f |
|
|
470 | # same list as in PMS |
|
|
471 | for f in README* ChangeLog AUTHORS NEWS TODO CHANGES \ |
|
|
472 | THANKS BUGS FAQ CREDITS CHANGELOG; do |
|
|
473 | if [[ -s ${f} ]]; then |
|
|
474 | dodoc "${f}" || die "(default) dodoc ${f} failed" |
|
|
475 | fi |
|
|
476 | done |
|
|
477 | fi |
|
|
478 | if [[ ${HTML_DOCS} ]]; then |
|
|
479 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
|
|
480 | fi |
| 289 | |
481 | |
| 290 | # Remove libtool files and unnecessary static libs |
482 | # Remove libtool files and unnecessary static libs |
| 291 | remove_libtool_files |
483 | prune_libtool_files |
| 292 | } |
484 | } |
| 293 | |
485 | |
| 294 | # @FUNCTION: autotools-utils_src_test |
486 | # @FUNCTION: autotools-utils_src_test |
| 295 | # @DESCRIPTION: |
487 | # @DESCRIPTION: |
| 296 | # The autotools src_test function. Runs emake check in build directory. |
488 | # The autotools src_test function. Runs emake check in build directory. |
| 297 | autotools-utils_src_test() { |
489 | autotools-utils_src_test() { |
| 298 | debug-print-function ${FUNCNAME} "$@" |
490 | debug-print-function ${FUNCNAME} "$@" |
| 299 | |
491 | |
| 300 | _check_build_dir |
492 | _check_build_dir |
| 301 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
493 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die |
| 302 | # Run default src_test as defined in ebuild.sh |
494 | # Run default src_test as defined in ebuild.sh |
| 303 | default_src_test |
495 | default_src_test |
| 304 | popd > /dev/null |
496 | popd > /dev/null || die |
| 305 | } |
497 | } |