blob: 35dfa0ec5050faa0dee823bef29006eb9ce4fb24 (
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
55
56
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyfltk/pyfltk-1.1.5.ebuild,v 1.3 2010/06/24 11:17:14 angelos Exp $
EAPI="2"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
inherit eutils distutils
MY_P="pyFltk-${PV}"
DESCRIPTION="Python interface to Fltk library"
HOMEPAGE="http://pyfltk.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz
doc? ( http://junk.mikeasoft.com/pyfltkmanual.pdf )"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86"
IUSE="doc"
RDEPEND=">=x11-libs/fltk-1.1.9:1.1[opengl]"
DEPEND="${RDEPEND}
dev-lang/swig"
RESTRICT_PYTHON_ABIS="3.*"
S="${WORKDIR}/${MY_P}"
DOCS="CHANGES"
PYTHON_MODNAME="fltk"
src_prepare() {
rm -f python/fltk*
# move docs because the swig stuff will remove them
use doc && cp -r fltk fltk.docs
}
src_compile() {
pushd python > /dev/null
"$(PYTHON -f)" MakeSwig.py || die "swigging wrappers failed"
popd > /dev/null
distutils_src_compile
}
src_install() {
distutils_src_install --install-data /usr/share/doc/${PF}
if use doc; then
insinto /usr/share/doc/${PF}
doins "${DISTDIR}"/pyfltkmanual.pdf || die
dohtml fltk.docs/docs/* || die
doins -r fltk.docs/test || die
fi
}
|