| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2010 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.2 2011/01/13 18:43:58 scarabeus Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/waf-utils.eclass,v 1.3 2011/01/16 08:36:35 scarabeus 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 | # |
| … | |
… | |
| 14 | # @DESCRIPTION: |
14 | # @DESCRIPTION: |
| 15 | # The waf-utils eclass contains functions that make creating ebuild for |
15 | # The waf-utils eclass contains functions that make creating ebuild for |
| 16 | # waf-based packages much easier. |
16 | # waf-based packages much easier. |
| 17 | # Its main features are support of common portage default settings. |
17 | # Its main features are support of common portage default settings. |
| 18 | |
18 | |
| 19 | inherit base eutils multilib python |
19 | inherit base eutils multilib |
| 20 | |
20 | |
| 21 | case ${EAPI:-0} in |
21 | case ${EAPI:-0} in |
| 22 | 4|3|2) EXPORT_FUNCTIONS pkg_setup src_configure src_compile src_install ;; |
22 | 4|3|2) EXPORT_FUNCTIONS pkg_setup src_configure src_compile src_install ;; |
| 23 | *) die "EAPI=${EAPI} is not supported" ;; |
23 | *) die "EAPI=${EAPI} is not supported" ;; |
| 24 | esac |
24 | esac |
| … | |
… | |
| 27 | # @DESCRIPTION: |
27 | # @DESCRIPTION: |
| 28 | # General function for configuring with waf. |
28 | # General function for configuring with waf. |
| 29 | waf-utils_pkg_setup() { |
29 | waf-utils_pkg_setup() { |
| 30 | debug-print-function ${FUNCNAME} "$@" |
30 | debug-print-function ${FUNCNAME} "$@" |
| 31 | |
31 | |
| 32 | python_set_active_version 2 |
|
|
| 33 | |
|
|
| 34 | # @ECLASS-VARIABLE: WAF_BINARY |
32 | # @ECLASS-VARIABLE: WAF_BINARY |
| 35 | # @DESCRIPTION: |
33 | # @DESCRIPTION: |
| 36 | # Eclass can use different waf executable. Usually it is located in "${S}/waf". |
34 | # Eclass can use different waf executable. Usually it is located in "${S}/waf". |
| 37 | : ${WAF_BINARY:="${S}/waf"} |
35 | : ${WAF_BINARY:="${S}/waf"} |
| 38 | } |
36 | } |
| … | |
… | |
| 40 | # @FUNCTION: waf-utils_src_configure |
38 | # @FUNCTION: waf-utils_src_configure |
| 41 | # @DESCRIPTION: |
39 | # @DESCRIPTION: |
| 42 | # General function for configuring with waf. |
40 | # General function for configuring with waf. |
| 43 | waf-utils_src_configure() { |
41 | waf-utils_src_configure() { |
| 44 | debug-print-function ${FUNCNAME} "$@" |
42 | debug-print-function ${FUNCNAME} "$@" |
|
|
43 | |
|
|
44 | # sometimes people forget to run pkg_setup from this eclass |
|
|
45 | # instead of having the variable empty lets try to get it once more |
|
|
46 | : ${WAF_BINARY:="${S}/waf"} |
| 45 | |
47 | |
| 46 | echo "CCFLAGS=\"${CFLAGS}\" LINKFLAGS=\"${LDFLAGS}\" \"${WAF_BINARY}\" --prefix=/usr --libdir=/usr/$(get_libdir) $@ configure" |
48 | echo "CCFLAGS=\"${CFLAGS}\" LINKFLAGS=\"${LDFLAGS}\" \"${WAF_BINARY}\" --prefix=/usr --libdir=/usr/$(get_libdir) $@ configure" |
| 47 | |
49 | |
| 48 | CCFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" "${WAF_BINARY}" \ |
50 | CCFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" "${WAF_BINARY}" \ |
| 49 | --prefix=/usr \ |
51 | --prefix=/usr \ |