From 28146357de0d11952317fb221d43cffd4ef24d31 Mon Sep 17 00:00:00 2001 From: Michael Palimaka Date: Sat, 30 Sep 2017 12:39:50 +1000 Subject: games-arcade/tuxdash: remove 0.8-r0 Package-Manager: Portage-2.3.8, Repoman-2.3.3 --- .../tuxdash/files/tuxdash-0.8-ldflags.patch | 8 ---- games-arcade/tuxdash/tuxdash-0.8.ebuild | 50 ---------------------- 2 files changed, 58 deletions(-) delete mode 100644 games-arcade/tuxdash/files/tuxdash-0.8-ldflags.patch delete mode 100644 games-arcade/tuxdash/tuxdash-0.8.ebuild (limited to 'games-arcade') diff --git a/games-arcade/tuxdash/files/tuxdash-0.8-ldflags.patch b/games-arcade/tuxdash/files/tuxdash-0.8-ldflags.patch deleted file mode 100644 index 00d2afb55307..000000000000 --- a/games-arcade/tuxdash/files/tuxdash-0.8-ldflags.patch +++ /dev/null @@ -1,8 +0,0 @@ ---- src/Makefile.old 2010-09-30 06:24:36.000000000 +0200 -+++ src/Makefile 2010-09-30 06:25:02.000000000 +0200 -@@ -1,4 +1,4 @@ - all: -- g++ main.cpp $(E_CXXFLAGS) `/usr/bin/sdl-config --libs --cflags` -lSDL_ttf -o ../tuxdash -+ $(CXX) main.cpp $(LDFLAGS) $(E_CXXFLAGS) `/usr/bin/sdl-config --libs --cflags` -lSDL_ttf -o ../tuxdash - static: - g++ -static main.cpp $(E_CXXFLAGS) `/usr/bin/sdl-config --cflags --static-libs` -lSDL_ttf -lfreetype -lz -o ../tuxdash diff --git a/games-arcade/tuxdash/tuxdash-0.8.ebuild b/games-arcade/tuxdash/tuxdash-0.8.ebuild deleted file mode 100644 index 314e95c2b8bb..000000000000 --- a/games-arcade/tuxdash/tuxdash-0.8.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils games - -DESCRIPTION="A simple BoulderDash clone" -HOMEPAGE="http://www.tuxdash.de/index.php?language=EN" -SRC_URI="http://www.tuxdash.de/ressources/downloads/${PN}_src_${PV}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86 ~x86-fbsd" -IUSE="" - -DEPEND="media-libs/libsdl[video] - media-libs/sdl-ttf" -RDEPEND="${DEPEND}" - -src_prepare() { - rm -f GPL TuxDash - sed -i \ - -e '/^Fullscreen/ s/0/1/' \ - -e "/^theme/ s:themes:${GAMES_DATADIR}/${PN}/themes:" \ - config || die "sed failed" - sed -i \ - -e '/PWD/d' \ - -e '/CurrentDirectory;/d' \ - -e "s:CurrentDirectory:\"${GAMES_DATADIR}/${PN}\":" \ - src/main.cpp || die "sed failed" - sed -i \ - -e 's/-Wall/$(E_CXXFLAGS)/' \ - -e 's/TuxDash/tuxdash/g' \ - src/Makefile || die "sed failed" - epatch "${FILESDIR}"/${P}-ldflags.patch - find . -type f -print0 | xargs -0 chmod a-x -} - -src_compile() { - emake E_CXXFLAGS="${CXXFLAGS}" -C src -} - -src_install() { - dogamesbin tuxdash - dodir "${GAMES_DATADIR}/${PN}" - cp -r themes maps fonts savegames config "${D}/${GAMES_DATADIR}/${PN}" \ - || die "cp failed" - dodoc README* - prepgamesdirs -} -- cgit v1.2.3-65-gdbad