diff options
author | 2007-09-24 18:13:39 +0000 | |
---|---|---|
committer | 2007-09-24 18:13:39 +0000 | |
commit | 39a4576ff07e9a0b94eadcca44ddcd55b6958353 (patch) | |
tree | 3fbf420579c96edf6a33c5520ecba42f31844bab /media-video | |
parent | stable x86, bug 184421 (diff) | |
download | gentoo-2-39a4576ff07e9a0b94eadcca44ddcd55b6958353.tar.gz gentoo-2-39a4576ff07e9a0b94eadcca44ddcd55b6958353.tar.bz2 gentoo-2-39a4576ff07e9a0b94eadcca44ddcd55b6958353.zip |
filtering -fforce-addr on x86, see bug 189910 by jakub; adding some die comments
(Portage version: 2.1.3.9)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/transcode/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/transcode/transcode-1.0.4_rc6.ebuild | 10 |
2 files changed, 12 insertions, 5 deletions
diff --git a/media-video/transcode/ChangeLog b/media-video/transcode/ChangeLog index 64c804dd3d3b..7be1ef6a3cd7 100644 --- a/media-video/transcode/ChangeLog +++ b/media-video/transcode/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-video/transcode # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/ChangeLog,v 1.187 2007/08/25 14:35:52 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/ChangeLog,v 1.188 2007/09/24 18:13:39 opfer Exp $ + + 24 Sep 2007; Christian Faulhammer <opfer@gentoo.org> + transcode-1.0.4_rc6.ebuild: + filtering -fforce-addr on x86, see bug 189910 by jakub; adding some die + comments *transcode-1.1.0_alpha4 (25 Aug 2007) diff --git a/media-video/transcode/transcode-1.0.4_rc6.ebuild b/media-video/transcode/transcode-1.0.4_rc6.ebuild index 262d36002874..f42317dda0d4 100644 --- a/media-video/transcode/transcode-1.0.4_rc6.ebuild +++ b/media-video/transcode/transcode-1.0.4_rc6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/transcode-1.0.4_rc6.ebuild,v 1.2 2007/08/16 16:35:30 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/transcode-1.0.4_rc6.ebuild,v 1.3 2007/09/24 18:13:39 opfer Exp $ WANT_AUTOMAKE=1.8 @@ -64,6 +64,8 @@ src_compile() { filter-flags -maltivec -mabi=altivec -momit-leaf-frame-pointer #145849 use amd64 && filter-flags -fweb + # bug 189910 + use x86 && filter-flags -fforce-addr if use ppc || use ppc64 ; then append-flags -U__ALTIVEC__ @@ -105,13 +107,13 @@ src_compile() { --with-libpostproc-builddir="/usr/$(get_libdir)" \ --disable-avifile \ --disable-xio" - econf ${myconf} || die + econf ${myconf} || die "econf failed" - emake all || die + emake all || die "emake all failed" } src_install () { - make DESTDIR="${D}" install || die + make DESTDIR="${D}" install || die "make install failed" #do not install the filters that make dvdrip hang unless we ask for them if ! use extrafilters ; then |