| 1 |
# Copyright 1999-2012 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/waf-utils.eclass,v 1.14 2012/09/27 16:35:42 axs Exp $ |
| 4 |
|
| 5 |
# @ECLASS: waf-utils.eclass |
| 6 |
# @MAINTAINER: |
| 7 |
# gnome@gentoo.org |
| 8 |
# @AUTHOR: |
| 9 |
# Original Author: Gilles Dartiguelongue <eva@gentoo.org> |
| 10 |
# Various improvements based on cmake-utils.eclass: Tomáš Chvátal <scarabeus@gentoo.org> |
| 11 |
# Proper prefix support: Jonathan Callen <abcd@gentoo.org> |
| 12 |
# @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 |
inherit base eutils multilib toolchain-funcs multiprocessing |
| 19 |
|
| 20 |
case ${EAPI:-0} in |
| 21 |
4|5|3) EXPORT_FUNCTIONS src_configure src_compile src_install ;; |
| 22 |
*) die "EAPI=${EAPI} is not supported" ;; |
| 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]" |
| 31 |
|
| 32 |
# @ECLASS-VARIABLE: WAF_VERBOSE |
| 33 |
# @DESCRIPTION: |
| 34 |
# Set to OFF to disable verbose messages during compilation |
| 35 |
# this is _not_ meant to be set in ebuilds |
| 36 |
: ${WAF_VERBOSE:=ON} |
| 37 |
|
| 38 |
# @FUNCTION: waf-utils_src_configure |
| 39 |
# @DESCRIPTION: |
| 40 |
# General function for configuring with waf. |
| 41 |
waf-utils_src_configure() { |
| 42 |
debug-print-function ${FUNCNAME} "$@" |
| 43 |
|
| 44 |
# @ECLASS-VARIABLE: WAF_BINARY |
| 45 |
# @DESCRIPTION: |
| 46 |
# Eclass can use different waf executable. Usually it is located in "${S}/waf". |
| 47 |
: ${WAF_BINARY:="${S}/waf"} |
| 48 |
|
| 49 |
tc-export AR CC CPP CXX RANLIB |
| 50 |
echo "CCFLAGS=\"${CFLAGS}\" LINKFLAGS=\"${LDFLAGS}\" \"${WAF_BINARY}\" --prefix=${EPREFIX}/usr --libdir=${EPREFIX}/usr/$(get_libdir) $@ configure" |
| 51 |
|
| 52 |
CCFLAGS="${CFLAGS}" LINKFLAGS="${LDFLAGS}" "${WAF_BINARY}" \ |
| 53 |
"--prefix=${EPREFIX}/usr" \ |
| 54 |
"--libdir=${EPREFIX}/usr/$(get_libdir)" \ |
| 55 |
"$@" \ |
| 56 |
configure || die "configure failed" |
| 57 |
} |
| 58 |
|
| 59 |
# @FUNCTION: waf-utils_src_compile |
| 60 |
# @DESCRIPTION: |
| 61 |
# General function for compiling with waf. |
| 62 |
waf-utils_src_compile() { |
| 63 |
debug-print-function ${FUNCNAME} "$@" |
| 64 |
local _mywafconfig |
| 65 |
[[ "${WAF_VERBOSE}" ]] && _mywafconfig="--verbose" |
| 66 |
|
| 67 |
local jobs="--jobs=$(makeopts_jobs)" |
| 68 |
echo "\"${WAF_BINARY}\" build ${_mywafconfig} ${jobs}" |
| 69 |
"${WAF_BINARY}" ${_mywafconfig} ${jobs} || die "build failed" |
| 70 |
} |
| 71 |
|
| 72 |
# @FUNCTION: waf-utils_src_install |
| 73 |
# @DESCRIPTION: |
| 74 |
# Function for installing the package. |
| 75 |
waf-utils_src_install() { |
| 76 |
debug-print-function ${FUNCNAME} "$@" |
| 77 |
|
| 78 |
echo "\"${WAF_BINARY}\" --destdir=\"${D}\" install" |
| 79 |
"${WAF_BINARY}" --destdir="${D}" install || die "Make install failed" |
| 80 |
|
| 81 |
# Manual document installation |
| 82 |
base_src_install_docs |
| 83 |
} |