diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-04-14 12:33:16 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-04-14 12:33:16 +0000 |
commit | d3d8d5c5327c9c9cf880bcaa6ee8214947240a5a (patch) | |
tree | 704e26f4e0a65a64a32f22ddd73e38527b5b2126 /media-libs | |
parent | Patch to fix cdda playback, bug 174578 (diff) | |
download | gentoo-2-d3d8d5c5327c9c9cf880bcaa6ee8214947240a5a.tar.gz gentoo-2-d3d8d5c5327c9c9cf880bcaa6ee8214947240a5a.tar.bz2 gentoo-2-d3d8d5c5327c9c9cf880bcaa6ee8214947240a5a.zip |
Close bug 148695 (again)
(Portage version: 2.1.2.3)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libsoundtouch/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/libsoundtouch/libsoundtouch-1.3.1-r1.ebuild | 11 |
2 files changed, 12 insertions, 5 deletions
diff --git a/media-libs/libsoundtouch/ChangeLog b/media-libs/libsoundtouch/ChangeLog index b769796c20ae..5d71f75d2123 100644 --- a/media-libs/libsoundtouch/ChangeLog +++ b/media-libs/libsoundtouch/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/libsoundtouch # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.16 2007/04/13 06:08:19 welp Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.17 2007/04/14 12:33:16 drac Exp $ + + 14 Apr 2007; Samuli Suominen <drac@gentoo.org> + libsoundtouch-1.3.1-r1.ebuild: + Close bug 148695 (again) 13 Apr 2007; Peter Weller <welp@gentoo.org> libsoundtouch-1.3.1-r1.ebuild: Stable on amd64 wrt bug 172088 diff --git a/media-libs/libsoundtouch/libsoundtouch-1.3.1-r1.ebuild b/media-libs/libsoundtouch/libsoundtouch-1.3.1-r1.ebuild index 3bc070bb8610..517a16b700b2 100644 --- a/media-libs/libsoundtouch/libsoundtouch-1.3.1-r1.ebuild +++ b/media-libs/libsoundtouch/libsoundtouch-1.3.1-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.3.1-r1.ebuild,v 1.4 2007/04/13 06:08:19 welp Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.3.1-r1.ebuild,v 1.5 2007/04/14 12:33:16 drac Exp $ -inherit autotools +inherit autotools flag-o-matic IUSE="sse" @@ -28,8 +28,11 @@ src_unpack() { eautoreconf # Bug #148695 - use sse \ - || sed -i -e '/^.*#define ALLOW_OPTIMIZATIONS.*$/d' "${S}"/include/STTypes.h + if use sse; then + append-flags -msse + else + sed -i -e '/^.*#define ALLOW_OPTIMIZATIONS.*$/d' "${S}"/include/STTypes.h + fi } src_compile() { |