diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-10-06 05:33:21 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-10-06 05:33:21 +0000 |
commit | f86cea429482dc90e38ea58d44657590bc84a849 (patch) | |
tree | 93d82831bcc381c2012332b2a4268a316b992d4f /games-puzzle/atomix | |
parent | version bump (Manifest recommit) (diff) | |
download | gentoo-2-f86cea429482dc90e38ea58d44657590bc84a849.tar.gz gentoo-2-f86cea429482dc90e38ea58d44657590bc84a849.tar.bz2 gentoo-2-f86cea429482dc90e38ea58d44657590bc84a849.zip |
fix compile error with gcc34 (bug #66142) (again)
Diffstat (limited to 'games-puzzle/atomix')
-rw-r--r-- | games-puzzle/atomix/ChangeLog | 7 | ||||
-rw-r--r-- | games-puzzle/atomix/atomix-1.0.1.ebuild | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/games-puzzle/atomix/ChangeLog b/games-puzzle/atomix/ChangeLog index 5114d8969729..3a26348c719d 100644 --- a/games-puzzle/atomix/ChangeLog +++ b/games-puzzle/atomix/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-puzzle/atomix # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/atomix/ChangeLog,v 1.6 2004/10/03 07:08:40 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/atomix/ChangeLog,v 1.7 2004/10/06 05:33:21 mr_bones_ Exp $ + + 05 Oct 2004; Michael Sterrett <mr_bones_@gentoo.org> atomix-1.0.1.ebuild: + fix compile error with gcc34 (bug #66142) (again) 03 Oct 2004; Michael Sterrett <mr_bones_@gentoo.org> atomix-1.0.1.ebuild: fix compile error with gcc34 (bug #66142) @@ -17,4 +20,4 @@ 28 Jul 2002; Gabriele Giorgetti <stroke@gentoo.org> atomix-0.9.4.ebuild : - Initial cvs import. A mind game for GNOME2
\ No newline at end of file + Initial cvs import. A mind game for GNOME2 diff --git a/games-puzzle/atomix/atomix-1.0.1.ebuild b/games-puzzle/atomix/atomix-1.0.1.ebuild index bc9fd889358a..96f2d19be129 100644 --- a/games-puzzle/atomix/atomix-1.0.1.ebuild +++ b/games-puzzle/atomix/atomix-1.0.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/atomix/atomix-1.0.1.ebuild,v 1.6 2004/10/03 07:08:40 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/atomix/atomix-1.0.1.ebuild,v 1.7 2004/10/06 05:33:21 mr_bones_ Exp $ inherit gnome2 @@ -38,6 +38,10 @@ src_unpack() { -e 's/default:/default:;/' src/goal-view.c \ || die "sed failed" sed -i \ + -e '581 s/default:/default:;/' src/level-convert.c \ + || die "sed failed" + + sed -i \ -e 's/games.games/games:games/' Makefile.in \ || die "sed failed" } |