diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-04-24 21:15:56 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-04-24 21:26:36 +0200 |
commit | fd78e2ec7f9456cb335a8e1f4cc71a9acef8d9df (patch) | |
tree | e8203d86c32efe0d9be75d1e2b801fdd52e4e080 /games-arcade | |
parent | games-arcade/whichwayisup: Stop using games.eclass (diff) | |
download | gentoo-fd78e2ec7f9456cb335a8e1f4cc71a9acef8d9df.tar.gz gentoo-fd78e2ec7f9456cb335a8e1f4cc71a9acef8d9df.tar.bz2 gentoo-fd78e2ec7f9456cb335a8e1f4cc71a9acef8d9df.zip |
games-arcade/whichwayisup: Drop old
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/whichwayisup/whichwayisup-0.7.9-r1.ebuild | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/games-arcade/whichwayisup/whichwayisup-0.7.9-r1.ebuild b/games-arcade/whichwayisup/whichwayisup-0.7.9-r1.ebuild deleted file mode 100644 index 80b637d2416d..000000000000 --- a/games-arcade/whichwayisup/whichwayisup-0.7.9-r1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) -inherit eutils python-single-r1 games - -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="" - -RDEPEND="dev-python/pygame[${PYTHON_USEDEP}] - ${PYTHON_DEPS}" -DEPEND="${RDEPEND} - app-arch/unzip" -REQUIRED_USE=${PYTHON_REQUIRED_USE} - -S=${WORKDIR}/${PN} - -pkg_setup() { - python-single-r1_pkg_setup - games_pkg_setup -} - -src_prepare() { - sed -i \ - -e "s:libdir\ =\ .*:libdir\ =\ \"$(games_get_libdir)/${PN}\":" \ - run_game.py || die - sed -i \ - -e "s:data_dir\ =\ .*:data_dir\ =\ \"${GAMES_DATADIR}/${PN}\":" \ - lib/data.py || die - rm data/pictures/Thumbs.db - python_fix_shebang . -} - -src_install() { - newgamesbin run_game.py ${PN} - - insinto "$(games_get_libdir)/${PN}" - doins lib/*.py - - python_optimize "${D}$(games_get_libdir)/${PN}" - - dodoc README.txt changelog.txt - - insinto "${GAMES_DATADIR}/${PN}" - doins -r data/* - - newicon "${FILESDIR}"/${PN}-32.xpm ${PN}.xpm - make_desktop_entry ${PN} "Which Way Is Up?" - prepgamesdirs -} |