blob: 9c72d6b646b530f24f2b702fc2cfb9f713b7b87b (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-sports/vdrift/vdrift-20080805.ebuild,v 1.2 2009/02/24 00:45:11 mr_bones_ Exp $
EAPI=2
inherit eutils games
MY_P=${PN}-${PV:0:4}-${PV:4:2}-${PV:6}
DESCRIPTION="A driving simulation made with drift racing in mind"
HOMEPAGE="http://vdrift.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}-src.tar.bz2"
LICENSE="GPL-2 ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nls"
RDEPEND="virtual/opengl
virtual/glu
media-libs/glew
media-libs/freealut
media-libs/libsdl
media-libs/openal
media-libs/sdl-gfx
media-libs/sdl-image
media-libs/sdl-net
media-libs/libvorbis
nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
dev-util/ftjam
dev-util/scons
nls? ( sys-devel/gettext )"
S=${WORKDIR}/${PN}-${PV:4:2}-${PV:6:2}-${PV:2:2}
src_prepare() {
sed -i \
-e '/-O2/ s/\(\[.*\]\)/[]/' \
SConstruct \
|| die "sed failed"
sed -i \
-e '/C++FLAGS/s/$(COMPILER.CFLAGS)//' \
bullet-2.66/mk/jam/variant.jam \
|| die "sed failed"
}
src_compile() {
local sconsopts=$(echo "${MAKEOPTS}" | sed -e "s/.*\(-j[0-9]\+\).*/\1/")
cd bullet-2.66
./configure
jam bulletcollision bulletmath || die
cd "${S}"
scons \
${sconsopts} \
NLS=$(use nls && echo 1 || echo 0) \
destdir="${D}" \
bindir="${GAMES_BINDIR}" \
datadir="${GAMES_DATADIR}"/${PN} \
localedir=/usr/share/locale \
prefix= \
use_binreloc=0 \
release=1 \
os_cc=1 \
os_cxx=1 \
os_cxxflags=1 \
|| die "scons failed"
}
src_install() {
dogamesbin build/vdrift || die "dogamesbin failed"
insinto "${GAMES_DATADIR}/${PN}"
doins -r data/* || die "doins failed"
newicon data/textures/icons/vdrift-64x64.png ${PN}.png
make_desktop_entry ${PN} VDrift
dodoc docs/*
find "${D}" -name "SCon*" -exec rm \{\} +
cd "${D}"
keepdir $(find "${GAMES_DATADIR/\//}/${PN}" -type d -empty)
prepgamesdirs
}
|