diff options
author | Chris White <chriswhite@gentoo.org> | 2005-03-28 14:05:27 +0000 |
---|---|---|
committer | Chris White <chriswhite@gentoo.org> | 2005-03-28 14:05:27 +0000 |
commit | 63cfc81dfb8805936799f883c06888300fe519a3 (patch) | |
tree | 04d6c4c79e51793096dcb02d3264fcb25d7d8728 /media-libs | |
parent | add customlog flag (#85740) (diff) | |
download | gentoo-2-63cfc81dfb8805936799f883c06888300fe519a3.tar.gz gentoo-2-63cfc81dfb8805936799f883c06888300fe519a3.tar.bz2 gentoo-2-63cfc81dfb8805936799f883c06888300fe519a3.zip |
Fixed the pic logic that was breaking lots of stuff.
(Portage version: 2.0.51.19)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/xine-lib/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/xine-lib/xine-lib-1.0.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/media-libs/xine-lib/ChangeLog b/media-libs/xine-lib/ChangeLog index b4cbb8cab7d0..e626bc479560 100644 --- a/media-libs/xine-lib/ChangeLog +++ b/media-libs/xine-lib/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/xine-lib # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/ChangeLog,v 1.197 2005/03/17 10:13:14 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/ChangeLog,v 1.198 2005/03/28 14:05:27 chriswhite Exp $ + + 28 Mar 2005; Chris White <chriswhite@gentoo.org> xine-lib-1.0.ebuild: + Fixed the pic logic that was breaking lots of stuff. 17 Mar 2005; Sven Wegener <swegener@gentoo.org> xine-lib-1.0.ebuild: Fixed invalid atoms in *DEPEND. diff --git a/media-libs/xine-lib/xine-lib-1.0.ebuild b/media-libs/xine-lib/xine-lib-1.0.ebuild index 8619ea7202dd..7b643d92eb63 100644 --- a/media-libs/xine-lib/xine-lib-1.0.ebuild +++ b/media-libs/xine-lib/xine-lib-1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/xine-lib-1.0.ebuild,v 1.23 2005/03/17 10:13:14 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/xine-lib/xine-lib-1.0.ebuild,v 1.24 2005/03/28 14:05:27 chriswhite Exp $ inherit eutils flag-o-matic gcc libtool @@ -81,7 +81,6 @@ src_unpack() { #use amd64 && epatch ${FILESDIR}/configure-64bit-define.patch epatch ${FILESDIR}/${PN}-1_rc7-pic.patch - use x86 && epatch ${FILESDIR}/${PN}-hardened-mmx.patch # Fix detection of hppa2.0 and hppa1.1 CHOST use hppa && sed -e 's/hppa-/hppa*-linux-/' -i ${S}/configure @@ -108,6 +107,8 @@ src_compile() { #prevent quicktime crashing append-flags -frename-registers + use x86 && has_pic && append-flags -UHAVE_MMX + if [ "`gcc-major-version`" -ge "3" -a "`gcc-minor-version`" -ge "4" ]; then append-flags -fno-web #49509 filter-flags -fno-unit-at-a-time #55202 |