blob: c632ae01b727832e6f7d4b7930aac85f9d47ca88 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/viruskiller/viruskiller-1.0.ebuild,v 1.2 2006/06/23 05:07:59 mr_bones_ Exp $
inherit flag-o-matic games
DESCRIPTION="Simple arcade game, shoot'em up style, where you must defend your file system from invading viruses"
HOMEPAGE="http://www.parallelrealities.co.uk/virusKiller.php"
# download page has a lame PHP thing.
SRC_URI="mirror://gentoo/${P}-1.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND="media-libs/libsdl
media-libs/sdl-mixer
media-libs/sdl-image
media-libs/sdl-ttf"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e "/^ICONDIR = /s:icons:pixmaps:" \
-e "/^BINDIR = /s:/$:/bin/:" \
-e "/^DOCDIR = /s:doc/.*:doc/${PF}/html/:" \
-e "/^\(KDE\|GNOME\) = /s:=.*:= \$(DESTDIR)/usr/share/applications:" \
-e "/strip/d" \
makefile \
|| die "sed failed"
rm -f doc/LICENSE
mv doc/README "${S}"
}
src_compile() {
append-flags -fsigned-char
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc README
prepgamesdirs
}
|