diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2015-02-05 03:58:00 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2015-02-05 03:58:00 +0000 |
commit | 127e7a60111aa9129eae4348d2c60e58a71eaf34 (patch) | |
tree | 5b48d52825c32f44d842d50c668eabebf97f8a7a | |
parent | old (diff) | |
download | gentoo-2-127e7a60111aa9129eae4348d2c60e58a71eaf34.tar.gz gentoo-2-127e7a60111aa9129eae4348d2c60e58a71eaf34.tar.bz2 gentoo-2-127e7a60111aa9129eae4348d2c60e58a71eaf34.zip |
old
(Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
-rw-r--r-- | games-arcade/whichwayisup/ChangeLog | 6 | ||||
-rw-r--r-- | games-arcade/whichwayisup/whichwayisup-0.7.9.ebuild | 66 |
2 files changed, 5 insertions, 67 deletions
diff --git a/games-arcade/whichwayisup/ChangeLog b/games-arcade/whichwayisup/ChangeLog index f30030a4f91e..65540dcc7316 100644 --- a/games-arcade/whichwayisup/ChangeLog +++ b/games-arcade/whichwayisup/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-arcade/whichwayisup # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/whichwayisup/ChangeLog,v 1.23 2015/01/28 10:22:38 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/whichwayisup/ChangeLog,v 1.24 2015/02/05 03:58:00 mr_bones_ Exp $ + + 05 Feb 2015; Michael Sterrett <mr_bones_@gentoo.org> + -whichwayisup-0.7.9.ebuild: + old 28 Jan 2015; Agostino Sarubbo <ago@gentoo.org> whichwayisup-0.7.9-r1.ebuild: Stable for ppc, wrt bug #534250 diff --git a/games-arcade/whichwayisup/whichwayisup-0.7.9.ebuild b/games-arcade/whichwayisup/whichwayisup-0.7.9.ebuild deleted file mode 100644 index d277c2c1c154..000000000000 --- a/games-arcade/whichwayisup/whichwayisup-0.7.9.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/whichwayisup/whichwayisup-0.7.9.ebuild,v 1.12 2013/02/07 22:07:08 ulm Exp $ - -EAPI=3 -PYTHON_DEPEND="2" -inherit eutils python 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 ppc x86" -IUSE="" - -DEPEND="app-arch/unzip" -RDEPEND=">=dev-python/pygame-1.6" - -S=${WORKDIR}/${PN} - -pkg_setup() { - python_set_active_version 2 - games_pkg_setup -} - -src_prepare() { - sed -i \ - -e "s:libdir\ =\ .*:libdir\ =\ \"$(games_get_libdir)/${PN}\":" \ - run_game.py \ - || die "Changing library path failed" - sed -i \ - -e "s:data_dir\ =\ .*:data_dir\ =\ \"${GAMES_DATADIR}/${PN}\":" \ - lib/data.py \ - || die "Changing data path failed" - rm data/pictures/Thumbs.db - python_convert_shebangs -r 2 run_game.py -} - -src_install() { - newgamesbin run_game.py ${PN} || die "newgamesbin failed" - - insinto "$(games_get_libdir)/${PN}" - doins lib/*.py || die "doins lib failed" - - dodoc README.txt changelog.txt - - insinto "${GAMES_DATADIR}/${PN}" - doins -r data/* || die "doins data failed" - - newicon "${FILESDIR}"/${PN}-32.xpm ${PN}.xpm - make_desktop_entry ${PN} "Which Way Is Up?" - prepgamesdirs -} - -pkg_postinst() { - python_mod_optimize "$(games_get_libdir)/${PN}" - games_pkg_postinst -} - -pkg_postrm() { - python_mod_cleanup "$(games_get_libdir)/${PN}" -} |