blob: 55504a8c5009ab9d200d3cb5cdbb3e2ff43bc414 (
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
|
# 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.3.ebuild,v 1.7 2004/06/24 22:04:58 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"
SLOT="0"
KEYWORDS="x86 ~alpha ~amd64"
IUSE=""
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/Visual.cpp || \
die "sed Visual.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 BUGS CHANGELOG HACKING INSTALL README RELNOTES* TODO \
keyguide.txt data/CREDITS data/*.txt
prepgamesdirs
}
|