summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2019-12-25 18:23:11 +0100
committerPacho Ramos <pacho@gentoo.org>2019-12-25 18:23:11 +0100
commitcebd7c2c8292a57d1b86b6f6d82c7e2546b66f75 (patch)
treea942e292c9008362c2a1b9917d6dc84d1d544550 /games-arcade/whichwayisup
parentgames-arcade/whichwayisup: Fixes from Fedora, use python3 (diff)
downloadgentoo-cebd7c2c8292a57d1b86b6f6d82c7e2546b66f75.tar.gz
gentoo-cebd7c2c8292a57d1b86b6f6d82c7e2546b66f75.tar.bz2
gentoo-cebd7c2c8292a57d1b86b6f6d82c7e2546b66f75.zip
games-arcade/whichwayisup: Drop old
Package-Manager: Portage-2.3.82, Repoman-2.3.20 Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'games-arcade/whichwayisup')
-rw-r--r--games-arcade/whichwayisup/whichwayisup-0.7.9-r2.ebuild59
1 files changed, 0 insertions, 59 deletions
diff --git a/games-arcade/whichwayisup/whichwayisup-0.7.9-r2.ebuild b/games-arcade/whichwayisup/whichwayisup-0.7.9-r2.ebuild
deleted file mode 100644
index 84964d15a797..000000000000
--- a/games-arcade/whichwayisup/whichwayisup-0.7.9-r2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit desktop python-single-r1
-
-MY_PV="${PV//./}"
-MY_P="${PN}_b${MY_PV}"
-
-DESCRIPTION="A traditional and challenging 2D platformer game with a slight rotational twist"
-HOMEPAGE="http://hectigo.net/puskutraktori/whichwayisup/"
-SRC_URI="http://hectigo.net/puskutraktori/whichwayisup/${MY_P}.zip"
-
-LICENSE="GPL-2 CC-BY-3.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
- dev-python/pygame[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}
- app-arch/unzip
-"
-
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
- default
- sed -i \
- -e "s:libdir\ =\ .*:libdir\ =\ \"/usr/$(get_libdir)/${PN}\":" \
- run_game.py || die
- sed -i \
- -e "s:data_dir\ =\ .*:data_dir\ =\ \"/usr/share/${PN}\":" \
- lib/data.py || die
- rm data/pictures/Thumbs.db
- python_fix_shebang .
-}
-
-src_install() {
- newbin run_game.py ${PN}
-
- insinto "/usr/$(get_libdir)/${PN}"
- doins lib/*.py
-
- python_optimize "${ED}/usr/$(get_libdir)/${PN}"
-
- einstalldocs
-
- insinto "/usr/share/${PN}"
- doins -r data/*
-
- newicon "${FILESDIR}"/${PN}-32.xpm ${PN}.xpm
- make_desktop_entry ${PN} "Which Way Is Up?"
-}