blob: 97f94d5244a5989904467a614626e41e4fd69294 (
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
76
77
78
79
80
81
82
83
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-games/newton/newton-1.53.ebuild,v 1.1 2006/09/06 19:29:19 wolf31o2 Exp $
DESCRIPTION="an integrated solution for real time simulation of physics environments"
HOMEPAGE="http://www.physicsengine.com/"
SRC_URI="http://www.physicsengine.com/downloads/${PN}Linux-${PV}.tar.gz
http://www.newtondynamics.com/downloads/${PN}Linux-${PV}.tar.gz"
LICENSE="newton"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc"
RDEPEND="doc? (
|| (
(
x11-libs/libXmu
x11-libs/libXi )
virtual/x11 )
virtual/opengl
virtual/glut )"
DEPEND="${RDEPEND}"
S=${WORKDIR}/newtonSDK
src_unpack() {
unpack ${A}
cd "${S}"
if use doc; then
cd samples
rm -rf gl
sed -i \
-e "s:-I ../gl:-I /usr/include/GL:" \
tutorial_05_UsingJoints/makefile \
tutorial_09_SimpleVehicle/makefile \
tutorial_04_IntroductionToMaterials/makefile \
tutorial_10_CustomJoints/makefile \
tutorial_01_GettingStarted/makefile \
tutorial_02_UsingCallbacks/makefile \
tutorial_08_HeightFieldCollision/makefile \
tutorial_07_CharaterController/makefile \
tutorial_06_UtilityFuntionality/makefile \
tutorial_03_UsingCollisionTree/makefile \
|| die "failed fixing sample makefiles"
# This is commented out because this thing simply does not compile
# with lots of other CFLAGS and I've been unable to determine exactly
# what is causing it to fail, but even CFLAGS="-O2" fails.
# sed -i \
# -e "s:^FLAGS = -g -O0 -c -Wall:FLAGS = ${CFLAGS}:" \
# makefile
fi
}
src_compile() {
if use doc; then
cd samples
emake || die "emake samples failed"
fi
}
src_install() {
dolib sdk/libNewton.a
insinto /usr/include
doins sdk/Newton.h
if use doc; then
find samples -name \*.elf | xargs rm
find samples -name \*.o | xargs rm
insinto /usr/share/${PN}
doins -r `ls --ignore=bin samples/*`
exeinto /usr/share/${PN}/bin
dobin samples/bin/tutorial_*
fi
chmod -x doc/*
dodoc doc/*
prepgamesdirs
}
|