diff options
author | Mark Guertin <gerk@gentoo.org> | 2002-09-30 04:38:32 +0000 |
---|---|---|
committer | Mark Guertin <gerk@gentoo.org> | 2002-09-30 04:38:32 +0000 |
commit | e662740986ccc21f5220244ffaff3bd5b30b190f (patch) | |
tree | 2df52838573a54defff17a7d7c769c74006a6f90 /media-libs/xine-lib | |
parent | removed unneeded files out of this directory (diff) | |
download | historical-e662740986ccc21f5220244ffaff3bd5b30b190f.tar.gz historical-e662740986ccc21f5220244ffaff3bd5b30b190f.tar.bz2 historical-e662740986ccc21f5220244ffaff3bd5b30b190f.zip |
updated flag filters for ppc
Diffstat (limited to 'media-libs/xine-lib')
-rw-r--r-- | media-libs/xine-lib/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/xine-lib/xine-lib-0.9.13-r1.ebuild | 10 |
2 files changed, 10 insertions, 6 deletions
diff --git a/media-libs/xine-lib/ChangeLog b/media-libs/xine-lib/ChangeLog index aeb03c8be29e..18db80bca328 100644 --- a/media-libs/xine-lib/ChangeLog +++ b/media-libs/xine-lib/ChangeLog @@ -1,9 +1,13 @@ # ChangeLog for media-libs/xine-lib # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/ChangeLog,v 1.20 2002/08/13 03:55:48 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/ChangeLog,v 1.21 2002/09/30 04:38:32 gerk Exp $ *xine-lib-0.9.13-r1 (09 Aug 2002) + 29 Sep 2002; Mark Guertin <gerk@gentoo.org> xine-0.9.13-r1.ebuild : + fixups of -maltivec flag filters (added mabi=altivec as well), done + now with flag-o-matic + 12 Aug 2002; Mark Guertin <gerk@gentoo.org> xine-0.9.13-r1.ebuild : Added ppc to keywords and a fix to sed out -maltivec and -mabi=altivec, this build doesn't play nicely with it, as it uses its own altivec code. diff --git a/media-libs/xine-lib/xine-lib-0.9.13-r1.ebuild b/media-libs/xine-lib/xine-lib-0.9.13-r1.ebuild index 5ef973041559..da293ffdcc2e 100644 --- a/media-libs/xine-lib/xine-lib-0.9.13-r1.ebuild +++ b/media-libs/xine-lib/xine-lib-0.9.13-r1.ebuild @@ -1,9 +1,13 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/xine-lib-0.9.13-r1.ebuild,v 1.3 2002/08/14 13:08:10 murphy Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/xine-lib-0.9.13-r1.ebuild,v 1.4 2002/09/30 04:38:32 gerk Exp $ inherit libtool || die "I lost my inheritance" +# this build doesn't play nice with -maltivec (gcc 3.2 only option) on ppc +inherit flag-o-matic || die "I lost my inheritance" +filter-flags "-maltivec -mabi=altivec" + S=${WORKDIR}/${P} DESCRIPTION="Xine is a free gpl-licensed video player for unix-like systems" HOMEPAGE="http://xine.sourceforge.net/" @@ -38,10 +42,6 @@ src_unpack() { unpack ${A} cd ${S} - # this build doesn't play nice with -maltivec (gcc 3.2 only option) on ppc - # Gerk - Aug 12/02 - use ppc && ( CFLAGS=`echo $CFLAGS | sed "s:-maltivec::g" | sed "s:-mabi=altivec::g"` ) - patch -p1 < ${FILESDIR}/xine-lib-configure.patch || die "configure patch failed" # allows kxine to work; see bug #5412 |