blob: 98197840b71a1108ca4b40e8208b0b70ca2fec2e (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
E_CYTHON=1
SUPPORT_PYTHON_ABIS=1
RESTRICT_PYTHON_ABIS="3.*"
ESVN_SUB_PROJECT="BINDINGS/python"
inherit enlightenment
DESCRIPTION="Python bindings for EVAS library"
HOMEPAGE="http://www.enlightenment.org/"
LICENSE="LGPL-2.1"
IUSE="static-libs"
RDEPEND=">=media-libs/evas-9999"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9.0"
src_prepare() {
enlightenment_src_prepare
python_copy_sources
}
src_configure() {
python_execute_function -s enlightenment_src_configure
}
src_compile() {
python_execute_function -s enlightenment_src_compile
}
src_install() {
python_execute_function -s enlightenment_src_install
}
|