summaryrefslogtreecommitdiff
path: root/games-fps
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2017-12-20 22:30:21 +0100
committerDavid Seifert <soap@gentoo.org>2017-12-21 02:43:21 +0100
commit0b387725d364c68f5c2b4a706b76b3d1431ad657 (patch)
treec8902bd6273c9c581ede88c0387f38071e163b92 /games-fps
parentc368fb029739ba624fca55b2748ca8f23771c8cd (diff)
downloadgentoo-0b387725d364c68f5c2b4a706b76b3d1431ad657.tar.gz
gentoo-0b387725d364c68f5c2b4a706b76b3d1431ad657.tar.xz
games-fps/rott: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-fps')
-rw-r--r--games-fps/rott/rott-1.1.2.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/games-fps/rott/rott-1.1.2.ebuild b/games-fps/rott/rott-1.1.2.ebuild
deleted file mode 100644
index 69fec0a0f43..00000000000
--- a/games-fps/rott/rott-1.1.2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-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 ~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() {
- sed -i \
- -e '/^CC =/d' \
- Makefile || die "sed failed"
- emake clean
-}
-
-src_compile() {
- emake -j1 \
- EXTRACFLAGS="${CFLAGS} -DDATADIR=\\\"${GAMES_DATADIR}/${PN}/\\\"" \
- SHAREWARE=$(usex demo "1" "0")
-}
-
-src_install() {
- dogamesbin rott
- dodoc ../doc/*.txt ../README
- doman ../doc/rott.6
- if use demo ; then
- cd "${WORKDIR}" || die
- insinto "${GAMES_DATADIR}"/${PN}
- doins *.dmo huntbgin.* remote1.rts
- 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
-}