diff options
author | Michael Palimaka <kensington@gentoo.org> | 2017-09-30 12:39:50 +1000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2017-09-30 12:40:14 +1000 |
commit | 28146357de0d11952317fb221d43cffd4ef24d31 (patch) | |
tree | aefc34ee710514474b1ebe4c7878e0a498fe018a /games-arcade/tuxdash | |
parent | games-arcade/tuxdash: stabilise 0.8-r1 for amd64/x86 (diff) | |
download | gentoo-28146357de0d11952317fb221d43cffd4ef24d31.tar.gz gentoo-28146357de0d11952317fb221d43cffd4ef24d31.tar.bz2 gentoo-28146357de0d11952317fb221d43cffd4ef24d31.zip |
games-arcade/tuxdash: remove 0.8-r0
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'games-arcade/tuxdash')
-rw-r--r-- | games-arcade/tuxdash/files/tuxdash-0.8-ldflags.patch | 8 | ||||
-rw-r--r-- | games-arcade/tuxdash/tuxdash-0.8.ebuild | 50 |
2 files changed, 0 insertions, 58 deletions
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 -} |