diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2006-01-05 05:38:33 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2006-01-05 05:38:33 +0000 |
commit | e7c42e8f8a3f20a5ca37c1340002f02daf4aa3ba (patch) | |
tree | dfa31fa3e888fa542547ac3db213188771820c53 /games-roguelike/ivan | |
parent | Stable on x86 (diff) | |
download | historical-e7c42e8f8a3f20a5ca37c1340002f02daf4aa3ba.tar.gz historical-e7c42e8f8a3f20a5ca37c1340002f02daf4aa3ba.tar.bz2 historical-e7c42e8f8a3f20a5ca37c1340002f02daf4aa3ba.zip |
turn off -O to prevent segfault in reponse to bug #113627
Package-Manager: portage-2.0.53
Diffstat (limited to 'games-roguelike/ivan')
-rw-r--r-- | games-roguelike/ivan/ChangeLog | 7 | ||||
-rw-r--r-- | games-roguelike/ivan/Manifest | 6 | ||||
-rw-r--r-- | games-roguelike/ivan/ivan-0.50.ebuild | 12 |
3 files changed, 17 insertions, 8 deletions
diff --git a/games-roguelike/ivan/ChangeLog b/games-roguelike/ivan/ChangeLog index 3d0dd37a6160..c98f1b2193b4 100644 --- a/games-roguelike/ivan/ChangeLog +++ b/games-roguelike/ivan/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-roguelike/ivan -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-roguelike/ivan/ChangeLog,v 1.6 2005/11/27 02:01:11 mr_bones_ Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-roguelike/ivan/ChangeLog,v 1.7 2006/01/05 05:38:33 mr_bones_ Exp $ + + 05 Jan 2006; Michael Sterrett <mr_bones_@gentoo.org> ivan-0.50.ebuild: + turn off -O to prevent segfault in reponse to bug #113627 27 Nov 2005; Michael Sterrett <mr_bones_@gentoo.org> ivan-0.50.ebuild: keepdir the Bones directory so it doesn't get accidentally removed diff --git a/games-roguelike/ivan/Manifest b/games-roguelike/ivan/Manifest index ce86844f9200..870d8ae736fd 100644 --- a/games-roguelike/ivan/Manifest +++ b/games-roguelike/ivan/Manifest @@ -1,4 +1,4 @@ -MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 -MD5 f3da01d0ff8493c4beb00641e6f6e746 ChangeLog 785 -MD5 970d526a25cd91c15ba9395c2414d5ba ivan-0.50.ebuild 650 +MD5 17b3d729b200fa5d0fbcf5487465ed15 ChangeLog 919 MD5 e37cfae1e95d0608a8ccad181cb5a31c files/digest-ivan-0.50 61 +MD5 3cdc466656c1e53f044fdaac241ca821 ivan-0.50.ebuild 766 +MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 diff --git a/games-roguelike/ivan/ivan-0.50.ebuild b/games-roguelike/ivan/ivan-0.50.ebuild index 1b71a0c1e870..9afafa061c90 100644 --- a/games-roguelike/ivan/ivan-0.50.ebuild +++ b/games-roguelike/ivan/ivan-0.50.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-roguelike/ivan/ivan-0.50.ebuild,v 1.2 2005/11/27 02:01:11 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-roguelike/ivan/ivan-0.50.ebuild,v 1.3 2006/01/05 05:38:33 mr_bones_ Exp $ -inherit games +inherit flag-o-matic games DESCRIPTION="Rogue-like game with SDL graphics" HOMEPAGE="http://ivan.sourceforge.net/" @@ -15,6 +15,12 @@ IUSE="" DEPEND=">=media-libs/libsdl-1.2.0" +src_compile() { + replace-flags -O? -O0 #bug #113627 + egamesconf || die + emake || die "emake failed" +} + src_install() { egamesinstall || die dodoc AUTHORS ChangeLog LICENSING NEWS README |