diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-12-29 09:08:01 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-12-29 09:08:01 +0000 |
commit | 127b0f2e6d210b83af2c373a8b527c1a6260f466 (patch) | |
tree | 8c46d95e443e6a218c6e32313d95376eeca69fc2 /media-libs | |
parent | Added ~ppc64 to KEYWORDS (Manifest recommit) (diff) | |
download | gentoo-2-127b0f2e6d210b83af2c373a8b527c1a6260f466.tar.gz gentoo-2-127b0f2e6d210b83af2c373a8b527c1a6260f466.tar.bz2 gentoo-2-127b0f2e6d210b83af2c373a8b527c1a6260f466.zip |
work around bad asm issue described in bug #74608
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libsdl/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/libsdl/libsdl-1.2.8.ebuild | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/media-libs/libsdl/ChangeLog b/media-libs/libsdl/ChangeLog index 644f6fee6f7d..6ebfee293666 100644 --- a/media-libs/libsdl/ChangeLog +++ b/media-libs/libsdl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/libsdl # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl/ChangeLog,v 1.68 2004/12/29 00:53:14 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl/ChangeLog,v 1.69 2004/12/29 09:08:01 mr_bones_ Exp $ + + 29 Dec 2004; Michael Sterrett <mr_bones_@gentoo.org> libsdl-1.2.8.ebuild: + work around bad asm issue described in bug #74608 29 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> : Change encoding to UTF-8 for GLEP 31 compliance diff --git a/media-libs/libsdl/libsdl-1.2.8.ebuild b/media-libs/libsdl/libsdl-1.2.8.ebuild index 3310f229baeb..2f4c2fe52441 100644 --- a/media-libs/libsdl/libsdl-1.2.8.ebuild +++ b/media-libs/libsdl/libsdl-1.2.8.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl/libsdl-1.2.8.ebuild,v 1.4 2004/12/24 10:31:03 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsdl/libsdl-1.2.8.ebuild,v 1.5 2004/12/29 09:08:01 mr_bones_ Exp $ -inherit toolchain-funcs eutils gnuconfig +inherit flag-o-matic toolchain-funcs eutils gnuconfig DESCRIPTION="Simple Direct Media Layer" HOMEPAGE="http://www.libsdl.org/" @@ -10,7 +10,7 @@ SRC_URI="http://www.libsdl.org/release/SDL-${PV}.tar.gz" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="~alpha -amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="oss alsa esd arts nas X dga xv xinerama fbcon directfb ggi svga aalib opengl libcaca noaudio novideo nojoystick" # if you disable audio/video/joystick and something breaks, you pick up the pieces @@ -64,6 +64,8 @@ src_unpack() { src_compile() { local myconf= + + use amd64 && replace-flags -O? -O1 # bug #74608 use noaudio && myconf="${myconf} --disable-audio" use novideo \ && myconf="${myconf} --disable-video" \ |