diff options
author | David Chamberlain <daybird@gentoo.org> | 2002-05-14 01:16:36 +0000 |
---|---|---|
committer | David Chamberlain <daybird@gentoo.org> | 2002-05-14 01:16:36 +0000 |
commit | e35f1d39c5e0e979e17ed81b3232342a1e28431c (patch) | |
tree | 2559aeaa94167032f7c6bb233922a8faf3697627 /media-sound/mpg123 | |
parent | Fixes #2339. (diff) | |
download | gentoo-2-e35f1d39c5e0e979e17ed81b3232342a1e28431c.tar.gz gentoo-2-e35f1d39c5e0e979e17ed81b3232342a1e28431c.tar.bz2 gentoo-2-e35f1d39c5e0e979e17ed81b3232342a1e28431c.zip |
ppc fix for Makefile sed
Diffstat (limited to 'media-sound/mpg123')
-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() { |