blob: a8c8f22d29d20d7c5065d696dd3c51a86758d1d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_5 python3_6 )
PYTHON_REQ_USE="threads(+)"
inherit python-any-r1 toolchain-funcs
DESCRIPTION="piece of software used to help building software projects"
HOMEPAGE="https://waf.io/"
SRC_URI="https://waf.io/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="examples"
DEPEND="${PYTHON_DEPS}"
DOCS="ChangeLog README.md DEVEL"
src_prepare() {
rm -v waf || die
default
}
src_configure() {
${EPYTHON} ./waf-light configure
}
src_compile() {
${EPYTHON} ./waf-light build
}
src_install() {
default
#point waf binary to waflib dir and strip payload
sed -e "/INSTALL=/s:=.*:='${EROOT}usr':" \
-e "/REVISION=/s:=.*:='${PR}':" \
-e "s:/lib/:/$(get_libdir)/:" \
-e "/^#\(==>\|BZ\|<==\)/d" \
-i waf || die
dobin waf
insinto /usr/$(get_libdir)/${PN}3-${PV}-${PR}
doins -r waflib
if use examples ; then
dodoc -r demos
fi
}
|