blob: 9edc822d8ee068dbb2e09df54666d8031336a04d (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/blobwars/blobwars-0.5.ebuild,v 1.2 2004/04/29 19:42:11 agriffis Exp $
inherit games
DESCRIPTION="Platform game about a blob and his quest to rescue MIAs from an alien invader"
HOMEPAGE="http://www.parallelrealities.co.uk/blobWars.php"
# download page has a lame PHP thing.
SRC_URI="mirror://gentoo/${P}-1.tar.gz"
KEYWORDS="x86 ~alpha"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
DEPEND=">=media-libs/libsdl-1.2.5
media-libs/sdl-mixer
media-libs/sdl-ttf
media-libs/sdl-image
dev-libs/zziplib"
src_compile() {
emake \
BINDIR="${GAMES_BINDIR}/" \
DATADIR="${GAMES_DATADIR}/parallelrealities/" \
DOCDIR="/usr/share/doc/${PF}/" \
ICONDIR="/usr/share/icons/" \
KDE="/usr/share/applnk/Games/Arcade/" \
GNOME="/usr/share/gnome/apps/Games/" || die "emake failed"
}
src_install() {
make \
BINDIR="${D}/${GAMES_BINDIR}/" \
DATADIR="${D}/${GAMES_DATADIR}/parallelrealities/" \
DOCDIR="${D}/usr/share/doc/${PF}/" \
ICONDIR="${D}/usr/share/icons/" \
KDE="${D}/usr/share/applnk/Games/Arcade/" \
GNOME="${D}/usr/share/gnome/apps/Games/" \
install || die "make install failed"
# now make the docs Gentoo friendly.
dohtml ${D}/usr/share/doc/${P}/* || die "dohtml failed"
dodoc ${D}/usr/share/doc/${P}/README || die "dodoc failed"
rm -f ${D}/usr/share/doc/${P}/*.{png,gif,html} \
${D}/usr/share/doc/${P}/{README,LICENSE}
prepgamesdirs
}
|