diff options
author | 2002-05-14 01:16:36 +0000 | |
---|---|---|
committer | 2002-05-14 01:16:36 +0000 | |
commit | 00039c0a602fff6848677559235d0338a991ed4a (patch) | |
tree | d2a885afdaf99ffc722c8718a1a1cc71c93fc3bb | |
parent | Fixes #2339. (diff) | |
download | historical-00039c0a602fff6848677559235d0338a991ed4a.tar.gz historical-00039c0a602fff6848677559235d0338a991ed4a.tar.bz2 historical-00039c0a602fff6848677559235d0338a991ed4a.zip |
ppc fix for Makefile sed
-rw-r--r-- | media-sound/mpg123/ChangeLog | 5 | ||||
-rw-r--r-- | media-sound/mpg123/mpg123-0.59r-r1.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/media-sound/mpg123/ChangeLog b/media-sound/mpg123/ChangeLog index 7f6ba801500c..de6611cb6094 100644 --- a/media-sound/mpg123/ChangeLog +++ b/media-sound/mpg123/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for media-sound/mpg123 # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v 1.2 2002/04/27 10:58:46 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/ChangeLog,v 1.3 2002/05/14 01:16:36 daybird Exp $ *mpg123-0.59r-r1 (27 Apr 2002) + 13 May 2002; daybird <daybird@gentoo.org> : + another ppc fix - ppc CFLAGS now get written to Makefile. + 27 Apr 2002; pvdabeel <pvdabeel@gentoo.org> : ppc fix diff --git a/media-sound/mpg123/mpg123-0.59r-r1.ebuild b/media-sound/mpg123/mpg123-0.59r-r1.ebuild index b8ea99b4f86f..35154459849a 100644 --- a/media-sound/mpg123/mpg123-0.59r-r1.ebuild +++ b/media-sound/mpg123/mpg123-0.59r-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Id: mpg123-0.59r-r1.ebuild,v 1.3 2002/05/09 23:48:34 blauwers Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpg123/mpg123-0.59r-r1.ebuild,v 1.4 2002/05/14 01:16:36 daybird Exp $ S=${WORKDIR}/${P} @@ -16,7 +16,8 @@ src_unpack () { cd ${S} patch -p1 < ${FILESDIR}/${P}-sparc.diff cp Makefile Makefile.orig - sed -e "s:-O2 -m486:${CFLAGS}:" Makefile.orig > Makefile + sed -e "s:-O2 -m486:${CFLAGS}:" \ + -e "s:-O2 -mcpu=ppc:${CFLAGS}:g" Makefile.orig > Makefile } src_compile() { |