blob: 0d159fc01f84d23b68ad309cc76876b4b44ca71b (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cgkit/cgkit-2.0.0_alpha9.ebuild,v 1.4 2011/01/08 11:45:39 fauli Exp $
EAPI="3"
PYTHON_DEPEND="2"
inherit distutils
MY_P="${P/_/}"
DESCRIPTION="Python library for creating 3D images"
HOMEPAGE="http://cgkit.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
RDEPEND="dev-python/pyrex
dev-libs/boost[python]
dev-python/pyprotocols
dev-python/pyopengl
dev-python/pygame
dev-python/imaging
3ds? ( media-libs/lib3ds )"
DEPEND="${RDEPEND}
dev-util/scons"
LICENSE="LGPL-2.1 MPL-1.1 GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE="3ds"
S="${WORKDIR}/${MY_P}"
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
distutils_src_prepare
sed -i -e "s/fPIC/fPIC\",\"${CFLAGS// /\",\"}/" supportlib/SConstruct
cp config_template.cfg config.cfg
echo 'LIBS += ["GL", "GLU", "glut"]' >> config.cfg
if use 3ds; then
echo 'LIB3DS_AVAILABLE = True' >> config.cfg
fi
# Ogre viewer is no longer maintained by upstream
# bug 210731
#if use ogre; then
# echo 'OGRE_AVAILABLE = True' >> config.cfg
# echo 'INC_DIRS += ["/usr/include/OGRE"]' >> config.cfg
# echo 'MACROS += [("EXT_HASH", None),("GCC_3_1",None)]' >> config.cfg
# sed -i -e "s/#include <Math.h>//" wrappers/ogre/OgreCore.h
#fi
sed -i -e "s:INC_DIRS = \[\]:INC_DIRS = \['/usr/include'\]:" "${S}"/setup.py
sed -i -e "160s/as/as_/;168s/as/as_/" cgkit/flockofbirds.py
}
src_compile() {
pushd supportlib > /dev/null
scons ${MAKEOPTS}
popd > /dev/null
distutils_src_compile
}
src_test() {
cd unittests
# Remove failing tests due to non-existing files
rm test_maimport.py test_mayaascii.py test_mayabinary.py test_ri.py test_slparams.py
PYTHONPATH="$(ls -d ../build/lib*)" "$(PYTHON)" all.py || die "Tests failed"
}
|