summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2014-08-25 21:07:00 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2014-08-25 21:07:00 +0000
commit0a77d1e428b62d15f66db6d5b4788bf98ae6ce12 (patch)
tree2c3c7cd99b9fa5b50940329b6d451031f5933bdb /games-fps
parentold (diff)
downloadgentoo-2-0a77d1e428b62d15f66db6d5b4788bf98ae6ce12.tar.gz
gentoo-2-0a77d1e428b62d15f66db6d5b4788bf98ae6ce12.tar.bz2
gentoo-2-0a77d1e428b62d15f66db6d5b4788bf98ae6ce12.zip
old
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-fps')
-rw-r--r--games-fps/rott/ChangeLog6
-rw-r--r--games-fps/rott/files/rott-1.1.1-full-version.patch11
-rw-r--r--games-fps/rott/rott-1.1.1.ebuild59
3 files changed, 5 insertions, 71 deletions
diff --git a/games-fps/rott/ChangeLog b/games-fps/rott/ChangeLog
index a704b6fbc807..da5ba78be9fc 100644
--- a/games-fps/rott/ChangeLog
+++ b/games-fps/rott/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-fps/rott
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/rott/ChangeLog,v 1.13 2014/05/15 16:45:39 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/rott/ChangeLog,v 1.14 2014/08/25 21:06:59 mr_bones_ Exp $
+
+ 25 Aug 2014; Michael Sterrett <mr_bones_@gentoo.org>
+ -files/rott-1.1.1-full-version.patch, -rott-1.1.1.ebuild:
+ old
15 May 2014; Ulrich Müller <ulm@gentoo.org> rott-1.1.1.ebuild,
rott-1.1.2.ebuild:
diff --git a/games-fps/rott/files/rott-1.1.1-full-version.patch b/games-fps/rott/files/rott-1.1.1-full-version.patch
deleted file mode 100644
index e1615e77f7fa..000000000000
--- a/games-fps/rott/files/rott-1.1.1-full-version.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- develop.h.orig 2007-05-13 22:42:39.000000000 +0200
-+++ develop.h 2007-05-13 22:42:44.000000000 +0200
-@@ -40,7 +40,7 @@
- #define LOWCOST 0
-
- // Make sure only one of the following are on at one time
--#define SHAREWARE 1
-+#define SHAREWARE 0
- #define SUPERROTT 0
- #define SITELICENSE 0
-
diff --git a/games-fps/rott/rott-1.1.1.ebuild b/games-fps/rott/rott-1.1.1.ebuild
deleted file mode 100644
index 9aed3362f095..000000000000
--- a/games-fps/rott/rott-1.1.1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/rott/rott-1.1.1.ebuild,v 1.4 2014/05/15 16:45:39 ulm Exp $
-
-EAPI=2
-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="~amd64 ~ppc ~x86"
-IUSE="demo"
-
-RDEPEND="media-libs/libsdl[sound,joystick,video]
- media-libs/sdl-mixer"
-DEPEND="${RDEPEND}
- app-arch/unzip"
-
-S=${WORKDIR}/${P}/rott
-
-src_prepare() {
- use demo || epatch "${FILESDIR}"/${P}-full-version.patch
- cd "${S}"
- sed -i \
- -e '/^CC =/d' \
- Makefile \
- || die "sed failed"
- emake clean || die
-}
-
-src_compile() {
- emake -j1 \
- EXTRACFLAGS="${CFLAGS} -DDATADIR=\\\"${GAMES_DATADIR}/${PN}/\\\"" \
- || die "emake failed"
-}
-
-src_install() {
- dogamesbin rott || die "dogamesbin failed"
- dodoc ../doc/*.txt ../README
- doman ../doc/rott.6
- 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
-}