games-action/transcend: Remove old
authorDavid Seifert <soap@gentoo.org>
Wed, 20 Dec 2017 21:30:11 +0000 (22:30 +0100)
committerDavid Seifert <soap@gentoo.org>
Thu, 21 Dec 2017 01:32:53 +0000 (02:32 +0100)
Package-Manager: Portage-2.3.16, Repoman-2.3.6

games-action/transcend/transcend-0.3.ebuild [deleted file]

diff --git a/games-action/transcend/transcend-0.3.ebuild b/games-action/transcend/transcend-0.3.ebuild
deleted file mode 100644 (file)
index fcc485b..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils games
-
-DESCRIPTION="retro-style, abstract, 2D shooter"
-HOMEPAGE="http://transcend.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/Transcend_${PV}_UnixSource.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="x11-libs/libXmu
-       x11-libs/libXi
-       virtual/opengl
-       virtual/glu
-       media-libs/portaudio
-       media-libs/freeglut"
-RDEPEND=${DEPEND}
-
-S=${WORKDIR}/Transcend_${PV}_UnixSource/Transcend
-
-src_prepare() {
-       # apply patch from debian in order to get sound working. bug #372413
-       epatch "${FILESDIR}"/${P}-sound.patch
-       rm -rf game/Makefile portaudio/ || die
-       sed \
-               -e '/^GXX=/d' \
-               -e 's/GXX/CXX/' \
-               -e '/^COMPILE_FLAGS =/ s/OPTIMIZE_FLAG/CXXFLAGS/' \
-               -e '/^EXE_LINK =/ s/LINK_FLAGS/LDFLAGS/' \
-               Makefile.GnuLinuxX86 \
-               Makefile.common \
-               Makefile.minorGems \
-               game/Makefile.all \
-               Makefile.minorGems_targets \
-               > game/Makefile || die
-       sed -i \
-               -e "s:\"levels\":\"${GAMES_DATADIR}/${PN}/levels\":" \
-               game/LevelDirectoryManager.cpp \
-               game/game.cpp || die
-}
-
-src_configure() { :; }
-
-src_compile() {
-       emake -C game
-}
-
-src_install() {
-       newgamesbin game/Transcend ${PN}
-       insinto "${GAMES_DATADIR}/${PN}"
-       doins -r levels/
-       dodoc doc/{how_to_play.txt,changeLog.txt}
-       make_desktop_entry ${PN} "Transcend"
-       prepgamesdirs
-}