| 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/waf-utils.eclass,v 1.6 2011/08/09 18:53:06 jer Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/waf-utils.eclass,v 1.13 2012/07/20 01:37:43 vapier Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: waf-utils.eclass |
5 | # @ECLASS: waf-utils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # gnome@gentoo.org |
7 | # gnome@gentoo.org |
| 8 | # |
8 | # @AUTHOR: |
| 9 | # @CODE |
|
|
| 10 | # Original Author: Gilles Dartiguelongue <eva@gentoo.org> |
9 | # Original Author: Gilles Dartiguelongue <eva@gentoo.org> |
| 11 | # Various improvements based on cmake-utils.eclass: Tomáš Chvátal <scarabeus@gentoo.org> |
10 | # Various improvements based on cmake-utils.eclass: Tomáš Chvátal <scarabeus@gentoo.org> |
| 12 | # Proper prefix support: Jonathan Callen <abcd@gentoo.org> |
11 | # Proper prefix support: Jonathan Callen <abcd@gentoo.org> |
| 13 | # @CODE |
|
|
| 14 | # @BLURB: common ebuild functions for waf-based packages |
12 | # @BLURB: common ebuild functions for waf-based packages |
| 15 | # @DESCRIPTION: |
13 | # @DESCRIPTION: |
| 16 | # The waf-utils eclass contains functions that make creating ebuild for |
14 | # The waf-utils eclass contains functions that make creating ebuild for |
| 17 | # waf-based packages much easier. |
15 | # waf-based packages much easier. |
| 18 | # Its main features are support of common portage default settings. |
16 | # Its main features are support of common portage default settings. |
| 19 | |
17 | |
| 20 | inherit base eutils multilib toolchain-funcs |
18 | inherit base eutils multilib toolchain-funcs multiprocessing |
| 21 | |
19 | |
| 22 | case ${EAPI:-0} in |
20 | case ${EAPI:-0} in |
| 23 | 4|3) EXPORT_FUNCTIONS src_configure src_compile src_install ;; |
21 | 4|3) EXPORT_FUNCTIONS src_configure src_compile src_install ;; |
| 24 | *) die "EAPI=${EAPI} is not supported" ;; |
22 | *) die "EAPI=${EAPI} is not supported" ;; |
| 25 | esac |
23 | esac |
|
|
24 | |
|
|
25 | # Python with threads is required to run waf. We do not know which python slot |
|
|
26 | # is being used as the system interpreter, so we are forced to block all |
|
|
27 | # slots that have USE=-threads. |
|
|
28 | DEPEND="${DEPEND} |
|
|
29 | dev-lang/python |
|
|
30 | !dev-lang/python[-threads]" |
| 26 | |
31 | |
| 27 | # @FUNCTION: waf-utils_src_configure |
32 | # @FUNCTION: waf-utils_src_configure |
| 28 | # @DESCRIPTION: |
33 | # @DESCRIPTION: |
| 29 | # General function for configuring with waf. |
34 | # General function for configuring with waf. |
| 30 | waf-utils_src_configure() { |
35 | waf-utils_src_configure() { |
| … | |
… | |
| 49 | # @DESCRIPTION: |
54 | # @DESCRIPTION: |
| 50 | # General function for compiling with waf. |
55 | # General function for compiling with waf. |
| 51 | waf-utils_src_compile() { |
56 | waf-utils_src_compile() { |
| 52 | debug-print-function ${FUNCNAME} "$@" |
57 | debug-print-function ${FUNCNAME} "$@" |
| 53 | |
58 | |
| 54 | local jobs=$(echo -j1 ${MAKEOPTS} | sed -r "s/.*(-j\s*|--jobs=)([0-9]+).*/--jobs=\2/" ) |
59 | local jobs="--jobs=$(makeopts_jobs)" |
| 55 | echo "\"${WAF_BINARY}\" build ${jobs}" |
60 | echo "\"${WAF_BINARY}\" build ${jobs}" |
| 56 | "${WAF_BINARY}" ${jobs} || die "build failed" |
61 | "${WAF_BINARY}" ${jobs} || die "build failed" |
| 57 | } |
62 | } |
| 58 | |
63 | |
| 59 | # @FUNCTION: waf-utils_src_install |
64 | # @FUNCTION: waf-utils_src_install |