summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Levitsky <kitsunenokenja@protonmail.ch>2018-10-27 08:33:00 -0400
committerMichał Górny <mgorny@gentoo.org>2018-10-30 11:44:06 +0100
commitdb0f5e30885e4c2552f057e12d01f9382dc2258d (patch)
tree7b7209558d9102e0b96fc14fa4f3f196694f4f5c /games-roguelike/FTL-gog/FTL-gog-1.6.7.18662-r1.ebuild
parentgames-roguelike/FTL-gog: Bump version to 1.6.8.24110 (diff)
downloadgentoo-db0f5e30885e4c2552f057e12d01f9382dc2258d.tar.gz
gentoo-db0f5e30885e4c2552f057e12d01f9382dc2258d.tar.bz2
gentoo-db0f5e30885e4c2552f057e12d01f9382dc2258d.zip
games-roguelike/FTL-gog: Drop old version 1.6.7.18662
GOG does not maintain availability of prior versions. Signed-off-by: Rob Levitsky <kitsunenokenja@protonmail.ch> Package-Manager: Portage-2.3.49, Repoman-2.3.11 Closes: https://github.com/gentoo/gentoo/pull/10219 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'games-roguelike/FTL-gog/FTL-gog-1.6.7.18662-r1.ebuild')
-rw-r--r--games-roguelike/FTL-gog/FTL-gog-1.6.7.18662-r1.ebuild63
1 files changed, 0 insertions, 63 deletions
diff --git a/games-roguelike/FTL-gog/FTL-gog-1.6.7.18662-r1.ebuild b/games-roguelike/FTL-gog/FTL-gog-1.6.7.18662-r1.ebuild
deleted file mode 100644
index c606b4d683d1..000000000000
--- a/games-roguelike/FTL-gog/FTL-gog-1.6.7.18662-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit desktop unpacker
-
-DESCRIPTION="Top-down roguelike space ship simulator"
-HOMEPAGE="https://www.gog.com/game/faster_than_light"
-SRC_URI="ftl_advanced_edition_en_${PV//./_}.sh"
-RESTRICT="bindist fetch mirror strip test"
-
-LICENSE="GOG-EULA"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-IUSE=""
-
-DEPEND="app-arch/unzip"
-RDEPEND="media-libs/freetype
- media-libs/libsdl[X,sound,opengl,video]
- media-libs/libpng
- sys-libs/zlib
- virtual/opengl"
-
-S="${WORKDIR}/data/noarch"
-
-pkg_nofetch() {
- elog "Please buy and download ${SRC_URI} from"
- elog "https://www.gog.com/game/faster_than_light"
-}
-
-src_unpack() {
- unpack_zip "${DISTDIR}/${A}"
-}
-
-src_prepare() {
- default
- rm -r support/{xdg*,*.{sh,txt}} || die
- if ! use x86; then
- rm game/data/FTL.x86 || die
- fi
- if ! use amd64; then
- rm game/data/FTL.amd64 || die
- fi
-
- sed -i start.sh -e '/chmod/d'
-}
-
-src_install() {
- insinto /opt/gog/FTL
- doins -r .
- fperms +x /opt/gog/FTL/{start.sh,game/FTL,game/data/FTL}
-
- if use x86; then
- fperms +x /opt/gog/FTL/game/data/FTL.x86
- fi
- if use amd64; then
- fperms +x /opt/gog/FTL/game/data/FTL.amd64
- fi
-
- make_desktop_entry "/opt/gog/FTL/start.sh" "FTL: Advanced Edition" FTL
- newicon support/icon.png FTL.png
-}