blob: f5712567502bd251b17a3d8e0411b215896e90c3 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pyode/pyode-1.1.0.ebuild,v 1.4 2006/12/10 02:25:25 dirtyepic Exp $
inherit distutils
MY_P=${P/pyode/PyODE}
DESCRIPTION="python bindings to the ode physics engine"
HOMEPAGE="http://pyode.sourceforge.net/"
SRC_URI="mirror://sourceforge/pyode/${MY_P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
DEPEND="virtual/python
~dev-games/ode-0.5
>=dev-python/pyrex-0.9.4.1"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "s:#ODE_BASE = .*:ODE_BASE = '/usr/share/ode-0.5':" \
setup.py || die
# These files were generated with pyrex-0.9.3, which is incompatable with
# GCC-4.x. We delete them so they will be regenerated with
# >=pyrex-0.9.4.1. Bug #135029
rm ode_notrimesh.c ode_trimesh.c
}
src_install() {
distutils_src_install
# The build system doesnt error if it fails to build
# the ode library so we need our own sanity check
[[ -z $(find "${D}" -name ode.so) ]] && die "failed to build/install :("
}
|