blob: eac4dbc12f265111a51e8397d09aaa9817e5501d (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
# FIXME: MakeSwig.py execution should be made work from pyfltk-1.1.5.ebuild
EAPI=5
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE="threads(+)"
inherit distutils-r1 flag-o-matic
MY_P=pyFltk-${PV}
DESCRIPTION="Python interface to Fltk library"
HOMEPAGE="http://pyfltk.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 arm ppc ppc64 x86"
IUSE="doc"
DEPEND=">=x11-libs/fltk-1.3.0:1[opengl]"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
PATCHES=(
"${FILESDIR}"/${P}-linux-3.x-detection.patch
"${FILESDIR}"/${P}-format-security.patch
"${FILESDIR}"/ignore-func.patch
"${FILESDIR}"/fltk_wrap.patch
)
python_prepare_all() {
# Disable installation of documentation and tests.
sed -i -e '/package_data=/d' setup.py || die
distutils-r1_python_prepare_all
}
python_configure_all() {
append-flags -fno-strict-aliasing
}
python_install_all() {
use doc && local HTML_DOCS=( fltk/docs/. )
distutils-r1_python_install_all
}
|