| 1 | # Copyright 1999-2012 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.11 2012/06/07 05:02:33 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/waf-utils.eclass,v 1.14 2012/09/27 16:35:42 axs 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: |
| … | |
… | |
| 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 multiprocessing |
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|5|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 | |
24 | |
| 25 | # Python with threads is required to run waf. We do not know which python slot |
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 |
26 | # is being used as the system interpreter, so we are forced to block all |