diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-21 19:03:10 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-04-21 19:03:10 +0000 |
commit | 5220522d3b37572c6fc65b41b9a47c2ca5e0ccf1 (patch) | |
tree | 30bb3a677f9b40dc2ccc75e8def487bc4be5a100 /games-puzzle/kiki | |
parent | adding metadata (Manifest recommit) (diff) | |
download | gentoo-2-5220522d3b37572c6fc65b41b9a47c2ca5e0ccf1.tar.gz gentoo-2-5220522d3b37572c6fc65b41b9a47c2ca5e0ccf1.tar.bz2 gentoo-2-5220522d3b37572c6fc65b41b9a47c2ca5e0ccf1.zip |
python 2.2 fix for bug #48521
Diffstat (limited to 'games-puzzle/kiki')
-rw-r--r-- | games-puzzle/kiki/ChangeLog | 8 | ||||
-rw-r--r-- | games-puzzle/kiki/kiki-0.9.0.ebuild | 5 |
2 files changed, 9 insertions, 4 deletions
diff --git a/games-puzzle/kiki/ChangeLog b/games-puzzle/kiki/ChangeLog index 0644c4f12ee3..82d0b83fb42c 100644 --- a/games-puzzle/kiki/ChangeLog +++ b/games-puzzle/kiki/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-puzzle/kiki -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/kiki/ChangeLog,v 1.2 2003/09/10 15:46:09 vapier Exp $ +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/kiki/ChangeLog,v 1.3 2004/04/21 19:03:10 mr_bones_ Exp $ + + 21 Apr 2004; Michael Sterrett <mr_bones_@gentoo.org> kiki-0.9.0.ebuild: + source has hard-coded python 2.2 stuff. Didn't work with python 2.3.3 either + so locking it into 2.2 for now. Patches welcome. (bug #48521) *kiki-0.9.0 (05 Aug 2003) diff --git a/games-puzzle/kiki/kiki-0.9.0.ebuild b/games-puzzle/kiki/kiki-0.9.0.ebuild index 11bd9b631a4a..c46c97b0c7e6 100644 --- a/games-puzzle/kiki/kiki-0.9.0.ebuild +++ b/games-puzzle/kiki/kiki-0.9.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/kiki/kiki-0.9.0.ebuild,v 1.2 2004/02/20 06:53:36 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/kiki/kiki-0.9.0.ebuild,v 1.3 2004/04/21 19:03:10 mr_bones_ Exp $ inherit games @@ -18,7 +18,7 @@ IUSE="" RDEPEND=">=media-libs/libsdl-1.2 >=media-libs/sdl-image-1.2.2 >=media-libs/sdl-mixer-1.2.5 - >=dev-lang/python-2.2 + =dev-lang/python-2.2* virtual/glut" DEPEND="${RDEPEND} >=sys-devel/gcc-3 @@ -31,6 +31,7 @@ src_unpack() { # There are CVS directories in the tgz file rm -rf `find -name CVS -type d` rm -rf `find -name .cvsignore` + chmod a-x kiki_src/kiki/sounds/*.* # Change the hard-coded data dir for sounds, etc... sed -i \ |