Portage is a package management system used by Gentoo Linux
# ChangeLog for games-fps/rott
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/games-fps/rott/ChangeLog,v 1.8 2007/07/22 13:10:50 nyhm Exp $
22 Jul 2007; Tristan Heaven
+files/rott-1.0-full-version.patch, rott-1.0.ebuild:
Add demo USE flag, bug #178443
12 Mar 2007; Marius Mauch
Replacing einfo with elog
06 May 2006;
files/1.0-custom-datapath.patch, rott-1.0.ebuild:
Fix for gcc-4.1
16 Sep 2005; Michael Sterrett
needs app-arch/unzip; tidy
05 Jan 2005;
Added to ~ppc.
*rott-1.0 (19 Jun 2003)
19 Jun 2003; Mike Frysinger
Initial import. Ebuild submitted by me.
AUX 1.0-custom-datapath.patch 1530 RMD160 656a997f4666380e3741a3c2467961dc703180d4 SHA1 fd08ec6714dbaf0dc6008bb42f5da748c8a415a3 SHA256 dc5b896b5b0ce890033147e12e679b374a0131712dde8438512c5ff13bfff48f
AUX rott-1.0-full-version.patch 298 RMD160 ae9adb06af3370ce5c9833a26eebf17578384058 SHA1 482d9552e418fbaa9e09cae44c7e1ddd8975de6c SHA256 08394445e09435b107451b1fcf2bfd4c46e23e60707059437ebf3dc3e47e4ce3
AUX rott-1.0-gcc41.patch 730 RMD160 add48ea08f48014a3406879585c2ef988a46ac19 SHA1 4d4c34b42f71ce150025fd52b0d7db5aba5048c2 SHA256 845feaeae78d7bfcc1b83f4a7cd2f4842477cfdf61d686eb8b4b49f16878625e
DIST rott-1.0.tar.gz 777281 RMD160 539125b1e2f820f61029397df7c5ae829c043cc2 SHA1 eca5a183486adc229d45b33907385c20ca7f601b SHA256 11f9cc331d0be87f0f172840e2bb6e03e27c3b8e9ecbb3eb8cffdc5b73afbd95
DIST swdata.zip 2889672 RMD160 1a51acf050d543acbb22e99ae2a2d5f32e0c503a SHA1 11ffe61045d590103409b76ce72815988a6c2cd1 SHA256 e226d4958ce1294886b32faf782d9db3d3e66f875d9addd62982e2c8d104fd6b
EBUILD rott-1.0.ebuild 1348 RMD160 4d2459f836d9342ce4de94eea7ab80c18d5381cb SHA1 10a01280ed56efe538c20192c55820efe4af0444 SHA256 7571accb7df11b2166a7369211aff065c59c5901a42bcaf7fe0563a1ecc35b09
MISC ChangeLog 857 RMD160 554ed3fb71376e9cb76d1c26934a371110eac62c SHA1 e4d06c18d71c995ec97cab88c364c935ea58ee7f SHA256 021bc2ef3f5d4f6395870a105c8c663dfd73d1c27416f8649512c1f64a67772f
MISC metadata.xml 996 RMD160 4e5d0eb1c14dffd69ca92a94280381b164e8f7ab SHA1 94c15c2bc91bc8cf807697fe618d9d0ba5702434 SHA256 342a79c62b040bbaf56a560790d28e2fd1b25a1cffbd5189d9d5e477d4406107
THE STORY
You are part of an elite group of operatives called HUNT (High-risk
United Nations Taskforce), and you must stop a maniac cult leader from
killing millions of people. While scouting a remote island, you are
suddenly surrounded by enemy troops with guns blaring. In the distance
you see your boat--your only chance to escape--explode into matchsticks.
In front of you is a huge fortress monastery, and your only chance to
stop the madness. You are e quipped with awesome, high-tech weaponry
like heat-seeking missiles, split missiles, and the Flamewall cannon,
which leaves a trail of charred skeletons in its wake. You'll also find
magical instruments and weapons so incredible they defy description.
# Copyright 1999-2007 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.10 2007/07/22 13:10:49 nyhm 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
demo? ( http://filesingularity.timedoctor.org/swdata.zip )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE="demo"
RDEPEND="media-libs/libsdl
media-libs/sdl-mixer"
DEPEND="${RDEPEND}
app-arch/unzip"
S=${WORKDIR}/${P}/rott
src_unpack() {
unpack ${A}
cd "${S}"
epatch \
"${FILESDIR}"/${PV}-custom-datapath.patch \
"${FILESDIR}"/${P}-gcc41.patch
use demo || epatch "${FILESDIR}"/${P}-full-version.patch
}
src_compile() {
emake 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}
if use demo ; then
cd "${WORKDIR}"
insinto "${GAMES_DATADIR}"/${PN}
doins *.dmo huntbgin.* remote1.rts || die "doins failed"
fi
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
if ! use demo ; then
elog "To play the full version, just copy the"
elog "data files to ${GAMES_DATADIR}/${PN}/"
fi
}