blob: 17905f84fc6f66a9590291fa3cfdfeb5ceb4ca4e (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-sports/trigger/trigger-0.5.1c.ebuild,v 1.3 2005/07/30 05:48:28 vapier Exp $
inherit eutils 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="~amd64 ~ppc x86"
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_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-glx-check.patch
}
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
}
pkg_postinst() {
games_pkg_postinst
einfo "After running ${PN} for the first time, a config file is"
einfo "available in ~/.trigger/trigger.config"
echo
}
|