blob: 2c87e82d8569ce40ee7a6946ba8887f900aaa46e (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/excido/excido-0.1.2.ebuild,v 1.5 2004/07/14 14:22:38 agriffis Exp $
inherit games
DESCRIPTION="A fast paced action game"
HOMEPAGE="http://icculus.org/excido/"
SRC_URI="http://icculus.org/excido/${P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="x86"
IUSE=""
SLOT="0"
DEPEND="dev-games/physfs
media-libs/libsdl
media-libs/sdl-mixer
media-libs/sdl-ttf
media-libs/sdl-image"
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e "s:\"helmetr.ttf\":\"${GAMES_DATADIR}/${PN}/helmetr.ttf\":" src/Camera.cpp || \
die "sed Camera.cpp failed"
sed -i \
-e "s:\"helmetr.ttf\":\"${GAMES_DATADIR}/${PN}/helmetr.ttf\":" src/Menu.cpp || \
die "sed Menu.cpp failed"
sed -i \
-e "s:\"data\":\"${GAMES_DATADIR}/${PN}\":" src/main.cpp || \
die "sed main.cpp failed"
sed -i \
-e "s/-Wall .*/${CXXFLAGS}/" Makefile || \
die "sed Makefile failed"
}
src_install() {
dogamesbin excido
dodir ${GAMES_DATADIR}/${PN}
cp helmetr.ttf data/*.{wav,png} ${D}${GAMES_DATADIR}/${PN}
dodoc excido.conf BUGS CHANGELOG HACKING INSTALL README RELNOTES* \
keyguide.txt data/CREDITS data/*.txt
prepgamesdirs
}
pkg_postinst() {
einfo "${PN} will look for a excido.conf in the current directory but"
einfo "it isn't necessary to play the game. An example file is located"
einfo "in /usr/share/doc/${P}"
games_pkg_postinst
}
|