diff options
author | Marc Hildebrand <zypher@gentoo.org> | 2004-07-22 08:07:16 +0000 |
---|---|---|
committer | Marc Hildebrand <zypher@gentoo.org> | 2004-07-22 08:07:16 +0000 |
commit | 96f96aef00f3b0076df8037b4e11adf65475f5fa (patch) | |
tree | 04b4f6a891fb90b0caca8d2067b04f6ba6f01342 /media-video/avidemux/avidemux-2.0.24.ebuild | |
parent | stray digest (diff) | |
download | historical-96f96aef00f3b0076df8037b4e11adf65475f5fa.tar.gz historical-96f96aef00f3b0076df8037b4e11adf65475f5fa.tar.bz2 historical-96f96aef00f3b0076df8037b4e11adf65475f5fa.zip |
Added myself as package maintainer, fixing configure, closes bug #57831
Diffstat (limited to 'media-video/avidemux/avidemux-2.0.24.ebuild')
-rw-r--r-- | media-video/avidemux/avidemux-2.0.24.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/media-video/avidemux/avidemux-2.0.24.ebuild b/media-video/avidemux/avidemux-2.0.24.ebuild index 31938eb111f4..0c9840614bef 100644 --- a/media-video/avidemux/avidemux-2.0.24.ebuild +++ b/media-video/avidemux/avidemux-2.0.24.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-2.0.24.ebuild,v 1.8 2004/07/22 05:46:52 chriswhite Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/avidemux/avidemux-2.0.24.ebuild,v 1.9 2004/07/22 08:07:16 zypher Exp $ inherit eutils flag-o-matic @@ -36,12 +36,16 @@ DEPEND="$RDEPEND >=sys-devel/autoconf-2.58 S=${WORKDIR}/${MY_P} -filter-flags "-fno-default-inline" +filter-flags "-fno-default-inline -funroll-loops -funroll-all-loops \ + -maltivec -mabi=altivec" src_compile() { # Fixes a possible automake error due to clock skew touch -r * + # Small cosmetic correction of configure: + sed -i -e /^d$/d ${S}/configure ${S}/configure.in ${S}/configure.in.in + export WANT_AUTOCONF=2.5 autoconf @@ -62,9 +66,6 @@ src_compile() { use debug && myconf="${myconf} --enable-debug=full" use nls || myconf="${myconf} --disable-nls" - filter-flags -funroll-loops -funroll-all-loops - filter-flags -maltivec -mabi=altivec - econf ${myconf} || die "configure failed" make || die "make failed" |