| 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/waf-utils.eclass,v 1.8 2012/04/15 20:15:39 vapier 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 | # @AUTHOR: |
8 | # @AUTHOR: |
| … | |
… | |
| 13 | # @DESCRIPTION: |
13 | # @DESCRIPTION: |
| 14 | # The waf-utils eclass contains functions that make creating ebuild for |
14 | # The waf-utils eclass contains functions that make creating ebuild for |
| 15 | # waf-based packages much easier. |
15 | # waf-based packages much easier. |
| 16 | # Its main features are support of common portage default settings. |
16 | # Its main features are support of common portage default settings. |
| 17 | |
17 | |
| 18 | inherit base eutils multilib toolchain-funcs |
18 | inherit base eutils multilib toolchain-funcs multiprocessing |
| 19 | |
19 | |
| 20 | case ${EAPI:-0} in |
20 | case ${EAPI:-0} in |
| 21 | 4|3) EXPORT_FUNCTIONS src_configure src_compile src_install ;; |
21 | 4|3) EXPORT_FUNCTIONS src_configure src_compile src_install ;; |
| 22 | *) die "EAPI=${EAPI} is not supported" ;; |
22 | *) die "EAPI=${EAPI} is not supported" ;; |
| 23 | 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]" |
| 24 | |
31 | |
| 25 | # @FUNCTION: waf-utils_src_configure |
32 | # @FUNCTION: waf-utils_src_configure |
| 26 | # @DESCRIPTION: |
33 | # @DESCRIPTION: |
| 27 | # General function for configuring with waf. |
34 | # General function for configuring with waf. |
| 28 | waf-utils_src_configure() { |
35 | waf-utils_src_configure() { |
| … | |
… | |
| 47 | # @DESCRIPTION: |
54 | # @DESCRIPTION: |
| 48 | # General function for compiling with waf. |
55 | # General function for compiling with waf. |
| 49 | waf-utils_src_compile() { |
56 | waf-utils_src_compile() { |
| 50 | debug-print-function ${FUNCNAME} "$@" |
57 | debug-print-function ${FUNCNAME} "$@" |
| 51 | |
58 | |
| 52 | local jobs=$(makeopts_jobs) |
59 | local jobs="--jobs=$(makeopts_jobs)" |
| 53 | echo "\"${WAF_BINARY}\" build ${jobs}" |
60 | echo "\"${WAF_BINARY}\" build ${jobs}" |
| 54 | "${WAF_BINARY}" ${jobs} || die "build failed" |
61 | "${WAF_BINARY}" ${jobs} || die "build failed" |
| 55 | } |
62 | } |
| 56 | |
63 | |
| 57 | # @FUNCTION: waf-utils_src_install |
64 | # @FUNCTION: waf-utils_src_install |