blob: f9d712a866f722bf2a549c35224645ed390540bb (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/soya/soya-0.9.2.ebuild,v 1.3 2005/05/08 23:43:34 vapier Exp $
inherit distutils
MY_P=${P/soya/Soya}
DESCRIPTION="A high-level 3D engine for Python, designed with games in mind"
HOMEPAGE="http://oomadness.tuxfamily.org/en/soya/"
SRC_URI="http://download.gna.org/soya/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE="ode"
# Documented to need PIL (imaging) and pyrex
# pyrex isn't actually needed for normal building of non-cvs.
# Versions are based off soya 0.6 ebuild; they're mainly undocumented.
DEPEND="virtual/x11
virtual/opengl
>=dev-lang/python-2.2.2
>=media-libs/libsdl-1.2.4
>=media-libs/sdl-gfx-2.0.3
>=media-libs/sdl-image-1.2.2
>=media-libs/sdl-mixer-1.2.4
>=media-libs/sdl-net-1.2.4
>=media-libs/sdl-sound-0.1.5
>=media-libs/cal3d-0.9
>=media-libs/libpng-1.2.5
>=media-libs/freetype-2.1.5
ode? ( >=dev-games/ode-0.5 )
dev-python/imaging"
RDEPEND="${DEPEND}
>=dev-python/editobj-0.3.1"
S=${WORKDIR}/${MY_P}
src_compile() {
if ! use ode; then
sed -i -e "s/^\(USE_ODE = \).*$/\1False/" setup.py || die "sed install.py failed"
fi
distutils_src_compile
}
|