diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2013-06-08 19:17:58 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2013-06-08 19:17:58 +0000 |
commit | de927b0abf05eb7ccb41b39fa849705be4ee7bf2 (patch) | |
tree | 0ac57a944bfad148580453d5356cd48e195aec85 /games-arcade | |
parent | Version bump. (diff) | |
download | gentoo-2-de927b0abf05eb7ccb41b39fa849705be4ee7bf2.tar.gz gentoo-2-de927b0abf05eb7ccb41b39fa849705be4ee7bf2.tar.bz2 gentoo-2-de927b0abf05eb7ccb41b39fa849705be4ee7bf2.zip |
Workaround python3 failure by requiring python2.
(Portage version: 2.2.0_alpha177_p3/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/funnyboat/ChangeLog | 8 | ||||
-rw-r--r-- | games-arcade/funnyboat/funnyboat-1.5.ebuild | 10 |
2 files changed, 11 insertions, 7 deletions
diff --git a/games-arcade/funnyboat/ChangeLog b/games-arcade/funnyboat/ChangeLog index c7a623839cba..c6b49a079086 100644 --- a/games-arcade/funnyboat/ChangeLog +++ b/games-arcade/funnyboat/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-arcade/funnyboat -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/funnyboat/ChangeLog,v 1.12 2008/03/29 21:37:05 coldwind Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/funnyboat/ChangeLog,v 1.13 2013/06/08 19:17:58 slyfox Exp $ + + 08 Jun 2013; Sergei Trofimovich <slyfox@gentoo.org> funnyboat-1.5.ebuild: + Workaround python3 failure by requiring python2. 29 Mar 2008; Santiago M. Mola <coldwind@gentoo.org> funnyboat-1.5.ebuild: amd64 stable @@ -52,4 +55,3 @@ +funnyboat-1.1.ebuild: initial commit - ebuild submitted by Cristiano Chiucchiolo and Alexandru Toma via bug #130333 - diff --git a/games-arcade/funnyboat/funnyboat-1.5.ebuild b/games-arcade/funnyboat/funnyboat-1.5.ebuild index 47869893826e..c042da1f5ffb 100644 --- a/games-arcade/funnyboat/funnyboat-1.5.ebuild +++ b/games-arcade/funnyboat/funnyboat-1.5.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/funnyboat/funnyboat-1.5.ebuild,v 1.5 2008/03/29 21:37:05 coldwind Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/funnyboat/funnyboat-1.5.ebuild,v 1.6 2013/06/08 19:17:58 slyfox Exp $ inherit eutils games @@ -13,7 +13,8 @@ SLOT="0" KEYWORDS="amd64 ~ppc x86 ~x86-fbsd" IUSE="" -RDEPEND=">=dev-python/pygame-1.6.2" +RDEPEND=">=dev-python/pygame-1.6.2 + =dev-lang/python-2*" DEPEND="app-arch/unzip" S=${WORKDIR}/${PN} @@ -22,7 +23,8 @@ src_install() { insinto "${GAMES_DATADIR}"/${PN} doins -r data *.py || die "doins failed" dodoc *.txt - games_make_wrapper ${PN} "python main.py" "${GAMES_DATADIR}"/${PN} + # does not like python3 (fails on os.environ["HOME"]) + games_make_wrapper ${PN} "python2 main.py" "${GAMES_DATADIR}"/${PN} newicon data/kuvake.png ${PN}.png make_desktop_entry ${PN} "Trip on the Funny Boat" prepgamesdirs |