diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2006-11-05 23:53:00 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2006-11-05 23:53:00 +0000 |
commit | 48039475684ab19392873b41a785065f59417486 (patch) | |
tree | 07b82cd2d9b9c8b4b3e857624b2f3699018fb2dd /media-sound | |
parent | Stable for HPPA. (diff) | |
download | gentoo-2-48039475684ab19392873b41a785065f59417486.tar.gz gentoo-2-48039475684ab19392873b41a785065f59417486.tar.bz2 gentoo-2-48039475684ab19392873b41a785065f59417486.zip |
Fixed to build on ppc, bug #153749.
(Portage version: 2.1.1-r1)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/audacity/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/audacity/audacity-1.3.2.ebuild | 6 | ||||
-rw-r--r-- | media-sound/audacity/files/audacity-1.3.2-no-msse.patch | 11 |
3 files changed, 20 insertions, 3 deletions
diff --git a/media-sound/audacity/ChangeLog b/media-sound/audacity/ChangeLog index 711bad477b77..87f9890c9c4d 100644 --- a/media-sound/audacity/ChangeLog +++ b/media-sound/audacity/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/audacity # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.49 2006/10/31 16:12:11 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.50 2006/11/05 23:53:00 matsuu Exp $ + + 05 Nov 2006; MATSUU Takuto <matsuu@gentoo.org> + +files/audacity-1.3.2-no-msse.patch, audacity-1.3.2.ebuild: + Fixed to build on ppc, bug #153749. *audacity-1.3.2 (31 Oct 2006) diff --git a/media-sound/audacity/audacity-1.3.2.ebuild b/media-sound/audacity/audacity-1.3.2.ebuild index 8d5f51fd04d0..c5a88ee13bec 100644 --- a/media-sound/audacity/audacity-1.3.2.ebuild +++ b/media-sound/audacity/audacity-1.3.2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.2.ebuild,v 1.1 2006/10/31 16:12:11 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.2.ebuild,v 1.2 2006/11/05 23:53:00 matsuu Exp $ -inherit eutils +inherit eutils autotools IUSE="flac ladspa libsamplerate mp3 unicode vorbis" @@ -35,6 +35,8 @@ src_unpack() { cd "${S}" epatch "${FILESDIR}"/${P}-gentoo.patch + epatch "${FILESDIR}"/${P}-no-msse.patch + eautoreconf || die } src_compile() { diff --git a/media-sound/audacity/files/audacity-1.3.2-no-msse.patch b/media-sound/audacity/files/audacity-1.3.2-no-msse.patch new file mode 100644 index 000000000000..ecbec1450fc7 --- /dev/null +++ b/media-sound/audacity/files/audacity-1.3.2-no-msse.patch @@ -0,0 +1,11 @@ +--- lib-src/soundtouch/source/SoundTouch/Makefile.am.old 2006-11-02 13:30:00.000000000 +0900 ++++ lib-src/soundtouch/source/SoundTouch/Makefile.am 2006-11-02 13:30:12.000000000 +0900 +@@ -35,7 +35,7 @@ +
+ # ??? test for -fcheck-new in configure.ac
+ # other compiler flags to add
+-AM_CXXFLAGS=-O3 -msse -fcheck-new -I../../include
++AM_CXXFLAGS=-fcheck-new -I../../include
+
+ # other linking flags to add
+ #libSoundTouch_la_LIBADD=
|