diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-04-25 02:17:26 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-04-25 02:17:26 +0000 |
commit | 882852f0a3d3d9dc42f529f31929a055ab768a28 (patch) | |
tree | 76cebc495bfb69b37c7f108c4ad66c489cf53cfc /media-video/transcode | |
parent | Add a workaround for broken dependencies until it can be fixed properly in th... (diff) | |
download | gentoo-2-882852f0a3d3d9dc42f529f31929a055ab768a28.tar.gz gentoo-2-882852f0a3d3d9dc42f529f31929a055ab768a28.tar.bz2 gentoo-2-882852f0a3d3d9dc42f529f31929a055ab768a28.zip |
Made transcode-0.6.11 use append-flags instead of passing CFLAGS to econf. Fixes #84362.
(Portage version: 2.0.51.20)
Diffstat (limited to 'media-video/transcode')
-rw-r--r-- | media-video/transcode/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/transcode/transcode-0.6.11.ebuild | 5 |
2 files changed, 9 insertions, 3 deletions
diff --git a/media-video/transcode/ChangeLog b/media-video/transcode/ChangeLog index 6f7254eb6532..83f04240e7da 100644 --- a/media-video/transcode/ChangeLog +++ b/media-video/transcode/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-video/transcode # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/ChangeLog,v 1.95 2005/04/25 00:45:37 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/ChangeLog,v 1.96 2005/04/25 02:17:26 flameeyes Exp $ + + 25 Apr 2005; Diego Pettenò <flameeyes@gentoo.org> + transcode-0.6.11.ebuild: + Made transcode-0.6.11 use append-flags instead of passing CFLAGS to econf. + Fixes #84362 25 Apr 2005; Diego Pettenò <flameeyes@gentoo.org> transcode-0.6.14-r1.ebuild: diff --git a/media-video/transcode/transcode-0.6.11.ebuild b/media-video/transcode/transcode-0.6.11.ebuild index 3dc14817ecfa..d63d94e072c9 100644 --- a/media-video/transcode/transcode-0.6.11.ebuild +++ b/media-video/transcode/transcode-0.6.11.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-video/transcode/transcode-0.6.11.ebuild,v 1.14 2005/03/20 17:26:03 lu_zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/transcode-0.6.11.ebuild,v 1.15 2005/04/25 02:17:26 flameeyes Exp $ inherit libtool flag-o-matic eutils gcc @@ -112,7 +112,8 @@ src_compile() { [ -f ${ROOT}/usr/include/postproc/postprocess.h ] && \ myconf="${myconf} --with-libpostproc-builddir=${ROOT}/usr/lib" - econf ${myconf} CFLAGS="${CFLAGS} -DDCT_YUV_PRECISION=1" || die + append-flags -DDCT_YUV_PRECISION=1 + econf ${myconf} || die # Do not use emake !! # export CFLAGS="${CFLAGS} -DDCT_YUV_PRECISION=1" |