| 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.12 2012/07/17 04:43:50 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: |
| … | |
… | |
| 39 | # @DESCRIPTION: |
39 | # @DESCRIPTION: |
| 40 | # Eclass can use different waf executable. Usually it is located in "${S}/waf". |
40 | # Eclass can use different waf executable. Usually it is located in "${S}/waf". |
| 41 | : ${WAF_BINARY:="${S}/waf"} |
41 | : ${WAF_BINARY:="${S}/waf"} |
| 42 | |
42 | |
| 43 | tc-export AR CC CPP CXX RANLIB |
43 | tc-export AR CC CPP CXX RANLIB |
| 44 | |
|
|
| 45 | # Make sure this waf supports --libdir #412133 |
|
|
| 46 | if "${WAF_BINARY}" --help | grep -q -e--libdir ; then |
|
|
| 47 | set -- "--libdir=${EPREFIX}/usr/$(get_libdir)" "$@" |
|
|
| 48 | fi |
|
|
| 49 | echo "CCFLAGS=\"${CFLAGS}\" LINKFLAGS=\"${LDFLAGS}\" \"${WAF_BINARY}\" --prefix=${EPREFIX}/usr $@ configure" |
44 | echo "CCFLAGS=\"${CFLAGS}\" LINKFLAGS=\"${LDFLAGS}\" \"${WAF_BINARY}\" --prefix=${EPREFIX}/usr --libdir=${EPREFIX}/usr/$(get_libdir) $@ configure" |
| 50 | |
45 | |
| 51 | CCFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" "${WAF_BINARY}" \ |
46 | CCFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" "${WAF_BINARY}" \ |
| 52 | "--prefix=${EPREFIX}/usr" \ |
47 | "--prefix=${EPREFIX}/usr" \ |
|
|
48 | "--libdir=${EPREFIX}/usr/$(get_libdir)" \ |
| 53 | "$@" \ |
49 | "$@" \ |
| 54 | configure || die "configure failed" |
50 | configure || die "configure failed" |
| 55 | } |
51 | } |
| 56 | |
52 | |
| 57 | # @FUNCTION: waf-utils_src_compile |
53 | # @FUNCTION: waf-utils_src_compile |