| 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.12 2011/09/16 15:20:03 mgorny Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.40 2012/01/14 18:53:56 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 |
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} \ |
|
|
117 | inherit autotools eutils libtool |
| 92 | |
118 | |
| 93 | 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 |
| 94 | |
120 | |
|
|
121 | unset _autotools_auto_dep |
|
|
122 | |
| 95 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
123 | # @ECLASS-VARIABLE: AUTOTOOLS_BUILD_DIR |
|
|
124 | # @DEFAULT_UNSET |
| 96 | # @DESCRIPTION: |
125 | # @DESCRIPTION: |
| 97 | # Build directory, location where all autotools generated files should be |
126 | # Build directory, location where all autotools generated files should be |
| 98 | # 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. |
| 99 | |
128 | |
| 100 | # @ECLASS-VARIABLE: AUTOTOOLS_IN_SOURCE_BUILD |
129 | # @ECLASS-VARIABLE: AUTOTOOLS_IN_SOURCE_BUILD |
|
|
130 | # @DEFAULT_UNSET |
| 101 | # @DESCRIPTION: |
131 | # @DESCRIPTION: |
| 102 | # Set to enable in-source build. |
132 | # Set to enable in-source build. |
| 103 | |
133 | |
| 104 | # @ECLASS-VARIABLE: ECONF_SOURCE |
134 | # @ECLASS-VARIABLE: ECONF_SOURCE |
|
|
135 | # @DEFAULT_UNSET |
| 105 | # @DESCRIPTION: |
136 | # @DESCRIPTION: |
| 106 | # Specify location of autotools' configure script. By default it uses ${S}. |
137 | # Specify location of autotools' configure script. By default it uses ${S}. |
| 107 | |
138 | |
| 108 | # @ECLASS-VARIABLE: myeconfargs |
139 | # @ECLASS-VARIABLE: myeconfargs |
|
|
140 | # @DEFAULT_UNSET |
| 109 | # @DESCRIPTION: |
141 | # @DESCRIPTION: |
| 110 | # 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. |
| 111 | # @CODE |
143 | # @CODE |
| 112 | # src_configure() { |
144 | # src_configure() { |
| 113 | # local myeconfargs=( |
145 | # local myeconfargs=( |
| … | |
… | |
| 118 | # ) |
150 | # ) |
| 119 | # autotools-utils_src_configure |
151 | # autotools-utils_src_configure |
| 120 | # } |
152 | # } |
| 121 | # @CODE |
153 | # @CODE |
| 122 | |
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 ) |
|
|
183 | # @CODE |
|
|
184 | |
| 123 | # Determine using IN or OUT source build |
185 | # Determine using IN or OUT source build |
| 124 | _check_build_dir() { |
186 | _check_build_dir() { |
| 125 | : ${ECONF_SOURCE:=${S}} |
187 | : ${ECONF_SOURCE:=${S}} |
| 126 | if [[ -n ${AUTOTOOLS_IN_SOURCE_BUILD} ]]; then |
188 | if [[ -n ${AUTOTOOLS_IN_SOURCE_BUILD} ]]; then |
| 127 | AUTOTOOLS_BUILD_DIR="${ECONF_SOURCE}" |
189 | AUTOTOOLS_BUILD_DIR="${ECONF_SOURCE}" |
| … | |
… | |
| 130 | fi |
192 | fi |
| 131 | echo ">>> Working in BUILD_DIR: \"$AUTOTOOLS_BUILD_DIR\"" |
193 | echo ">>> Working in BUILD_DIR: \"$AUTOTOOLS_BUILD_DIR\"" |
| 132 | } |
194 | } |
| 133 | |
195 | |
| 134 | # @FUNCTION: remove_libtool_files |
196 | # @FUNCTION: remove_libtool_files |
| 135 | # @USAGE: [all|none] |
197 | # @USAGE: [all] |
| 136 | # @DESCRIPTION: |
198 | # @DESCRIPTION: |
| 137 | # Determines unnecessary libtool files (.la) and libtool static archives (.a) |
199 | # Determines unnecessary libtool files (.la) and libtool static archives (.a) |
| 138 | # and removes them from installation image. |
200 | # and removes them from installation image. |
|
|
201 | # |
| 139 | # To unconditionally remove all libtool files, pass 'all' as argument. |
202 | # To unconditionally remove all libtool files, pass 'all' as argument. |
| 140 | # To leave all libtool files alone, pass 'none' as argument. |
203 | # Otherwise, libtool archives required for static linking will be preserved. |
| 141 | # Unnecessary static archives are removed in any case. |
|
|
| 142 | # |
204 | # |
| 143 | # In most cases it's not necessary to manually invoke this function. |
205 | # In most cases it's not necessary to manually invoke this function. |
| 144 | # See autotools-utils_src_install for reference. |
206 | # See autotools-utils_src_install for reference. |
| 145 | remove_libtool_files() { |
207 | remove_libtool_files() { |
| 146 | debug-print-function ${FUNCNAME} "$@" |
208 | debug-print-function ${FUNCNAME} "$@" |
|
|
209 | local removing_all |
|
|
210 | [[ ${#} -le 1 ]] || die "Invalid number of args to ${FUNCNAME}()" |
|
|
211 | if [[ ${#} -eq 1 ]]; then |
|
|
212 | case "${1}" in |
|
|
213 | all) |
|
|
214 | removing_all=1 |
|
|
215 | ;; |
|
|
216 | *) |
|
|
217 | die "Invalid argument to ${FUNCNAME}(): ${1}" |
|
|
218 | esac |
|
|
219 | fi |
|
|
220 | |
|
|
221 | local pc_libs=() |
|
|
222 | if [[ ! ${removing_all} ]]; then |
|
|
223 | local arg |
|
|
224 | for arg in $(find "${D}" -name '*.pc' -exec \ |
|
|
225 | sed -n -e 's;^Libs:;;p' {} +); do |
|
|
226 | [[ ${arg} == -l* ]] && pc_libs+=(lib${arg#-l}.la) |
|
|
227 | done |
|
|
228 | fi |
| 147 | |
229 | |
| 148 | local f |
230 | local f |
| 149 | find "${D}" -type f -name '*.la' -print0 | while read -r -d '' f; do |
231 | find "${D}" -type f -name '*.la' -print0 | while read -r -d '' f; do |
| 150 | # Keep only .la files with shouldnotlink=yes - likely plugins |
|
|
| 151 | local shouldnotlink=$(sed -ne '/^shouldnotlink=yes$/p' "${f}") |
232 | local shouldnotlink=$(sed -ne '/^shouldnotlink=yes$/p' "${f}") |
| 152 | if [[ "$1" == 'all' || -z ${shouldnotlink} ]]; then |
233 | local archivefile=${f/%.la/.a} |
| 153 | if [[ "$1" != 'none' ]]; then |
234 | [[ "${f}" != "${archivefile}" ]] || die 'regex sanity check failed' |
| 154 | einfo "Removing unnecessary ${f}" |
235 | |
| 155 | rm -f "${f}" |
|
|
| 156 | fi |
|
|
| 157 | fi |
|
|
| 158 | # Remove static libs we're not supposed to link against |
236 | # Remove static libs we're not supposed to link against. |
| 159 | if [[ -n ${shouldnotlink} ]]; then |
237 | if [[ ${shouldnotlink} ]]; then |
| 160 | local remove=${f/%.la/.a} |
238 | einfo "Removing unnecessary ${archivefile#${D%/}}" |
| 161 | [[ "${f}" != "${remove}" ]] || die 'regex sanity check failed' |
239 | rm -f "${archivefile}" || die |
|
|
240 | # The .la file may be used by a module loader, so avoid removing it |
|
|
241 | # unless explicitly requested. |
|
|
242 | [[ ${removing_all} ]] || continue |
|
|
243 | fi |
|
|
244 | |
|
|
245 | # Remove .la files when: |
|
|
246 | # - user explicitly wants us to remove all .la files, |
|
|
247 | # - respective static archive doesn't exist, |
|
|
248 | # - they are covered by a .pc file already, |
|
|
249 | # - they don't provide any new information (no libs & no flags). |
|
|
250 | local removing |
|
|
251 | if [[ ${removing_all} ]]; then removing='forced' |
|
|
252 | elif [[ ! -f ${archivefile} ]]; then removing='no static archive' |
|
|
253 | elif has "$(basename "${f}")" "${pc_libs[@]}"; then |
|
|
254 | removing='covered by .pc' |
|
|
255 | elif [[ ! $(sed -n -e \ |
|
|
256 | "s/^\(dependency_libs\|inherited_linker_flags\)='\(.*\)'$/\2/p" \ |
|
|
257 | "${f}") ]]; then removing='no libs & flags' |
|
|
258 | fi |
|
|
259 | |
|
|
260 | if [[ ${removing} ]]; then |
| 162 | einfo "Removing unnecessary ${remove}" |
261 | einfo "Removing unnecessary ${f#${D%/}} (${removing})" |
| 163 | rm -f "${remove}" |
262 | rm -f "${f}" || die |
|
|
263 | fi |
|
|
264 | done |
|
|
265 | |
|
|
266 | # check for invalid eclass use |
|
|
267 | # this is the most commonly used function, so do it here |
|
|
268 | _check_build_dir |
|
|
269 | if [[ ! -d "${AUTOTOOLS_BUILD_DIR}" ]]; then |
|
|
270 | eqawarn "autotools-utils used but autotools-utils_src_configure was never called." |
|
|
271 | eqawarn "This is not supported and never was. Please report a bug against" |
|
|
272 | eqawarn "the offending ebuild. This will become a fatal error in a near future." |
|
|
273 | fi |
|
|
274 | } |
|
|
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 |
| 164 | fi |
348 | fi |
| 165 | done |
349 | done |
| 166 | } |
350 | } |
| 167 | |
351 | |
| 168 | # @FUNCTION: autotools-utils_src_prepare |
352 | # @FUNCTION: autotools-utils_src_prepare |
| … | |
… | |
| 171 | # |
355 | # |
| 172 | # 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. |
| 173 | autotools-utils_src_prepare() { |
357 | autotools-utils_src_prepare() { |
| 174 | debug-print-function ${FUNCNAME} "$@" |
358 | debug-print-function ${FUNCNAME} "$@" |
| 175 | |
359 | |
| 176 | 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 |
|
|
377 | elibtoolize --patch-only |
| 177 | } |
378 | } |
| 178 | |
379 | |
| 179 | # @FUNCTION: autotools-utils_src_configure |
380 | # @FUNCTION: autotools-utils_src_configure |
| 180 | # @DESCRIPTION: |
381 | # @DESCRIPTION: |
| 181 | # The src_configure function. For out of source build it creates build |
382 | # The src_configure function. For out of source build it creates build |
| 182 | # directory and runs econf there. Configuration parameters defined |
383 | # directory and runs econf there. Configuration parameters defined |
| 183 | # in myeconfargs are passed here to econf. Additionally following USE |
384 | # in myeconfargs are passed here to econf. Additionally following USE |
| 184 | # flags are known: |
385 | # flags are known: |
| 185 | # |
386 | # |
| 186 | # IUSE="debug" passes --disable-debug/--enable-debug to econf respectively. |
|
|
| 187 | # |
|
|
| 188 | # IUSE="static-libs" passes --enable-shared and either --disable-static/--enable-static |
387 | # IUSE="static-libs" passes --enable-shared and either --disable-static/--enable-static |
| 189 | # to econf respectively. |
388 | # to econf respectively. |
| 190 | autotools-utils_src_configure() { |
389 | autotools-utils_src_configure() { |
| 191 | debug-print-function ${FUNCNAME} "$@" |
390 | debug-print-function ${FUNCNAME} "$@" |
| 192 | |
391 | |
|
|
392 | [[ -z ${myeconfargs+1} || $(declare -p myeconfargs) == 'declare -a'* ]] \ |
|
|
393 | || die 'autotools-utils.eclass: myeconfargs has to be an array.' |
|
|
394 | |
|
|
395 | [[ ${EAPI} == 2 ]] && ! use prefix && EPREFIX= |
|
|
396 | |
| 193 | # Common args |
397 | # Common args |
| 194 | local econfargs=() |
398 | local econfargs=( |
| 195 | |
399 | --docdir="${EPREFIX}/usr/share/doc/${PF}" |
| 196 | # Handle debug found in IUSE |
400 | ) |
| 197 | if has debug ${IUSE//+}; then |
|
|
| 198 | econfargs+=($(use_enable debug)) |
|
|
| 199 | fi |
|
|
| 200 | |
401 | |
| 201 | # Handle static-libs found in IUSE, disable them by default |
402 | # Handle static-libs found in IUSE, disable them by default |
| 202 | if has static-libs ${IUSE//+}; then |
403 | if in_iuse static-libs; then |
| 203 | econfargs+=( |
404 | econfargs+=( |
| 204 | --enable-shared |
405 | --enable-shared |
| 205 | $(use_enable static-libs static) |
406 | $(use_enable static-libs static) |
| 206 | ) |
407 | ) |
| 207 | fi |
408 | fi |
| … | |
… | |
| 210 | econfargs+=("${myeconfargs[@]}") |
411 | econfargs+=("${myeconfargs[@]}") |
| 211 | |
412 | |
| 212 | _check_build_dir |
413 | _check_build_dir |
| 213 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
414 | mkdir -p "${AUTOTOOLS_BUILD_DIR}" || die "mkdir '${AUTOTOOLS_BUILD_DIR}' failed" |
| 214 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
415 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 215 | base_src_configure "${econfargs[@]}" "$@" |
416 | econf "${econfargs[@]}" "$@" |
| 216 | popd > /dev/null |
417 | popd > /dev/null |
| 217 | } |
418 | } |
| 218 | |
419 | |
| 219 | # @FUNCTION: autotools-utils_src_compile |
420 | # @FUNCTION: autotools-utils_src_compile |
| 220 | # @DESCRIPTION: |
421 | # @DESCRIPTION: |
| … | |
… | |
| 222 | autotools-utils_src_compile() { |
423 | autotools-utils_src_compile() { |
| 223 | debug-print-function ${FUNCNAME} "$@" |
424 | debug-print-function ${FUNCNAME} "$@" |
| 224 | |
425 | |
| 225 | _check_build_dir |
426 | _check_build_dir |
| 226 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
427 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 227 | base_src_compile "$@" |
428 | emake "$@" || die 'emake failed' |
| 228 | popd > /dev/null |
429 | popd > /dev/null |
| 229 | } |
430 | } |
| 230 | |
431 | |
| 231 | # @FUNCTION: autotools-utils_src_install |
432 | # @FUNCTION: autotools-utils_src_install |
| 232 | # @DESCRIPTION: |
433 | # @DESCRIPTION: |
| … | |
… | |
| 239 | autotools-utils_src_install() { |
440 | autotools-utils_src_install() { |
| 240 | debug-print-function ${FUNCNAME} "$@" |
441 | debug-print-function ${FUNCNAME} "$@" |
| 241 | |
442 | |
| 242 | _check_build_dir |
443 | _check_build_dir |
| 243 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
444 | pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null |
| 244 | base_src_install "$@" |
445 | emake DESTDIR="${D}" "$@" install || die "emake install failed" |
| 245 | popd > /dev/null |
446 | popd > /dev/null |
| 246 | |
447 | |
|
|
448 | # Move docs installed by autotools (in EAPI < 4). |
|
|
449 | if [[ ${EAPI} == [23] ]] \ |
|
|
450 | && path_exists "${D}${EPREFIX}"/usr/share/doc/${PF}/*; then |
|
|
451 | if [[ $(find "${D}${EPREFIX}"/usr/share/doc/${PF}/* -type d) ]]; then |
|
|
452 | eqawarn "autotools-utils: directories in docdir require at least EAPI 4" |
|
|
453 | else |
|
|
454 | mkdir "${T}"/temp-docdir |
|
|
455 | mv "${D}${EPREFIX}"/usr/share/doc/${PF}/* "${T}"/temp-docdir/ \ |
|
|
456 | || die "moving docs to tempdir failed" |
|
|
457 | |
|
|
458 | dodoc "${T}"/temp-docdir/* || die "docdir dodoc failed" |
|
|
459 | rm -r "${T}"/temp-docdir || die |
|
|
460 | fi |
|
|
461 | fi |
|
|
462 | |
|
|
463 | # XXX: support installing them from builddir as well? |
|
|
464 | if [[ ${DOCS} ]]; then |
|
|
465 | dodoc "${DOCS[@]}" || die "dodoc failed" |
|
|
466 | else |
|
|
467 | local f |
|
|
468 | # same list as in PMS |
|
|
469 | for f in README* ChangeLog AUTHORS NEWS TODO CHANGES \ |
|
|
470 | THANKS BUGS FAQ CREDITS CHANGELOG; do |
|
|
471 | if [[ -s ${f} ]]; then |
|
|
472 | dodoc "${f}" || die "(default) dodoc ${f} failed" |
|
|
473 | fi |
|
|
474 | done |
|
|
475 | fi |
|
|
476 | if [[ ${HTML_DOCS} ]]; then |
|
|
477 | dohtml -r "${HTML_DOCS[@]}" || die "dohtml failed" |
|
|
478 | fi |
|
|
479 | |
| 247 | # Remove libtool files and unnecessary static libs |
480 | # Remove libtool files and unnecessary static libs |
| 248 | local args |
|
|
| 249 | has static-libs ${IUSE//+} && ! use static-libs || args='none' |
|
|
| 250 | remove_libtool_files ${args} |
481 | remove_libtool_files |
| 251 | } |
482 | } |
| 252 | |
483 | |
| 253 | # @FUNCTION: autotools-utils_src_test |
484 | # @FUNCTION: autotools-utils_src_test |
| 254 | # @DESCRIPTION: |
485 | # @DESCRIPTION: |
| 255 | # The autotools src_test function. Runs emake check in build directory. |
486 | # The autotools src_test function. Runs emake check in build directory. |