diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2005-01-02 19:42:09 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2005-01-02 19:42:09 +0000 |
commit | ae8049a9ae86ea3810916fd1f300d7f603d5637f (patch) | |
tree | 55df6d42c9bbd9f38a2f8ff6de685187d83ae86b /media-plugins/bmp-crossfade | |
parent | Change encoding to UTF-8 for GLEP 31 compliance (Manifest recommit) (diff) | |
download | gentoo-2-ae8049a9ae86ea3810916fd1f300d7f603d5637f.tar.gz gentoo-2-ae8049a9ae86ea3810916fd1f300d7f603d5637f.tar.bz2 gentoo-2-ae8049a9ae86ea3810916fd1f300d7f603d5637f.zip |
Unconditionally disable built-in OSS driver, stable on x86. Closes bug #76020.
Diffstat (limited to 'media-plugins/bmp-crossfade')
-rw-r--r-- | media-plugins/bmp-crossfade/ChangeLog | 8 | ||||
-rw-r--r-- | media-plugins/bmp-crossfade/bmp-crossfade-0.3.8.ebuild | 9 |
2 files changed, 11 insertions, 6 deletions
diff --git a/media-plugins/bmp-crossfade/ChangeLog b/media-plugins/bmp-crossfade/ChangeLog index db899eb2e8d0..42d946db2052 100644 --- a/media-plugins/bmp-crossfade/ChangeLog +++ b/media-plugins/bmp-crossfade/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-plugins/bmp-crossfade -# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/bmp-crossfade/ChangeLog,v 1.2 2004/12/29 13:06:55 absinthe Exp $ +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/bmp-crossfade/ChangeLog,v 1.3 2005/01/02 19:42:09 chainsaw Exp $ + + 02 Jan 2005; Tony Vroon <chainsaw@gentoo.org> bmp-crossfade-0.3.8.ebuild: + Disable broken built-in OSS driver unconditially. Stable on x86. Closes bug + #76020. 29 Dec 2004; Dylan Carlson <absinthe@gentoo.org> bmp-crossfade-0.3.8.ebuild: diff --git a/media-plugins/bmp-crossfade/bmp-crossfade-0.3.8.ebuild b/media-plugins/bmp-crossfade/bmp-crossfade-0.3.8.ebuild index 183000ecdc32..1cd259613e9e 100644 --- a/media-plugins/bmp-crossfade/bmp-crossfade-0.3.8.ebuild +++ b/media-plugins/bmp-crossfade/bmp-crossfade-0.3.8.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/bmp-crossfade/bmp-crossfade-0.3.8.ebuild,v 1.2 2004/12/29 13:06:55 absinthe Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/bmp-crossfade/bmp-crossfade-0.3.8.ebuild,v 1.3 2005/01/02 19:42:09 chainsaw Exp $ IUSE="" inherit eutils @@ -15,7 +15,7 @@ HOMEPAGE="http://www.eisenlohr.org/xmms-crossfade/index.html" SLOT="0" LICENSE="GPL-2" -KEYWORDS="~x86 ~amd64" +KEYWORDS="x86 ~amd64" DEPEND="media-sound/beep-media-player media-libs/libsamplerate" @@ -29,7 +29,8 @@ src_unpack() { } src_compile() { - econf --enable-player=beep || die + econf --enable-player=beep \ + --disable-oss || die emake || die } |