blob: 2a5ee9b4405333f6d5a33fc42ead91c8e08b8d20 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/rott/rott-1.0.ebuild,v 1.7 2005/09/16 01:19:49 mr_bones_ Exp $
inherit eutils games
DESCRIPTION="Rise of the Triad for Linux!"
HOMEPAGE="http://www.icculus.org/rott/"
SRC_URI="http://www.icculus.org/rott/releases/${P}.tar.gz
http://filesingularity.timedoctor.org/swdata.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE=""
RDEPEND="media-libs/libsdl
media-libs/sdl-mixer"
DEPEND="${RDEPEND}
app-arch/unzip"
S=${WORKDIR}/${P}/rott
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${PV}-custom-datapath.patch
}
src_compile() {
make clean || die
emake -j1 EXTRACFLAGS="${CFLAGS} -DDATADIR=\\\"${GAMES_DATADIR}/${PN}/\\\"" \
|| die "emake failed"
}
src_install() {
dogamesbin rott || die "dogamesbin failed"
dodoc *.txt ../{README,readme.txt}
cd "${WORKDIR}"
insinto "${GAMES_DATADIR}"/${PN}
doins *.dmo huntbgin.* remote1.rts || die "doins failed"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
einfo "The shareware version has been installed."
einfo "To play the full version, just copy the"
einfo "data files to ${GAMES_DATADIR}/${PN}/"
}
|