1 |
ssuominen |
1.9 |
# Copyright 1999-2012 Gentoo Foundation |
2 |
eva |
1.1 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
vapier |
1.12 |
# $Header: /var/cvsroot/gentoo-x86/eclass/waf-utils.eclass,v 1.11 2012/06/07 05:02:33 vapier Exp $ |
4 |
eva |
1.1 |
|
5 |
|
|
# @ECLASS: waf-utils.eclass |
6 |
|
|
# @MAINTAINER: |
7 |
|
|
# gnome@gentoo.org |
8 |
vapier |
1.7 |
# @AUTHOR: |
9 |
eva |
1.1 |
# Original Author: Gilles Dartiguelongue <eva@gentoo.org> |
10 |
scarabeus |
1.2 |
# Various improvements based on cmake-utils.eclass: Tomáš Chvátal <scarabeus@gentoo.org> |
11 |
abcd |
1.5 |
# Proper prefix support: Jonathan Callen <abcd@gentoo.org> |
12 |
eva |
1.1 |
# @BLURB: common ebuild functions for waf-based packages |
13 |
|
|
# @DESCRIPTION: |
14 |
|
|
# The waf-utils eclass contains functions that make creating ebuild for |
15 |
|
|
# waf-based packages much easier. |
16 |
|
|
# Its main features are support of common portage default settings. |
17 |
|
|
|
18 |
vapier |
1.11 |
inherit base eutils multilib toolchain-funcs multiprocessing |
19 |
eva |
1.1 |
|
20 |
|
|
case ${EAPI:-0} in |
21 |
scarabeus |
1.4 |
4|3) EXPORT_FUNCTIONS src_configure src_compile src_install ;; |
22 |
eva |
1.1 |
*) die "EAPI=${EAPI} is not supported" ;; |
23 |
|
|
esac |
24 |
|
|
|
25 |
tetromino |
1.10 |
# 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]" |
31 |
|
|
|
32 |
eva |
1.1 |
# @FUNCTION: waf-utils_src_configure |
33 |
|
|
# @DESCRIPTION: |
34 |
|
|
# General function for configuring with waf. |
35 |
scarabeus |
1.4 |
waf-utils_src_configure() { |
36 |
scarabeus |
1.2 |
debug-print-function ${FUNCNAME} "$@" |
37 |
|
|
|
38 |
|
|
# @ECLASS-VARIABLE: WAF_BINARY |
39 |
|
|
# @DESCRIPTION: |
40 |
|
|
# Eclass can use different waf executable. Usually it is located in "${S}/waf". |
41 |
|
|
: ${WAF_BINARY:="${S}/waf"} |
42 |
scarabeus |
1.3 |
|
43 |
jer |
1.6 |
tc-export AR CC CPP CXX RANLIB |
44 |
vapier |
1.12 |
|
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" |
50 |
scarabeus |
1.2 |
|
51 |
|
|
CCFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" "${WAF_BINARY}" \ |
52 |
abcd |
1.5 |
"--prefix=${EPREFIX}/usr" \ |
53 |
|
|
"$@" \ |
54 |
eva |
1.1 |
configure || die "configure failed" |
55 |
|
|
} |
56 |
|
|
|
57 |
|
|
# @FUNCTION: waf-utils_src_compile |
58 |
|
|
# @DESCRIPTION: |
59 |
|
|
# General function for compiling with waf. |
60 |
|
|
waf-utils_src_compile() { |
61 |
|
|
debug-print-function ${FUNCNAME} "$@" |
62 |
|
|
|
63 |
ssuominen |
1.9 |
local jobs="--jobs=$(makeopts_jobs)" |
64 |
scarabeus |
1.2 |
echo "\"${WAF_BINARY}\" build ${jobs}" |
65 |
|
|
"${WAF_BINARY}" ${jobs} || die "build failed" |
66 |
eva |
1.1 |
} |
67 |
|
|
|
68 |
|
|
# @FUNCTION: waf-utils_src_install |
69 |
|
|
# @DESCRIPTION: |
70 |
|
|
# Function for installing the package. |
71 |
|
|
waf-utils_src_install() { |
72 |
|
|
debug-print-function ${FUNCNAME} "$@" |
73 |
scarabeus |
1.2 |
|
74 |
abcd |
1.5 |
echo "\"${WAF_BINARY}\" --destdir=\"${D}\" install" |
75 |
|
|
"${WAF_BINARY}" --destdir="${D}" install || die "Make install failed" |
76 |
eva |
1.1 |
|
77 |
|
|
# Manual document installation |
78 |
scarabeus |
1.2 |
base_src_install_docs |
79 |
eva |
1.1 |
} |