blob: 6176c17cc4a0f2fbeceeb446082f403ae27fdace (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-sports/trigger/trigger-0.5.1.ebuild,v 1.2 2004/12/19 08:38:37 blubb Exp $
inherit games
PSOURCE="${P}-src"
PDATA="${P}-data"
DESCRIPTION="free OpenGL rally car racing game"
HOMEPAGE="http://www.positro.net/trigger/"
SRC_URI="http://files.scapecaster.com/posit/${PSOURCE}.tar.bz2
http://files.scapecaster.com/posit/${PDATA}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64"
IUSE=""
RDEPEND="virtual/x11
virtual/opengl
>=media-libs/libsdl-1.2.5
>=media-libs/sdl-image-1.2
media-libs/openal
dev-games/physfs"
DEPEND="${RDEPEND}
dev-util/jam"
S="${WORKDIR}/${PSOURCE}"
src_compile() {
egamesconf --datadir="${GAMES_DATADIR}/${PN}" || die
jam || "jam failed"
}
src_install() {
dogamesbin trigger || die "dogamesbin failed"
dodir "${GAMES_DATADIR}/${PN}"
cp -r ../${PDATA}/{events,maps,plugins,sounds,textures,vehicles,trigger.config.defs} \
"${D}${GAMES_DATADIR}/${PN}" \
|| die "cp failed"
dodoc ../${PDATA}/{README.txt,README-stereo.txt}
prepgamesdirs
}
|