blob: ca458e33d920a6623d40530d0022f6b480c09ab7 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/abuse_sdl/abuse_sdl-0.7.0-r3.ebuild,v 1.2 2007/05/19 11:24:53 tupone Exp $
inherit eutils games
DESCRIPTION="port of Abuse by Crack Dot Com"
HOMEPAGE="http://www.labyrinth.net.au/~trandor/abuse/"
SRC_URI="http://www.labyrinth.net.au/~trandor/abuse/files/${P}.tar.bz2
http://www.labyrinth.net.au/~trandor/abuse/files/abuse_datafiles.tar.gz
mirror://gentoo/${P}-patch_debian.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
RDEPEND=">=media-libs/libsdl-1.1.6"
DEPEND="${RDEPEND}
x11-libs/libXt
virtual/opengl"
DATA="${WORKDIR}/datafiles"
src_unpack() {
cd ${WORKDIR}
unpack ${P}.tar.bz2
unpack ${P}-patch_debian.tar.bz2
mkdir ${DATA}
cd ${DATA}
unpack abuse_datafiles.tar.gz
cd "${S}"
epatch ../${PN}-patch/*
sed -i -e "s:/var/games:${GAMES_DATADIR}:" \
src/sdlport/setup.cpp
# hard-coded path in the default config writer.
sed -i \
-e "s:/usr/local/share/games/abuse:${GAMES_DATADIR}/abuse:" \
src/sdlport/setup.cpp || die "sed src/sdlport/setup.cpp failed"
}
src_compile() {
egamesconf --datadir="${GAMES_DATADIR_BASE}" || die
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS ChangeLog README TODO
cd ${DATA}
dodir ${GAMES_DATADIR}/abuse
cp -R * ${D}/${GAMES_DATADIR}/abuse
#fix for #10573 + #11475 ... stupid hippy bug
cd ${D}/${GAMES_DATADIR}/abuse
epatch ${FILESDIR}/stupid-fix.patch
newicon abuse.png ${PN}.png
make_desktop_entry abuse.sdl "Abuse SDL" ${PN}.png
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
elog "NOTE: If you had previous version of abuse installed"
elog "you may need to remove ~/.abuse for the game to work correctly."
}
|