* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-06-29 14:50 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-06-29 14:50 UTC (permalink / raw
To: gentoo-commits
aballier 11/06/29 14:50:13
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
convert to eapi4, add eprefix stuff, make use of REQUIRED_USE
(Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
Revision Changes Path
1.47 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.47&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.47&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.46&r2=1.47
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- ffmpeg-9999.ebuild 27 Jun 2011 14:25:08 -0000 1.46
+++ ffmpeg-9999.ebuild 29 Jun 2011 14:50:13 -0000 1.47
@@ -1,8 +1,8 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.46 2011/06/27 14:25:08 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.47 2011/06/29 14:50:13 aballier Exp $
-EAPI="2"
+EAPI="4"
SCM=""
if [ "${PV#9999}" != "${PV}" ] ; then
@@ -88,6 +88,8 @@
v4l? ( sys-kernel/linux-headers )
v4l2? ( sys-kernel/linux-headers )
"
+# faac is license-incompatible with ffmpeg
+REQUIRED_USE="bindist? ( encode? ( !faac ) )"
S=${WORKDIR}/${P/_/-}
@@ -127,13 +129,7 @@
for i in theora vorbis x264 xvid; do
use ${i} && myconf="${myconf} --enable-lib${i}"
done
- if use bindist
- then
- use faac && ewarn "faac is nonfree and cannot be distributed;
- disabling faac support."
- else
- use faac && myconf="${myconf} --enable-libfaac --enable-nonfree"
- fi
+ use faac && myconf="${myconf} --enable-libfaac --enable-nonfree"
else
myconf="${myconf} --disable-encoders"
fi
@@ -236,10 +232,10 @@
cd "${S}"
./configure \
- --prefix=/usr \
- --libdir=/usr/$(get_libdir) \
- --shlibdir=/usr/$(get_libdir) \
- --mandir=/usr/share/man \
+ --prefix="${EPREFIX}/usr" \
+ --libdir="${EPREFIX}/usr/$(get_libdir)" \
+ --shlibdir="${EPREFIX}/usr/$(get_libdir)" \
+ --mandir="${EPREFIX}/usr/share/man" \
--enable-shared \
--cc="$(tc-getCC)" \
$(use_enable static-libs static) \
@@ -247,30 +243,31 @@
}
src_compile() {
- emake version.h || die #252269
- emake || die
+ #252269
+ emake version.h
+ emake
if use qt-faststart; then
tc-export CC
- emake -C tools qt-faststart || die
+ emake -C tools qt-faststart
fi
}
src_install() {
- emake DESTDIR="${D}" install install-man || die
+ emake DESTDIR="${D}" install install-man
dodoc Changelog README INSTALL
- dodoc doc/*
+ dodoc -r doc/*
if use qt-faststart; then
- dobin tools/qt-faststart || die
+ dobin tools/qt-faststart
fi
}
src_test() {
if use encode ; then
LD_LIBRARY_PATH="${S}/libpostproc:${S}/libswscale:${S}/libavcodec:${S}/libavdevice:${S}/libavfilter:${S}/libavformat:${S}/libavutil" \
- emake test || die "Some tests failed"
+ emake test
else
ewarn "Tests fail without USE=encode, skipping"
fi
1.425 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.425&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.425&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.424&r2=1.425
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.424
retrieving revision 1.425
diff -u -r1.424 -r1.425
--- ChangeLog 27 Jun 2011 14:25:08 -0000 1.424
+++ ChangeLog 29 Jun 2011 14:50:13 -0000 1.425
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.424 2011/06/27 14:25:08 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.425 2011/06/29 14:50:13 aballier Exp $
+
+ 29 Jun 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ convert to eapi4, add eprefix stuff, make use of REQUIRED_USE
27 Jun 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
add openal useflag
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2015-05-19 9:24 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2015-05-19 9:24 UTC (permalink / raw
To: gentoo-commits
aballier 15/05/19 09:24:10
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
bump x265 dep
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.189 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.189&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.189&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.188&r2=1.189
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -r1.188 -r1.189
--- ffmpeg-9999.ebuild 17 Mar 2015 08:15:35 -0000 1.188
+++ ffmpeg-9999.ebuild 19 May 2015 09:24:10 -0000 1.189
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.188 2015/03/17 08:15:35 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.189 2015/05/19 09:24:10 aballier Exp $
EAPI="5"
@@ -172,7 +172,7 @@
wavpack? ( >=media-sound/wavpack-4.60.1-r1[${MULTILIB_USEDEP}] )
webp? ( >=media-libs/libwebp-0.3.0[${MULTILIB_USEDEP}] )
x264? ( >=media-libs/x264-0.0.20130506:=[${MULTILIB_USEDEP}] )
- x265? ( >=media-libs/x265-1.2:=[${MULTILIB_USEDEP}] )
+ x265? ( >=media-libs/x265-1.6:=[${MULTILIB_USEDEP}] )
xvid? ( >=media-libs/xvid-1.3.2-r1[${MULTILIB_USEDEP}] )
)
fdk? ( >=media-libs/fdk-aac-0.1.3:=[${MULTILIB_USEDEP}] )
1.858 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.858&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.858&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.857&r2=1.858
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.857
retrieving revision 1.858
diff -u -r1.857 -r1.858
--- ChangeLog 18 May 2015 13:45:39 -0000 1.857
+++ ChangeLog 19 May 2015 09:24:10 -0000 1.858
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.857 2015/05/18 13:45:39 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.858 2015/05/19 09:24:10 aballier Exp $
+
+ 19 May 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ bump x265 dep
*ffmpeg-2.6.3 (18 May 2015)
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2015-03-06 14:14 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2015-03-06 14:14 UTC (permalink / raw
To: gentoo-commits
aballier 15/03/06 14:14:17
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
drop mips32r2 useflag (removed upstream)
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.187 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.187&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.187&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.186&r2=1.187
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.186
retrieving revision 1.187
diff -u -r1.186 -r1.187
--- ffmpeg-9999.ebuild 5 Mar 2015 13:50:46 -0000 1.186
+++ ffmpeg-9999.ebuild 6 Mar 2015 14:14:17 -0000 1.187
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.186 2015/03/05 13:50:46 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.187 2015/03/06 14:14:17 aballier Exp $
EAPI="5"
@@ -103,7 +103,7 @@
# Strings for CPU features in the useflag[:configure_option] form
# if :configure_option isn't set, it will use 'useflag' as configure option
ARM_CPU_FEATURES=( armv5te armv6 armv6t2 neon armvfp:vfp )
-MIPS_CPU_FEATURES=( mips32r2 mipsdspr1 mipsdspr2 mipsfpu )
+MIPS_CPU_FEATURES=( mipsdspr1 mipsdspr2 mipsfpu )
PPC_CPU_FEATURES=( altivec )
X86_CPU_FEATURES_RAW=( 3dnow:amd3dnow 3dnowext:amd3dnowext avx:avx avx2:avx2 fma3:fma3 fma4:fma4 mmx:mmx mmxext:mmxext sse:sse sse2:sse2 sse3:sse3 ssse3:ssse3 sse4_1:sse4 sse4_2:sse42 xop:xop )
X86_CPU_FEATURES=( ${X86_CPU_FEATURES_RAW[@]/#/cpu_flags_x86_} )
1.842 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.842&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.842&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.841&r2=1.842
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.841
retrieving revision 1.842
diff -u -r1.841 -r1.842
--- ChangeLog 5 Mar 2015 14:00:41 -0000 1.841
+++ ChangeLog 6 Mar 2015 14:14:17 -0000 1.842
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.841 2015/03/05 14:00:41 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.842 2015/03/06 14:14:17 aballier Exp $
+
+ 06 Mar 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ drop mips32r2 useflag (removed upstream)
05 Mar 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-1.0.10.ebuild,
ffmpeg-1.2.12.ebuild, ffmpeg-1.2.6-r1.ebuild, ffmpeg-2.2.13.ebuild:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2015-03-05 13:50 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2015-03-05 13:50 UTC (permalink / raw
To: gentoo-commits
aballier 15/03/05 13:50:46
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
convert to RESTRICT=bindist, bug #541588
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.186 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.186&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.186&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.185&r2=1.186
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -r1.185 -r1.186
--- ffmpeg-9999.ebuild 18 Feb 2015 14:36:26 -0000 1.185
+++ ffmpeg-9999.ebuild 5 Mar 2015 13:50:46 -0000 1.186
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.185 2015/02/18 14:36:26 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.186 2015/03/05 13:50:46 aballier Exp $
EAPI="5"
@@ -95,7 +95,7 @@
)
IUSE="
- alsa bindist +encode examples jack oss pic static-libs test v4l
+ alsa +encode examples jack oss pic static-libs test v4l
${FFMPEG_FLAG_MAP[@]%:*}
${FFMPEG_ENCODER_FLAG_MAP[@]%:*}
"
@@ -269,15 +269,15 @@
)
"
REQUIRED_USE="
- bindist? (
- encode? ( !faac !aacplus )
- gpl? ( !openssl !fdk )
- )
libv4l? ( v4l )
fftools_cws2fws? ( zlib )
test? ( encode )
${GPL_REQUIRED_USE}
${CPU_REQUIRED_USE}"
+RESTRICT="
+ encode? ( faac? ( bindist ) aacplus? ( bindist ) )
+ gpl? ( openssl? ( bindist ) fdk? ( bindist ) )
+"
S=${WORKDIR}/${P/_/-}
1.838 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.838&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.838&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.837&r2=1.838
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.837
retrieving revision 1.838
diff -u -r1.837 -r1.838
--- ChangeLog 20 Feb 2015 11:17:36 -0000 1.837
+++ ChangeLog 5 Mar 2015 13:50:46 -0000 1.838
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.837 2015/02/20 11:17:36 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.838 2015/03/05 13:50:46 aballier Exp $
+
+ 05 Mar 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ convert to RESTRICT=bindist, bug #541588
*ffmpeg-2.2.13 (20 Feb 2015)
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2015-02-18 14:36 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2015-02-18 14:36 UTC (permalink / raw
To: gentoo-commits
aballier 15/02/18 14:36:26
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
cosmetics
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.185 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.185&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.185&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.184&r2=1.185
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.184
retrieving revision 1.185
diff -u -r1.184 -r1.185
--- ffmpeg-9999.ebuild 18 Feb 2015 14:28:33 -0000 1.184
+++ ffmpeg-9999.ebuild 18 Feb 2015 14:36:26 -0000 1.185
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.184 2015/02/18 14:28:33 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.185 2015/02/18 14:36:26 aballier Exp $
EAPI="5"
@@ -147,11 +147,8 @@
amd64:X86
"
-FFTOOLS="aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart trasher"
-
-for i in ${FFTOOLS}; do
- IUSE="${IUSE} +fftools_$i"
-done
+FFTOOLS=( aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart trasher )
+IUSE="${IUSE} ${FFTOOLS[@]/#/+fftools_}"
RDEPEND="
alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
@@ -419,7 +416,7 @@
emake V=1
if multilib_is_native_abi; then
- for i in ${FFTOOLS} ; do
+ for i in "${FFTOOLS[@]}" ; do
if use fftools_${i} ; then
emake V=1 tools/${i}
fi
@@ -431,7 +428,7 @@
emake V=1 DESTDIR="${D}" install install-man
if multilib_is_native_abi; then
- for i in ${FFTOOLS} ; do
+ for i in "${FFTOOLS[@]}" ; do
if use fftools_${i} ; then
dobin tools/${i}
fi
1.836 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.836&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.836&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.835&r2=1.836
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.835
retrieving revision 1.836
diff -u -r1.835 -r1.836
--- ChangeLog 18 Feb 2015 14:28:33 -0000 1.835
+++ ChangeLog 18 Feb 2015 14:36:26 -0000 1.836
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.835 2015/02/18 14:28:33 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.836 2015/02/18 14:36:26 aballier Exp $
+
+ 18 Feb 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ cosmetics
18 Feb 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
rework a bit cpu features handling to pass only relevant options to configure
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2015-02-18 14:28 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2015-02-18 14:28 UTC (permalink / raw
To: gentoo-commits
aballier 15/02/18 14:28:33
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
rework a bit cpu features handling to pass only relevant options to configure
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.184 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.184&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.184&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.183&r2=1.184
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -r1.183 -r1.184
--- ffmpeg-9999.ebuild 18 Feb 2015 11:54:07 -0000 1.183
+++ ffmpeg-9999.ebuild 18 Feb 2015 14:28:33 -0000 1.184
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.183 2015/02/18 11:54:07 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.184 2015/02/18 14:28:33 aballier Exp $
EAPI="5"
@@ -100,10 +100,13 @@
${FFMPEG_ENCODER_FLAG_MAP[@]%:*}
"
-ARM_CPU_FEATURES="armv5te armv6 armv6t2 neon armvfp:vfp"
-MIPS_CPU_FEATURES="mips32r2 mipsdspr1 mipsdspr2 mipsfpu"
-PPC_CPU_FEATURES="altivec"
-X86_CPU_FEATURES=( 3dnow:amd3dnow 3dnowext:amd3dnowext avx:avx avx2:avx2 fma3:fma3 fma4:fma4 mmx:mmx mmxext:mmxext sse:sse sse2:sse2 sse3:sse3 ssse3:ssse3 sse4_1:sse4 sse4_2:sse42 xop:xop )
+# Strings for CPU features in the useflag[:configure_option] form
+# if :configure_option isn't set, it will use 'useflag' as configure option
+ARM_CPU_FEATURES=( armv5te armv6 armv6t2 neon armvfp:vfp )
+MIPS_CPU_FEATURES=( mips32r2 mipsdspr1 mipsdspr2 mipsfpu )
+PPC_CPU_FEATURES=( altivec )
+X86_CPU_FEATURES_RAW=( 3dnow:amd3dnow 3dnowext:amd3dnowext avx:avx avx2:avx2 fma3:fma3 fma4:fma4 mmx:mmx mmxext:mmxext sse:sse sse2:sse2 sse3:sse3 ssse3:ssse3 sse4_1:sse4 sse4_2:sse42 xop:xop )
+X86_CPU_FEATURES=( ${X86_CPU_FEATURES_RAW[@]/#/cpu_flags_x86_} )
X86_CPU_REQUIRED_USE="
cpu_flags_x86_avx2? ( cpu_flags_x86_avx )
cpu_flags_x86_fma4? ( cpu_flags_x86_avx )
@@ -121,21 +124,28 @@
cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx )
"
-# String for CPU features in the useflag[:configure_option] form
-# if :configure_option isn't set, it will use 'useflag' as configure option
-CPU_FEATURES="
- ${ARM_CPU_FEATURES}
- ${MIPS_CPU_FEATURES}
- ${PPC_CPU_FEATURES}
- ${X86_CPU_FEATURES[@]/#/cpu_flags_x86_}
+IUSE="${IUSE}
+ ${ARM_CPU_FEATURES[@]%:*}
+ ${MIPS_CPU_FEATURES[@]%:*}
+ ${PPC_CPU_FEATURES[@]%:*}
+ ${X86_CPU_FEATURES[@]%:*}
"
+
CPU_REQUIRED_USE="
${X86_CPU_REQUIRED_USE}
"
-for i in ${CPU_FEATURES}; do
- IUSE="${IUSE} ${i%:*}"
-done
+# "$(tc-arch):XXX" form where XXX_CPU_FEATURES are the cpu features that apply to
+# $(tc-arch).
+CPU_FEATURES_MAP="
+ arm:ARM
+ arm64:ARM
+ mips:MIPS
+ ppc:PPC
+ ppc64:PPC
+ x86:X86
+ amd64:X86
+"
FFTOOLS="aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart trasher"
@@ -335,8 +345,13 @@
fi
# CPU features
- for i in ${CPU_FEATURES}; do
- use ${i%:*} || myconf+=( --disable-${i#*:} )
+ for i in ${CPU_FEATURES_MAP} ; do
+ if [ "$(tc-arch)" = "${i%:*}" ] ; then
+ local var="${i#*:}_CPU_FEATURES[@]"
+ for j in ${!var} ; do
+ use ${j%:*} || myconf+=( --disable-${j#*:} )
+ done
+ fi
done
if use pic ; then
1.835 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.835&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.835&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.834&r2=1.835
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.834
retrieving revision 1.835
diff -u -r1.834 -r1.835
--- ChangeLog 18 Feb 2015 11:54:07 -0000 1.834
+++ ChangeLog 18 Feb 2015 14:28:33 -0000 1.835
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.834 2015/02/18 11:54:07 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.835 2015/02/18 14:28:33 aballier Exp $
+
+ 18 Feb 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ rework a bit cpu features handling to pass only relevant options to configure
18 Feb 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
drop old & useless comment
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2015-02-18 11:54 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2015-02-18 11:54 UTC (permalink / raw
To: gentoo-commits
aballier 15/02/18 11:54:07
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
drop old & useless comment
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.183 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.183&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.183&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.182&r2=1.183
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -r1.182 -r1.183
--- ffmpeg-9999.ebuild 18 Feb 2015 11:52:45 -0000 1.182
+++ ffmpeg-9999.ebuild 18 Feb 2015 11:54:07 -0000 1.183
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.182 2015/02/18 11:52:45 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.183 2015/02/18 11:54:07 aballier Exp $
EAPI="5"
@@ -261,7 +261,6 @@
X? ( !xcb? ( gpl ) )
)
"
-# faac is license-incompatible with ffmpeg
REQUIRED_USE="
bindist? (
encode? ( !faac !aacplus )
1.834 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.834&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.834&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.833&r2=1.834
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.833
retrieving revision 1.834
diff -u -r1.833 -r1.834
--- ChangeLog 18 Feb 2015 11:52:45 -0000 1.833
+++ ChangeLog 18 Feb 2015 11:54:07 -0000 1.834
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.833 2015/02/18 11:52:45 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.834 2015/02/18 11:54:07 aballier Exp $
+
+ 18 Feb 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ drop old & useless comment
18 Feb 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
factorize filling IUSE and the map useflag -> configure option.
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2015-02-18 11:52 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2015-02-18 11:52 UTC (permalink / raw
To: gentoo-commits
aballier 15/02/18 11:52:45
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
factorize filling IUSE and the map useflag -> configure option.
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.182 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.182&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.182&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.181&r2=1.182
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -r1.181 -r1.182
--- ffmpeg-9999.ebuild 18 Feb 2015 10:47:35 -0000 1.181
+++ ffmpeg-9999.ebuild 18 Feb 2015 11:52:45 -0000 1.182
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.181 2015/02/18 10:47:35 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.182 2015/02/18 11:52:45 aballier Exp $
EAPI="5"
@@ -57,15 +57,48 @@
if [ "${PV#9999}" = "${PV}" ] ; then
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
fi
+
+# Options to use as use_enable in the foo[:bar] form.
+# This will feed configure with $(use_enable foo bar)
+# or $(use_enable foo foo) if no :bar is set.
+# foo is added to IUSE.
+FFMPEG_FLAG_MAP=(
+ +bzip2:bzlib cpudetection:runtime-cpudetect debug doc gnutls +gpl
+ +hardcoded-tables +iconv lzma +network openssl +postproc
+ samba:libsmbclient sdl:ffplay vaapi vdpau X:xlib xcb:libxcb
+ xcb:libxcb-shm xcb:libxcb-xfixes +zlib
+ # libavdevice options
+ cdio:libcdio iec61883:libiec61883 ieee1394:libdc1394 libcaca openal
+ opengl
+ # indevs
+ libv4l:libv4l2 pulseaudio:libpulse
+ # decoders
+ amr:libopencore-amrwb amr:libopencore-amrnb fdk:libfdk-aac
+ jpeg2k:libopenjpeg bluray:libbluray celt:libcelt gme:libgme gsm:libgsm
+ modplug:libmodplug opus:libopus quvi:libquvi rtmp:librtmp ssh:libssh
+ schroedinger:libschroedinger speex:libspeex vorbis:libvorbis vpx:libvpx
+ zvbi:libzvbi
+ # libavfilter options
+ bs2b:libbs2b flite:libflite frei0r fribidi:libfribidi fontconfig ladspa
+ libass truetype:libfreetype
+ # libswresample options
+ libsoxr
+ # Threads; we only support pthread for now but ffmpeg supports more
+ +threads:pthreads
+)
+
+# Same as above but for encoders, i.e. they do something only with USE=encode.
+FFMPEG_ENCODER_FLAG_MAP=(
+ aac:libvo-aacenc amrenc:libvo-amrwbenc mp3:libmp3lame
+ aacplus:libaacplus faac:libfaac theora:libtheora twolame:libtwolame
+ wavpack:libwavpack webp:libwebp x264:libx264 x265:libx265 xvid:libxvid
+)
+
IUSE="
- aac aacplus alsa amr amrenc bindist bluray bs2b +bzip2 cdio celt
- cpudetection debug doc +encode examples faac fdk flite fontconfig frei0r
- fribidi gme gnutls +gpl gsm +hardcoded-tables +iconv iec61883 ieee1394 jack
- jpeg2k ladspa libass libcaca libsoxr libv4l lzma modplug mp3 +network
- openal opengl openssl opus oss pic +postproc pulseaudio quvi rtmp samba schroedinger
- sdl speex ssh static-libs test theora threads truetype twolame v4l vaapi
- vdpau vorbis vpx wavpack webp X x264 x265 xcb xvid +zlib zvbi
- "
+ alsa bindist +encode examples jack oss pic static-libs test v4l
+ ${FFMPEG_FLAG_MAP[@]%:*}
+ ${FFMPEG_ENCODER_FLAG_MAP[@]%:*}
+"
ARM_CPU_FEATURES="armv5te armv6 armv6t2 neon armvfp:vfp"
MIPS_CPU_FEATURES="mips32r2 mipsdspr1 mipsdspr2 mipsfpu"
@@ -256,24 +289,13 @@
multilib_src_configure() {
local myconf=( ${EXTRA_FFMPEG_CONF} )
- # options to use as use_enable in the foo[:bar] form.
- # This will feed configure with $(use_enable foo bar)
- # or $(use_enable foo foo) if no :bar is set.
- local ffuse=(
- bzip2:bzlib cpudetection:runtime-cpudetect debug doc
- gnutls gpl hardcoded-tables iconv lzma network openssl postproc samba:libsmbclient
- sdl:ffplay vaapi vdpau X:xlib xcb:libxcb xcb:libxcb-shm xcb:libxcb-xfixes zlib
- )
+ local ffuse=( "${FFMPEG_FLAG_MAP[@]}" )
use openssl && use gpl && myconf+=( --enable-nonfree )
use samba && myconf+=( --enable-version3 )
# Encoders
- if use encode
- then
- ffuse+=( aac:libvo-aacenc amrenc:libvo-amrwbenc mp3:libmp3lame )
- for i in aacplus faac theora twolame wavpack webp x264 x265 xvid; do
- ffuse+=( ${i}:lib${i} )
- done
+ if use encode ; then
+ ffuse+=( "${FFMPEG_ENCODER_FLAG_MAP[@]}" )
# Licensing.
if use aac || use amrenc ; then
@@ -286,15 +308,11 @@
myconf+=( --disable-encoders )
fi
- # libavdevice options
- ffuse+=( cdio:libcdio iec61883:libiec61883 ieee1394:libdc1394 libcaca openal opengl )
-
# Indevs
use v4l || myconf+=( --disable-indev=v4l2 --disable-outdev=v4l2 )
for i in alsa oss jack ; do
use ${i} || myconf+=( --disable-indev=${i} )
done
- ffuse+=( libv4l:libv4l2 pulseaudio:libpulse )
use xcb || ffuse+=( X:x11grab )
# Outdevs
@@ -302,24 +320,11 @@
use ${i} || myconf+=( --disable-outdev=${i} )
done
- # libavfilter options
- ffuse+=( bs2b:libbs2b flite:libflite frei0r fribidi:libfribidi fontconfig ladspa libass truetype:libfreetype )
-
- # libswresample options
- ffuse+=( libsoxr )
-
- # Threads; we only support pthread for now but ffmpeg supports more
- ffuse+=( threads:pthreads )
-
# Decoders
- ffuse+=( amr:libopencore-amrwb amr:libopencore-amrnb fdk:libfdk-aac jpeg2k:libopenjpeg )
use amr && myconf+=( --enable-version3 )
- for i in bluray celt gme gsm modplug opus quvi rtmp ssh schroedinger speex vorbis vpx zvbi; do
- ffuse+=( ${i}:lib${i} )
- done
use fdk && use gpl && myconf+=( --enable-nonfree )
- for i in "${ffuse[@]}" ; do
+ for i in "${ffuse[@]#+}" ; do
myconf+=( $(use_enable ${i%:*} ${i#*:}) )
done
@@ -334,6 +339,7 @@
for i in ${CPU_FEATURES}; do
use ${i%:*} || myconf+=( --disable-${i#*:} )
done
+
if use pic ; then
myconf+=( --enable-pic )
# disable asm code if PIC is required
1.833 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.833&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.833&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.832&r2=1.833
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.832
retrieving revision 1.833
diff -u -r1.832 -r1.833
--- ChangeLog 18 Feb 2015 10:47:35 -0000 1.832
+++ ChangeLog 18 Feb 2015 11:52:45 -0000 1.833
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.832 2015/02/18 10:47:35 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.833 2015/02/18 11:52:45 aballier Exp $
+
+ 18 Feb 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ factorize filling IUSE and the map useflag -> configure option.
18 Feb 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
zvbi requires gpl too
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2015-02-18 10:47 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2015-02-18 10:47 UTC (permalink / raw
To: gentoo-commits
aballier 15/02/18 10:47:35
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
zvbi requires gpl too
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.181 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.181&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.181&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.180&r2=1.181
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.180
retrieving revision 1.181
diff -u -r1.180 -r1.181
--- ffmpeg-9999.ebuild 18 Feb 2015 10:44:02 -0000 1.180
+++ ffmpeg-9999.ebuild 18 Feb 2015 10:47:35 -0000 1.181
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.180 2015/02/18 10:44:02 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.181 2015/02/18 10:47:35 aballier Exp $
EAPI="5"
@@ -220,6 +220,7 @@
frei0r? ( gpl )
cdio? ( gpl )
samba? ( gpl )
+ zvbi? ( gpl )
encode? (
x264? ( gpl )
x265? ( gpl )
1.832 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.832&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.832&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.831&r2=1.832
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.831
retrieving revision 1.832
diff -u -r1.831 -r1.832
--- ChangeLog 18 Feb 2015 10:44:02 -0000 1.831
+++ ChangeLog 18 Feb 2015 10:47:35 -0000 1.832
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.831 2015/02/18 10:44:02 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.832 2015/02/18 10:47:35 aballier Exp $
+
+ 18 Feb 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ zvbi requires gpl too
18 Feb 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
Do not enable old xlib based x11grab when xcb is used. xcb based grabber is
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2015-02-18 10:44 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2015-02-18 10:44 UTC (permalink / raw
To: gentoo-commits
aballier 15/02/18 10:44:02
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
Do not enable old xlib based x11grab when xcb is used. xcb based grabber is LGPL.
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.180 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.180&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.180&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.179&r2=1.180
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.179
retrieving revision 1.180
diff -u -r1.179 -r1.180
--- ffmpeg-9999.ebuild 18 Feb 2015 10:36:21 -0000 1.179
+++ ffmpeg-9999.ebuild 18 Feb 2015 10:44:02 -0000 1.180
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.179 2015/02/18 10:36:21 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.180 2015/02/18 10:44:02 aballier Exp $
EAPI="5"
@@ -184,10 +184,10 @@
X? (
>=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
>=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
- >=x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}]
+ !xcb? ( >=x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}] )
>=x11-libs/libXv-1.0.10[${MULTILIB_USEDEP}]
)
- xcb? ( x11-libs/libxcb[${MULTILIB_USEDEP}] )
+ xcb? ( >=x11-libs/libxcb-1.4[${MULTILIB_USEDEP}] )
zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
zvbi? ( >=media-libs/zvbi-0.2.35[${MULTILIB_USEDEP}] )
!media-video/qt-faststart
@@ -224,7 +224,7 @@
x264? ( gpl )
x265? ( gpl )
xvid? ( gpl )
- X? ( gpl )
+ X? ( !xcb? ( gpl ) )
)
"
# faac is license-incompatible with ffmpeg
@@ -293,7 +293,8 @@
for i in alsa oss jack ; do
use ${i} || myconf+=( --disable-indev=${i} )
done
- ffuse+=( libv4l:libv4l2 pulseaudio:libpulse X:x11grab )
+ ffuse+=( libv4l:libv4l2 pulseaudio:libpulse )
+ use xcb || ffuse+=( X:x11grab )
# Outdevs
for i in alsa oss sdl ; do
1.831 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.831&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.831&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.830&r2=1.831
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.830
retrieving revision 1.831
diff -u -r1.830 -r1.831
--- ChangeLog 18 Feb 2015 10:36:21 -0000 1.830
+++ ChangeLog 18 Feb 2015 10:44:02 -0000 1.831
@@ -1,6 +1,10 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.830 2015/02/18 10:36:21 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.831 2015/02/18 10:44:02 aballier Exp $
+
+ 18 Feb 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ Do not enable old xlib based x11grab when xcb is used. xcb based grabber is
+ LGPL.
18 Feb 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild,
metadata.xml:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2015-02-18 9:58 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2015-02-18 9:58 UTC (permalink / raw
To: gentoo-commits
aballier 15/02/18 09:58:05
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add required use for x86 cpu flags
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.178 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.178&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.178&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.177&r2=1.178
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.177
retrieving revision 1.178
diff -u -r1.177 -r1.178
--- ffmpeg-9999.ebuild 30 Jan 2015 16:40:48 -0000 1.177
+++ ffmpeg-9999.ebuild 18 Feb 2015 09:58:05 -0000 1.178
@@ -1,6 +1,6 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.177 2015/01/30 16:40:48 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.178 2015/02/18 09:58:05 aballier Exp $
EAPI="5"
@@ -53,6 +53,22 @@
MIPS_CPU_FEATURES="mips32r2 mipsdspr1 mipsdspr2 mipsfpu"
PPC_CPU_FEATURES="altivec"
X86_CPU_FEATURES=( 3dnow:amd3dnow 3dnowext:amd3dnowext avx:avx avx2:avx2 fma3:fma3 fma4:fma4 mmx:mmx mmxext:mmxext sse:sse sse2:sse2 sse3:sse3 ssse3:ssse3 sse4_1:sse4 sse4_2:sse42 xop:xop )
+X86_CPU_REQUIRED_USE="
+ cpu_flags_x86_avx2? ( cpu_flags_x86_avx )
+ cpu_flags_x86_fma4? ( cpu_flags_x86_avx )
+ cpu_flags_x86_fma3? ( cpu_flags_x86_avx )
+ cpu_flags_x86_xop? ( cpu_flags_x86_avx )
+ cpu_flags_x86_avx? ( cpu_flags_x86_sse4_2 )
+ cpu_flags_x86_sse4_2? ( cpu_flags_x86_sse4_1 )
+ cpu_flags_x86_sse4_1? ( cpu_flags_x86_ssse3 )
+ cpu_flags_x86_ssse3? ( cpu_flags_x86_sse3 )
+ cpu_flags_x86_sse3? ( cpu_flags_x86_sse2 )
+ cpu_flags_x86_sse2? ( cpu_flags_x86_sse )
+ cpu_flags_x86_sse? ( cpu_flags_x86_mmxext )
+ cpu_flags_x86_mmxext? ( cpu_flags_x86_mmx )
+ cpu_flags_x86_3dnowext? ( cpu_flags_x86_3dnow )
+ cpu_flags_x86_3dnow? ( cpu_flags_x86_mmx )
+"
# String for CPU features in the useflag[:configure_option] form
# if :configure_option isn't set, it will use 'useflag' as configure option
@@ -62,6 +78,9 @@
${PPC_CPU_FEATURES}
${X86_CPU_FEATURES[@]/#/cpu_flags_x86_}
"
+CPU_REQUIRED_USE="
+ ${X86_CPU_REQUIRED_USE}
+"
for i in ${CPU_FEATURES}; do
IUSE="${IUSE} ${i%:*}"
@@ -181,7 +200,8 @@
REQUIRED_USE="bindist? ( encode? ( !faac !aacplus ) !openssl )
libv4l? ( v4l )
fftools_cws2fws? ( zlib )
- test? ( encode )"
+ test? ( encode )
+ ${CPU_REQUIRED_USE}"
S=${WORKDIR}/${P/_/-}
1.829 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.829&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.829&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.828&r2=1.829
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.828
retrieving revision 1.829
diff -u -r1.828 -r1.829
--- ChangeLog 14 Feb 2015 20:58:53 -0000 1.828
+++ ChangeLog 18 Feb 2015 09:58:05 -0000 1.829
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.828 2015/02/14 20:58:53 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.829 2015/02/18 09:58:05 aballier Exp $
+
+ 18 Feb 2015; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add required use for x86 cpu flags
*ffmpeg-2.5.4 (14 Feb 2015)
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2014-10-31 10:53 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2014-10-31 10:53 UTC (permalink / raw
To: gentoo-commits
aballier 14/10/31 10:53:44
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add xcb useflag
Signed-off-by: aballier@gentoo.org
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.174 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.174&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.174&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.173&r2=1.174
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.173
retrieving revision 1.174
diff -u -r1.173 -r1.174
--- ffmpeg-9999.ebuild 29 Aug 2014 19:50:07 -0000 1.173
+++ ffmpeg-9999.ebuild 31 Oct 2014 10:53:44 -0000 1.174
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.173 2014/08/29 19:50:07 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.174 2014/10/31 10:53:44 aballier Exp $
EAPI="5"
@@ -46,7 +46,7 @@
jpeg2k ladspa libass libcaca libsoxr libv4l lzma modplug mp3 +network
openal opengl openssl opus oss pic pulseaudio quvi rtmp samba schroedinger
sdl speex ssh static-libs test theora threads truetype twolame v4l vaapi
- vdpau vorbis vpx wavpack webp X x264 x265 xvid +zlib zvbi
+ vdpau vorbis vpx wavpack webp X x264 x265 xcb xvid +zlib zvbi
"
ARM_CPU_FEATURES="armv5te armv6 armv6t2 neon armvfp:vfp"
@@ -150,6 +150,7 @@
>=x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}]
>=x11-libs/libXv-1.0.10[${MULTILIB_USEDEP}]
)
+ xcb? ( x11-libs/libxcb[${MULTILIB_USEDEP}] )
zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
zvbi? ( >=media-libs/zvbi-0.2.35[${MULTILIB_USEDEP}] )
!media-video/qt-faststart
@@ -204,7 +205,7 @@
local ffuse=(
bzip2:bzlib cpudetection:runtime-cpudetect debug doc
gnutls hardcoded-tables iconv lzma network openssl samba:libsmbclient
- sdl:ffplay vaapi vdpau X:xlib zlib
+ sdl:ffplay vaapi vdpau X:xlib xcb:libxcb xcb:libxcb-shm xcb:libxcb-xfixes zlib
)
use openssl && myconf+=( --enable-nonfree )
use samba && myconf+=( --enable-version3 )
1.799 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.799&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.799&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.798&r2=1.799
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.798
retrieving revision 1.799
diff -u -r1.798 -r1.799
--- ChangeLog 11 Oct 2014 13:09:41 -0000 1.798
+++ ChangeLog 31 Oct 2014 10:53:44 -0000 1.799
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.798 2014/10/11 13:09:41 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.799 2014/10/31 10:53:44 aballier Exp $
+
+ 31 Oct 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add xcb useflag
11 Oct 2014; Markus Meier <maekke@gentoo.org> ffmpeg-1.2.6-r1.ebuild:
arm stable, bug #512012
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2014-08-29 19:05 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2014-08-29 19:05 UTC (permalink / raw
To: gentoo-commits
aballier 14/08/29 19:05:30
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
update subslot per upstream git master, bug #521502 by gerion
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.172 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.172&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.172&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.171&r2=1.172
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.171
retrieving revision 1.172
diff -u -r1.171 -r1.172
--- ffmpeg-9999.ebuild 29 Aug 2014 19:00:58 -0000 1.171
+++ ffmpeg-9999.ebuild 29 Aug 2014 19:05:30 -0000 1.172
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.171 2014/08/29 19:00:58 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.172 2014/08/29 19:05:30 aballier Exp $
EAPI="5"
@@ -13,7 +13,7 @@
# changes its ABI then this package will be rebuilt needlessly. Hence, such a
# package is free _not_ to := depend on FFmpeg but I would strongly encourage
# doing so since such a case is unlikely.
-FFMPEG_SUBSLOT=52.55.55
+FFMPEG_SUBSLOT=54.56.56
SCM=""
if [ "${PV#9999}" != "${PV}" ] ; then
1.788 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.788&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.788&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.787&r2=1.788
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.787
retrieving revision 1.788
diff -u -r1.787 -r1.788
--- ChangeLog 29 Aug 2014 19:00:58 -0000 1.787
+++ ChangeLog 29 Aug 2014 19:05:30 -0000 1.788
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.787 2014/08/29 19:00:58 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.788 2014/08/29 19:05:30 aballier Exp $
+
+ 29 Aug 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ update subslot per upstream git master, bug #521502 by gerion
29 Aug 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
add lzma useflag
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2014-08-29 19:00 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2014-08-29 19:00 UTC (permalink / raw
To: gentoo-commits
aballier 14/08/29 19:00:58
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add lzma useflag
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.171 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.171&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.171&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.170&r2=1.171
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- ffmpeg-9999.ebuild 29 Aug 2014 18:14:06 -0000 1.170
+++ ffmpeg-9999.ebuild 29 Aug 2014 19:00:58 -0000 1.171
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.170 2014/08/29 18:14:06 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.171 2014/08/29 19:00:58 aballier Exp $
EAPI="5"
@@ -43,10 +43,10 @@
aac aacplus alsa amr amrenc bindist bluray bs2b +bzip2 cdio celt
cpudetection debug doc +encode examples faac fdk flite fontconfig frei0r
fribidi gme gnutls gsm +hardcoded-tables +iconv iec61883 ieee1394 jack
- jpeg2k ladspa libass libcaca libsoxr libv4l modplug mp3 +network openal
- opengl openssl opus oss pic pulseaudio quvi rtmp samba schroedinger sdl
- speex ssh static-libs test theora threads truetype twolame v4l vaapi vdpau
- vorbis vpx wavpack webp X x264 x265 xvid +zlib zvbi
+ jpeg2k ladspa libass libcaca libsoxr libv4l lzma modplug mp3 +network
+ openal opengl openssl opus oss pic pulseaudio quvi rtmp samba schroedinger
+ sdl speex ssh static-libs test theora threads truetype twolame v4l vaapi
+ vdpau vorbis vpx wavpack webp X x264 x265 xvid +zlib zvbi
"
ARM_CPU_FEATURES="armv5te armv6 armv6t2 neon armvfp:vfp"
@@ -122,6 +122,7 @@
libcaca? ( >=media-libs/libcaca-0.99_beta18-r1[${MULTILIB_USEDEP}] )
libsoxr? ( >=media-libs/soxr-0.1.0[${MULTILIB_USEDEP}] )
libv4l? ( >=media-libs/libv4l-0.9.5[${MULTILIB_USEDEP}] )
+ lzma? ( >=app-arch/xz-utils-5.0.5-r1[${MULTILIB_USEDEP}] )
modplug? ( >=media-libs/libmodplug-0.8.8.4-r1[${MULTILIB_USEDEP}] )
openal? ( >=media-libs/openal-1.15.1[${MULTILIB_USEDEP}] )
opengl? ( >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}] )
@@ -201,7 +202,7 @@
# or $(use_enable foo foo) if no :bar is set.
local ffuse=(
bzip2:bzlib cpudetection:runtime-cpudetect debug doc
- gnutls hardcoded-tables iconv network openssl samba:libsmbclient
+ gnutls hardcoded-tables iconv lzma network openssl samba:libsmbclient
sdl:ffplay vaapi vdpau X:xlib zlib
)
use openssl && myconf+=( --enable-nonfree )
1.787 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.787&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.787&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.786&r2=1.787
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.786
retrieving revision 1.787
diff -u -r1.786 -r1.787
--- ChangeLog 29 Aug 2014 18:32:16 -0000 1.786
+++ ChangeLog 29 Aug 2014 19:00:58 -0000 1.787
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.786 2014/08/29 18:32:16 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.787 2014/08/29 19:00:58 aballier Exp $
+
+ 29 Aug 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add lzma useflag
*ffmpeg-2.3.3 (29 Aug 2014)
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2014-07-27 9:08 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2014-07-27 9:08 UTC (permalink / raw
To: gentoo-commits
aballier 14/07/27 09:08:11
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add samba useflag
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.166 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.166&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.166&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.165&r2=1.166
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -r1.165 -r1.166
--- ffmpeg-9999.ebuild 27 Jul 2014 08:56:47 -0000 1.165
+++ ffmpeg-9999.ebuild 27 Jul 2014 09:08:11 -0000 1.166
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.165 2014/07/27 08:56:47 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.166 2014/07/27 09:08:11 aballier Exp $
EAPI="5"
@@ -34,7 +34,7 @@
fi
FFMPEG_REVISION="${PV#*_p}"
-LICENSE="GPL-2 amr? ( GPL-3 ) encode? ( aac? ( GPL-3 ) )"
+LICENSE="GPL-2 amr? ( GPL-3 ) encode? ( aac? ( GPL-3 ) ) samba? ( GPL-3 )"
SLOT="0/${FFMPEG_SUBSLOT}"
if [ "${PV#9999}" = "${PV}" ] ; then
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
@@ -44,9 +44,9 @@
cpudetection debug doc +encode examples faac fdk flite fontconfig frei0r
fribidi gme gnutls gsm +hardcoded-tables +iconv iec61883 ieee1394 jack
jpeg2k ladspa libass libcaca libsoxr libv4l modplug mp3 +network openal
- opengl openssl opus oss pic pulseaudio quvi rtmp schroedinger sdl speex ssh
- static-libs test theora threads truetype twolame v4l vaapi vdpau vorbis vpx
- wavpack webp X x264 x265 xvid +zlib zvbi
+ opengl openssl opus oss pic pulseaudio quvi rtmp samba schroedinger sdl
+ speex ssh static-libs test theora threads truetype twolame v4l vaapi vdpau
+ vorbis vpx wavpack webp X x264 x265 xvid +zlib zvbi
"
ARM_CPU_FEATURES="armv5te armv6 armv6t2 neon armvfp:vfp"
@@ -135,8 +135,9 @@
pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
quvi? ( media-libs/libquvi:0.4[${MULTILIB_USEDEP}] )
rtmp? ( >=media-video/rtmpdump-2.4_p20131018[${MULTILIB_USEDEP}] )
- sdl? ( >=media-libs/libsdl-1.2.15-r4[sound,video,${MULTILIB_USEDEP}] )
+ samba? ( >=net-fs/samba-3.6.23-r1[${MULTILIB_USEDEP}] )
schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[${MULTILIB_USEDEP}] )
+ sdl? ( >=media-libs/libsdl-1.2.15-r4[sound,video,${MULTILIB_USEDEP}] )
speex? ( >=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}] )
ssh? ( >=net-libs/libssh-0.5.5[${MULTILIB_USEDEP}] )
truetype? ( >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] )
@@ -205,10 +206,11 @@
# or $(use_enable foo foo) if no :bar is set.
local ffuse=(
bzip2:bzlib cpudetection:runtime-cpudetect debug doc
- gnutls hardcoded-tables iconv network openssl sdl:ffplay vaapi
- vdpau X:xlib zlib
+ gnutls hardcoded-tables iconv network openssl samba:libsmbclient
+ sdl:ffplay vaapi vdpau X:xlib zlib
)
use openssl && myconf+=( --enable-nonfree )
+ use samba && myconf+=( --enable-version3 )
# Encoders
if use encode
1.769 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.769&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.769&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.768&r2=1.769
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.768
retrieving revision 1.769
diff -u -r1.768 -r1.769
--- ChangeLog 27 Jul 2014 08:56:47 -0000 1.768
+++ ChangeLog 27 Jul 2014 09:08:11 -0000 1.769
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.768 2014/07/27 08:56:47 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.769 2014/07/27 09:08:11 aballier Exp $
+
+ 27 Jul 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add samba useflag
27 Jul 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
release notes is at the root of the repo, not under doc/
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2014-07-27 8:56 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2014-07-27 8:56 UTC (permalink / raw
To: gentoo-commits
aballier 14/07/27 08:56:47
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
release notes is at the root of the repo, not under doc/
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.165 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.165&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.165&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.164&r2=1.165
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.164
retrieving revision 1.165
diff -u -r1.164 -r1.165
--- ffmpeg-9999.ebuild 27 Jul 2014 08:52:23 -0000 1.164
+++ ffmpeg-9999.ebuild 27 Jul 2014 08:56:47 -0000 1.165
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.164 2014/07/27 08:52:23 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.165 2014/07/27 08:56:47 aballier Exp $
EAPI="5"
@@ -365,7 +365,7 @@
multilib_src_install_all() {
dodoc Changelog README.md CREDITS doc/*.txt doc/APIchanges
- [ -f "doc/RELEASE_NOTES" ] && dodoc "doc/RELEASE_NOTES"
+ [ -f "RELEASE_NOTES" ] && dodoc "RELEASE_NOTES"
use doc && dohtml -r doc/*
if use examples ; then
dodoc -r doc/examples
1.768 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.768&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.768&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.767&r2=1.768
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.767
retrieving revision 1.768
diff -u -r1.767 -r1.768
--- ChangeLog 27 Jul 2014 08:52:23 -0000 1.767
+++ ChangeLog 27 Jul 2014 08:56:47 -0000 1.768
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.767 2014/07/27 08:52:23 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.768 2014/07/27 08:56:47 aballier Exp $
+
+ 27 Jul 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ release notes is at the root of the repo, not under doc/
27 Jul 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
enable quvi in multilib mode too
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2014-07-27 8:52 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2014-07-27 8:52 UTC (permalink / raw
To: gentoo-commits
aballier 14/07/27 08:52:23
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
enable quvi in multilib mode too
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.164 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.164&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.164&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.163&r2=1.164
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- ffmpeg-9999.ebuild 27 Jul 2014 08:39:58 -0000 1.163
+++ ffmpeg-9999.ebuild 27 Jul 2014 08:52:23 -0000 1.164
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.163 2014/07/27 08:39:58 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.164 2014/07/27 08:52:23 aballier Exp $
EAPI="5"
@@ -133,7 +133,7 @@
openssl? ( >=dev-libs/openssl-1.0.1h-r2[${MULTILIB_USEDEP}] )
opus? ( >=media-libs/opus-1.0.2-r2[${MULTILIB_USEDEP}] )
pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
- quvi? ( media-libs/libquvi:0.4 )
+ quvi? ( media-libs/libquvi:0.4[${MULTILIB_USEDEP}] )
rtmp? ( >=media-video/rtmpdump-2.4_p20131018[${MULTILIB_USEDEP}] )
sdl? ( >=media-libs/libsdl-1.2.15-r4[sound,video,${MULTILIB_USEDEP}] )
schroedinger? ( >=media-libs/schroedinger-1.0.11-r1[${MULTILIB_USEDEP}] )
@@ -267,7 +267,7 @@
# (temporarily) disable non-multilib deps
if ! multilib_is_native_abi; then
- for i in frei0r libquvi; do
+ for i in frei0r ; do
myconf+=( --disable-${i} )
done
fi
1.767 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.767&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.767&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.766&r2=1.767
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.766
retrieving revision 1.767
diff -u -r1.766 -r1.767
--- ChangeLog 27 Jul 2014 08:39:58 -0000 1.766
+++ ChangeLog 27 Jul 2014 08:52:23 -0000 1.767
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.766 2014/07/27 08:39:58 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.767 2014/07/27 08:52:23 aballier Exp $
+
+ 27 Jul 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ enable quvi in multilib mode too
27 Jul 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild,
metadata.xml:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2014-07-27 8:06 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2014-07-27 8:06 UTC (permalink / raw
To: gentoo-commits
aballier 14/07/27 08:06:12
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
handle existing release notes, bug #515118
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.161 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.161&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.161&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.160&r2=1.161
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.160
retrieving revision 1.161
diff -u -r1.160 -r1.161
--- ffmpeg-9999.ebuild 6 Jul 2014 10:09:30 -0000 1.160
+++ ffmpeg-9999.ebuild 27 Jul 2014 08:06:12 -0000 1.161
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.160 2014/07/06 10:09:30 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.161 2014/07/27 08:06:12 aballier Exp $
EAPI="5"
@@ -363,6 +363,7 @@
multilib_src_install_all() {
dodoc Changelog README.md CREDITS doc/*.txt doc/APIchanges
+ [ -f "doc/RELEASE_NOTES" ] && dodoc "doc/RELEASE_NOTES"
use doc && dohtml -r doc/*
if use examples ; then
dodoc -r doc/examples
1.764 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.764&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.764&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.763&r2=1.764
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.763
retrieving revision 1.764
diff -u -r1.763 -r1.764
--- ChangeLog 27 Jul 2014 07:59:51 -0000 1.763
+++ ChangeLog 27 Jul 2014 08:06:12 -0000 1.764
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.763 2014/07/27 07:59:51 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.764 2014/07/27 08:06:12 aballier Exp $
+
+ 27 Jul 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ handle existing release notes, bug #515118
27 Jul 2014; Alexis Ballier <aballier@gentoo.org> -ffmpeg-0.10.12.ebuild,
-ffmpeg-0.10.13.ebuild, -ffmpeg-2.2.2.ebuild, -ffmpeg-2.2.3.ebuild,
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2014-07-05 13:40 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2014-07-05 13:40 UTC (permalink / raw
To: gentoo-commits
aballier 14/07/05 13:40:21
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
stop intalling release notes
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.159 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.159&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.159&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.158&r2=1.159
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.158
retrieving revision 1.159
diff -u -r1.158 -r1.159
--- ffmpeg-9999.ebuild 19 Jun 2014 13:14:49 -0000 1.158
+++ ffmpeg-9999.ebuild 5 Jul 2014 13:40:21 -0000 1.159
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.158 2014/06/19 13:14:49 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.159 2014/07/05 13:40:21 aballier Exp $
EAPI="5"
@@ -360,7 +360,7 @@
}
multilib_src_install_all() {
- dodoc Changelog README.md CREDITS doc/*.txt doc/APIchanges doc/RELEASE_NOTES
+ dodoc Changelog README.md CREDITS doc/*.txt doc/APIchanges
use doc && dohtml -r doc/*
if use examples ; then
dodoc -r doc/examples
1.757 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.757&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.757&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.756&r2=1.757
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.756
retrieving revision 1.757
diff -u -r1.756 -r1.757
--- ChangeLog 5 Jul 2014 13:27:16 -0000 1.756
+++ ChangeLog 5 Jul 2014 13:40:21 -0000 1.757
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.756 2014/07/05 13:27:16 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.757 2014/07/05 13:40:21 aballier Exp $
+
+ 05 Jul 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ stop intalling release notes
*ffmpeg-0.10.14 (05 Jul 2014)
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2014-06-03 6:20 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2014-06-03 6:20 UTC (permalink / raw
To: gentoo-commits
aballier 14/06/03 06:20:54
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
fix dodoc of renamed README
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.154 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.154&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.154&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.153&r2=1.154
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -r1.153 -r1.154
--- ffmpeg-9999.ebuild 15 May 2014 17:11:09 -0000 1.153
+++ ffmpeg-9999.ebuild 3 Jun 2014 06:20:53 -0000 1.154
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.153 2014/05/15 17:11:09 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.154 2014/06/03 06:20:53 aballier Exp $
EAPI="5"
@@ -320,7 +320,7 @@
done
cd "${S}"
- dodoc Changelog README CREDITS doc/*.txt doc/APIchanges doc/RELEASE_NOTES
+ dodoc Changelog README.md CREDITS doc/*.txt doc/APIchanges doc/RELEASE_NOTES
use doc && dohtml -r doc/*
if use examples ; then
dodoc -r doc/examples
1.739 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.739&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.739&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.738&r2=1.739
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.738
retrieving revision 1.739
diff -u -r1.738 -r1.739
--- ChangeLog 3 Jun 2014 06:18:01 -0000 1.738
+++ ChangeLog 3 Jun 2014 06:20:53 -0000 1.739
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.738 2014/06/03 06:18:01 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.739 2014/06/03 06:20:53 aballier Exp $
+
+ 03 Jun 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ fix dodoc of renamed README
*ffmpeg-2.2.3 (03 Jun 2014)
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2014-03-15 9:17 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2014-03-15 9:17 UTC (permalink / raw
To: gentoo-commits
aballier 14/03/15 09:17:06
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
drop vis useflag, removed upstream
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.151 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.151&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.151&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.150&r2=1.151
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- ffmpeg-9999.ebuild 12 Mar 2014 20:50:25 -0000 1.150
+++ ffmpeg-9999.ebuild 15 Mar 2014 09:17:06 -0000 1.151
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.150 2014/03/12 20:50:25 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.151 2014/03/15 09:17:06 aballier Exp $
EAPI="5"
@@ -52,7 +52,6 @@
ARM_CPU_FEATURES="armv5te armv6 armv6t2 neon armvfp:vfp"
MIPS_CPU_FEATURES="mips32r2 mipsdspr1 mipsdspr2 mipsfpu"
PPC_CPU_FEATURES="altivec"
-SPARC_CPU_FEATURES="vis"
X86_CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext avx avx2 fma3 fma4 mmx mmxext sse sse2 sse3 ssse3 sse4 sse4_2:sse42"
# String for CPU features in the useflag[:configure_option] form
@@ -61,7 +60,6 @@
${ARM_CPU_FEATURES}
${MIPS_CPU_FEATURES}
${PPC_CPU_FEATURES}
- ${SPARC_CPU_FEATURES}
${X86_CPU_FEATURES}
"
1.722 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.722&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.722&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.721&r2=1.722
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.721
retrieving revision 1.722
diff -u -r1.721 -r1.722
--- ChangeLog 12 Mar 2014 20:50:25 -0000 1.721
+++ ChangeLog 15 Mar 2014 09:17:06 -0000 1.722
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.721 2014/03/12 20:50:25 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.722 2014/03/15 09:17:06 aballier Exp $
+
+ 15 Mar 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ drop vis useflag, removed upstream
12 Mar 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
add x265 support, bug #502068 by Michal Feix
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2014-03-11 19:01 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2014-03-11 19:01 UTC (permalink / raw
To: gentoo-commits
aballier 14/03/11 19:01:11
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
disable xlib with USE=-X
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.149 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.149&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.149&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.148&r2=1.149
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -r1.148 -r1.149
--- ffmpeg-9999.ebuild 3 Mar 2014 18:34:26 -0000 1.148
+++ ffmpeg-9999.ebuild 11 Mar 2014 19:01:11 -0000 1.149
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.148 2014/03/03 18:34:26 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.149 2014/03/11 19:01:11 aballier Exp $
EAPI="5"
@@ -175,7 +175,8 @@
# This will feed configure with $(use_enable foo bar)
# or $(use_enable foo foo) if no :bar is set.
local ffuse="bzip2:bzlib cpudetection:runtime-cpudetect debug doc
- gnutls hardcoded-tables iconv network openssl sdl:ffplay vaapi vdpau zlib"
+ gnutls hardcoded-tables iconv network openssl sdl:ffplay vaapi
+ vdpau X:xlib zlib"
use openssl && myconf="${myconf} --enable-nonfree"
# Encoders
1.720 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.720&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.720&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.719&r2=1.720
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.719
retrieving revision 1.720
diff -u -r1.719 -r1.720
--- ChangeLog 10 Mar 2014 20:08:10 -0000 1.719
+++ ChangeLog 11 Mar 2014 19:01:11 -0000 1.720
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.719 2014/03/10 20:08:10 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.720 2014/03/11 19:01:11 aballier Exp $
+
+ 11 Mar 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ disable xlib with USE=-X
10 Mar 2014; Alexis Ballier <aballier@gentoo.org> -ffmpeg-0.10.11.ebuild,
-ffmpeg-1.2.5.ebuild, -ffmpeg-2.1.3.ebuild:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2014-02-17 18:13 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2014-02-17 18:13 UTC (permalink / raw
To: gentoo-commits
aballier 14/02/17 18:13:36
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
Depend on fdk-aac 0.1.3, bug #499402 by Alex Xu (Hello71).
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.147 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.147&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.147&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.146&r2=1.147
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -r1.146 -r1.147
--- ffmpeg-9999.ebuild 12 Feb 2014 13:15:46 -0000 1.146
+++ ffmpeg-9999.ebuild 17 Feb 2014 18:13:36 -0000 1.147
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.146 2014/02/12 13:15:46 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.147 2014/02/17 18:13:36 aballier Exp $
EAPI="5"
@@ -94,7 +94,7 @@
x264? ( >=media-libs/x264-0.0.20111017:= )
xvid? ( >=media-libs/xvid-1.1.0 )
)
- fdk? ( media-libs/fdk-aac )
+ fdk? ( >=media-libs/fdk-aac-0.1.3 )
flite? ( app-accessibility/flite )
fontconfig? ( media-libs/fontconfig )
frei0r? ( media-plugins/frei0r-plugins )
1.713 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.713&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.713&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.712&r2=1.713
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.712
retrieving revision 1.713
diff -u -r1.712 -r1.713
--- ChangeLog 12 Feb 2014 13:22:09 -0000 1.712
+++ ChangeLog 17 Feb 2014 18:13:36 -0000 1.713
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.712 2014/02/12 13:22:09 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.713 2014/02/17 18:13:36 aballier Exp $
+
+ 17 Feb 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ Depend on fdk-aac 0.1.3, bug #499402 by Alex Xu (Hello71).
12 Feb 2014; Alexis Ballier <aballier@gentoo.org>
-files/ffmpeg-1.2.4-freetype251.patch, -files/ffmpeg-2.0.2-freetype251.patch:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2014-02-12 13:15 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2014-02-12 13:15 UTC (permalink / raw
To: gentoo-commits
aballier 14/02/12 13:15:46
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add opengl useflag
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.146 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.146&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.146&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.145&r2=1.146
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -r1.145 -r1.146
--- ffmpeg-9999.ebuild 12 Feb 2014 12:48:25 -0000 1.145
+++ ffmpeg-9999.ebuild 12 Feb 2014 13:15:46 -0000 1.146
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.145 2014/02/12 12:48:25 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.146 2014/02/12 13:15:46 aballier Exp $
EAPI="5"
@@ -43,10 +43,10 @@
aac aacplus alsa amr amrenc bindist bluray +bzip2 cdio celt
cpudetection debug doc +encode examples faac fdk flite fontconfig frei0r
gme gnutls gsm +hardcoded-tables +iconv iec61883 ieee1394 jack jpeg2k
- ladspa libass libcaca libsoxr libv4l modplug mp3 +network openal openssl opus
- oss pic pulseaudio quvi rtmp schroedinger sdl speex ssh static-libs test theora
- threads truetype twolame v4l vaapi vdpau vorbis vpx wavpack X x264 xvid
- +zlib zvbi
+ ladspa libass libcaca libsoxr libv4l modplug mp3 +network openal opengl
+ openssl opus oss pic pulseaudio quvi rtmp schroedinger sdl speex ssh
+ static-libs test theora threads truetype twolame v4l vaapi vdpau vorbis vpx
+ wavpack X x264 xvid +zlib zvbi
"
ARM_CPU_FEATURES="armv5te armv6 armv6t2 neon armvfp:vfp"
@@ -112,6 +112,7 @@
libv4l? ( media-libs/libv4l )
modplug? ( media-libs/libmodplug )
openal? ( >=media-libs/openal-1.1 )
+ opengl? ( virtual/opengl )
openssl? ( dev-libs/openssl )
opus? ( media-libs/opus )
pulseaudio? ( media-sound/pulseaudio )
@@ -197,7 +198,7 @@
fi
# libavdevice options
- ffuse="${ffuse} cdio:libcdio iec61883:libiec61883 ieee1394:libdc1394 libcaca openal"
+ ffuse="${ffuse} cdio:libcdio iec61883:libiec61883 ieee1394:libdc1394 libcaca openal opengl"
# Indevs
use v4l || myconf="${myconf} --disable-indev=v4l2 --disable-outdev=v4l2"
1.710 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.710&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.710&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.709&r2=1.710
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.709
retrieving revision 1.710
diff -u -r1.709 -r1.710
--- ChangeLog 12 Feb 2014 12:48:25 -0000 1.709
+++ ChangeLog 12 Feb 2014 13:15:46 -0000 1.710
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.709 2014/02/12 12:48:25 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.710 2014/02/12 13:15:46 aballier Exp $
+
+ 12 Feb 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add opengl useflag
12 Feb 2014; Alexis Ballier <aballier@gentoo.org> ffmpeg-2.1.3.ebuild,
ffmpeg-9999.ebuild:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-10-11 5:42 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-10-11 5:42 UTC (permalink / raw
To: gentoo-commits
aballier 13/10/11 05:42:07
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
Add ladspa useflag
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.139 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.139&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.139&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.138&r2=1.139
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- ffmpeg-9999.ebuild 11 Oct 2013 05:31:14 -0000 1.138
+++ ffmpeg-9999.ebuild 11 Oct 2013 05:42:07 -0000 1.139
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.138 2013/10/11 05:31:14 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.139 2013/10/11 05:42:07 aballier Exp $
EAPI="5"
@@ -43,8 +43,8 @@
aac aacplus alsa amr amrenc bindist bluray +bzip2 cdio celt
cpudetection debug doc +encode examples faac fdk flite fontconfig frei0r
gme gnutls gsm +hardcoded-tables +iconv iec61883 ieee1394 jack jpeg2k
- libass libcaca libsoxr libv4l modplug mp3 network openal openssl opus oss
- pic pulseaudio quvi rtmp schroedinger sdl speex static-libs test theora
+ ladspa libass libcaca libsoxr libv4l modplug mp3 network openal openssl opus
+ oss pic pulseaudio quvi rtmp schroedinger sdl speex static-libs test theora
threads truetype twolame v4l vaapi vdpau vorbis vpx wavpack X x264 xvid
+zlib
"
@@ -125,6 +125,7 @@
fontconfig? ( virtual/pkgconfig )
gnutls? ( virtual/pkgconfig )
ieee1394? ( virtual/pkgconfig )
+ ladspa? ( media-libs/ladspa-sdk )
libv4l? ( virtual/pkgconfig )
mmx? ( >=dev-lang/yasm-1.2 )
rtmp? ( virtual/pkgconfig )
@@ -197,7 +198,7 @@
done
# libavfilter options
- ffuse="${ffuse} flite:libflite frei0r fontconfig libass truetype:libfreetype"
+ ffuse="${ffuse} flite:libflite frei0r fontconfig ladspa libass truetype:libfreetype"
# libswresample options
ffuse="${ffuse} libsoxr"
1.683 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.683&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.683&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.682&r2=1.683
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.682
retrieving revision 1.683
diff -u -r1.682 -r1.683
--- ChangeLog 11 Oct 2013 05:31:14 -0000 1.682
+++ ChangeLog 11 Oct 2013 05:42:07 -0000 1.683
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.682 2013/10/11 05:31:14 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.683 2013/10/11 05:42:07 aballier Exp $
+
+ 11 Oct 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ Add ladspa useflag
11 Oct 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
there is now a libfdk-aac decoder, move it to the decoder section
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-10-11 5:31 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-10-11 5:31 UTC (permalink / raw
To: gentoo-commits
aballier 13/10/11 05:31:14
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
there is now a libfdk-aac decoder, move it to the decoder section
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.138 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.138&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.138&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.137&r2=1.138
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.137
retrieving revision 1.138
diff -u -r1.137 -r1.138
--- ffmpeg-9999.ebuild 11 Oct 2013 05:27:49 -0000 1.137
+++ ffmpeg-9999.ebuild 11 Oct 2013 05:31:14 -0000 1.138
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.137 2013/10/11 05:27:49 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.138 2013/10/11 05:31:14 aballier Exp $
EAPI="5"
@@ -75,7 +75,6 @@
aacplus? ( media-libs/libaacplus )
amrenc? ( media-libs/vo-amrwbenc )
faac? ( media-libs/faac )
- fdk? ( media-libs/fdk-aac )
mp3? ( >=media-sound/lame-3.98.3 )
theora? ( >=media-libs/libtheora-1.1.1[encode] media-libs/libogg )
twolame? ( media-sound/twolame )
@@ -83,6 +82,7 @@
x264? ( >=media-libs/x264-0.0.20111017:= )
xvid? ( >=media-libs/xvid-1.1.0 )
)
+ fdk? ( media-libs/fdk-aac )
flite? ( app-accessibility/flite )
fontconfig? ( media-libs/fontconfig )
frei0r? ( media-plugins/frei0r-plugins )
@@ -165,7 +165,7 @@
# Encoders
if use encode
then
- ffuse="${ffuse} aac:libvo-aacenc amrenc:libvo-amrwbenc mp3:libmp3lame fdk:libfdk-aac"
+ ffuse="${ffuse} aac:libvo-aacenc amrenc:libvo-amrwbenc mp3:libmp3lame"
for i in aacplus faac theora twolame wavpack x264 xvid; do
ffuse="${ffuse} ${i}:lib${i}"
done
@@ -174,7 +174,7 @@
if use aac || use amrenc ; then
myconf="${myconf} --enable-version3"
fi
- if use aacplus || use faac || use fdk ; then
+ if use aacplus || use faac ; then
myconf="${myconf} --enable-nonfree"
fi
else
@@ -206,11 +206,12 @@
ffuse="${ffuse} threads:pthreads"
# Decoders
- ffuse="${ffuse} amr:libopencore-amrwb amr:libopencore-amrnb jpeg2k:libopenjpeg"
+ ffuse="${ffuse} amr:libopencore-amrwb amr:libopencore-amrnb fdk:libfdk-aac jpeg2k:libopenjpeg"
use amr && myconf="${myconf} --enable-version3"
for i in bluray celt gme gsm modplug opus quvi rtmp schroedinger speex vorbis vpx; do
ffuse="${ffuse} ${i}:lib${i}"
done
+ use fdk && myconf="${myconf} --enable-nonfree"
for i in ${ffuse} ; do
myconf="${myconf} $(use_enable ${i%:*} ${i#*:})"
1.682 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.682&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.682&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.681&r2=1.682
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.681
retrieving revision 1.682
diff -u -r1.681 -r1.682
--- ChangeLog 11 Oct 2013 05:27:49 -0000 1.681
+++ ChangeLog 11 Oct 2013 05:31:14 -0000 1.682
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.681 2013/10/11 05:27:49 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.682 2013/10/11 05:31:14 aballier Exp $
+
+ 11 Oct 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ there is now a libfdk-aac decoder, move it to the decoder section
11 Oct 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
bump yasm dep
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-10-11 5:27 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-10-11 5:27 UTC (permalink / raw
To: gentoo-commits
aballier 13/10/11 05:27:49
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
bump yasm dep
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.137 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.137&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.137&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.136&r2=1.137
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -r1.136 -r1.137
--- ffmpeg-9999.ebuild 12 Aug 2013 00:09:07 -0000 1.136
+++ ffmpeg-9999.ebuild 11 Oct 2013 05:27:49 -0000 1.137
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.136 2013/08/12 00:09:07 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.137 2013/10/11 05:27:49 aballier Exp $
EAPI="5"
@@ -126,7 +126,7 @@
gnutls? ( virtual/pkgconfig )
ieee1394? ( virtual/pkgconfig )
libv4l? ( virtual/pkgconfig )
- mmx? ( dev-lang/yasm )
+ mmx? ( >=dev-lang/yasm-1.2 )
rtmp? ( virtual/pkgconfig )
schroedinger? ( virtual/pkgconfig )
test? ( net-misc/wget )
1.681 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.681&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.681&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.680&r2=1.681
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.680
retrieving revision 1.681
diff -u -r1.680 -r1.681
--- ChangeLog 11 Oct 2013 05:25:57 -0000 1.680
+++ ChangeLog 11 Oct 2013 05:27:49 -0000 1.681
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.680 2013/10/11 05:25:57 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.681 2013/10/11 05:27:49 aballier Exp $
+
+ 11 Oct 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ bump yasm dep
*ffmpeg-1.2.4 (11 Oct 2013)
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-07-02 12:10 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-07-02 12:10 UTC (permalink / raw
To: gentoo-commits
aballier 13/07/02 12:10:52
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
Add missing wavpack dep
(Portage version: 2.2.0_alpha186/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.133 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.133&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.133&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.132&r2=1.133
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -r1.132 -r1.133
--- ffmpeg-9999.ebuild 15 Jun 2013 15:49:12 -0000 1.132
+++ ffmpeg-9999.ebuild 2 Jul 2013 12:10:52 -0000 1.133
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.132 2013/06/15 15:49:12 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.133 2013/07/02 12:10:52 aballier Exp $
EAPI="4"
@@ -67,6 +67,7 @@
mp3? ( >=media-sound/lame-3.98.3 )
theora? ( >=media-libs/libtheora-1.1.1[encode] media-libs/libogg )
twolame? ( media-sound/twolame )
+ wavpack? ( media-sound/wavpack )
x264? ( >=media-libs/x264-0.0.20111017 )
xvid? ( >=media-libs/xvid-1.1.0 )
)
1.662 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.662&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.662&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.661&r2=1.662
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.661
retrieving revision 1.662
diff -u -r1.661 -r1.662
--- ChangeLog 1 Jul 2013 14:40:33 -0000 1.661
+++ ChangeLog 2 Jul 2013 12:10:52 -0000 1.662
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.661 2013/07/01 14:40:33 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.662 2013/07/02 12:10:52 aballier Exp $
+
+ 02 Jul 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ Add missing wavpack dep
01 Jul 2013; Jeroen Roovers <jer@gentoo.org> ffmpeg-1.0.7.ebuild:
Stable for HPPA (bug #473302).
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-06-14 17:15 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-06-14 17:15 UTC (permalink / raw
To: gentoo-commits
aballier 13/06/14 17:15:39
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add wavpack useflag
(Portage version: 2.2.0_alpha179/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.131 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.131&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.131&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.130&r2=1.131
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -r1.130 -r1.131
--- ffmpeg-9999.ebuild 13 Jun 2013 12:35:58 -0000 1.130
+++ ffmpeg-9999.ebuild 14 Jun 2013 17:15:39 -0000 1.131
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.130 2013/06/13 12:35:58 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.131 2013/06/14 17:15:39 aballier Exp $
EAPI="4"
@@ -34,7 +34,7 @@
gnutls gsm +hardcoded-tables +iconv iec61883 ieee1394 jack jpeg2k libass
libcaca libsoxr libv4l modplug mp3 network openal openssl opus oss pic
pulseaudio quvi rtmp schroedinger sdl speex static-libs test theora threads
- truetype twolame v4l vaapi vdpau vorbis vpx X x264 xvid +zlib
+ truetype twolame v4l vaapi vdpau vorbis vpx wavpack X x264 xvid +zlib
"
# String for CPU features in the useflag[:configure_option] form
@@ -151,7 +151,7 @@
if use encode
then
ffuse="${ffuse} aac:libvo-aacenc amr:libvo-amrwbenc mp3:libmp3lame fdk:libfdk-aac"
- for i in aacplus faac theora twolame x264 xvid; do
+ for i in aacplus faac theora twolame wavpack x264 xvid; do
ffuse="${ffuse} ${i}:lib${i}"
done
1.654 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.654&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.654&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.653&r2=1.654
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.653
retrieving revision 1.654
diff -u -r1.653 -r1.654
--- ChangeLog 13 Jun 2013 12:35:58 -0000 1.653
+++ ChangeLog 14 Jun 2013 17:15:39 -0000 1.654
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.653 2013/06/13 12:35:58 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.654 2013/06/14 17:15:39 aballier Exp $
+
+ 14 Jun 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add wavpack useflag
13 Jun 2013; Michael Weber <xmw@gentoo.org> ffmpeg-0.10.7.ebuild,
ffmpeg-1.0.6.ebuild, ffmpeg-1.0.7.ebuild, ffmpeg-1.2.1.ebuild,
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-05-24 14:25 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-05-24 14:25 UTC (permalink / raw
To: gentoo-commits
aballier 13/05/24 14:25:53
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add ffhash tool
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.129 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.129&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.129&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.128&r2=1.129
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ffmpeg-9999.ebuild 23 May 2013 00:41:10 -0000 1.128
+++ ffmpeg-9999.ebuild 24 May 2013 14:25:53 -0000 1.129
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.128 2013/05/23 00:41:10 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.129 2013/05/24 14:25:53 aballier Exp $
EAPI="4"
@@ -45,7 +45,7 @@
IUSE="${IUSE} ${i%:*}"
done
-FFTOOLS="aviocat cws2fws ffescape ffeval fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart trasher"
+FFTOOLS="aviocat cws2fws ffescape ffeval ffhash fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart trasher"
for i in ${FFTOOLS}; do
IUSE="${IUSE} +fftools_$i"
1.652 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.652&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.652&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.651&r2=1.652
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.651
retrieving revision 1.652
diff -u -r1.651 -r1.652
--- ChangeLog 23 May 2013 00:41:10 -0000 1.651
+++ ChangeLog 24 May 2013 14:25:53 -0000 1.652
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.651 2013/05/23 00:41:10 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.652 2013/05/24 14:25:53 aballier Exp $
+
+ 24 May 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add ffhash tool
23 May 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild,
metadata.xml:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-05-23 0:23 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-05-23 0:23 UTC (permalink / raw
To: gentoo-commits
aballier 13/05/23 00:23:22
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
disable v4l2 outdev with USE=-v4l
(Portage version: 2.2.0_alpha176/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.127 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.127&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.127&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.126&r2=1.127
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- ffmpeg-9999.ebuild 4 Apr 2013 07:34:43 -0000 1.126
+++ ffmpeg-9999.ebuild 23 May 2013 00:23:22 -0000 1.127
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.126 2013/04/04 07:34:43 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.127 2013/05/23 00:23:22 aballier Exp $
EAPI="4"
@@ -169,7 +169,7 @@
ffuse="${ffuse} cdio:libcdio iec61883:libiec61883 ieee1394:libdc1394 libcaca openal"
# Indevs
- use v4l || myconf="${myconf} --disable-indev=v4l2"
+ use v4l || myconf="${myconf} --disable-indev=v4l2 --disable-outdev=v4l2"
for i in alsa oss jack ; do
use ${i} || myconf="${myconf} --disable-indev=${i}"
done
1.650 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.650&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.650&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.649&r2=1.650
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.649
retrieving revision 1.650
diff -u -r1.649 -r1.650
--- ChangeLog 16 May 2013 16:42:59 -0000 1.649
+++ ChangeLog 23 May 2013 00:23:22 -0000 1.650
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.649 2013/05/16 16:42:59 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.650 2013/05/23 00:23:22 aballier Exp $
+
+ 23 May 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ disable v4l2 outdev with USE=-v4l
16 May 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-1.0.7.ebuild:
add libavresample to LD_LIBRARY_PATH for tests, bug #470034
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-03-09 12:07 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-03-09 12:07 UTC (permalink / raw
To: gentoo-commits
aballier 13/03/09 12:07:50
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
factorize some more code into ffuse
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.123 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.123&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.123&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.122&r2=1.123
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ffmpeg-9999.ebuild 9 Mar 2013 12:01:02 -0000 1.122
+++ ffmpeg-9999.ebuild 9 Mar 2013 12:07:50 -0000 1.123
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.122 2013/03/09 12:01:02 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.123 2013/03/09 12:07:50 aballier Exp $
EAPI="4"
@@ -142,8 +142,8 @@
# options to use as use_enable in the foo[:bar] form.
# This will feed configure with $(use_enable foo bar)
# or $(use_enable foo foo) if no :bar is set.
- local ffuse="bzip2:bzlib cpudetection:runtime-cpudetect debug doc gnutls
- iconv network openssl sdl:ffplay vaapi vdpau zlib"
+ local ffuse="avresample bzip2:bzlib cpudetection:runtime-cpudetect debug doc
+ gnutls hardcoded-tables iconv network openssl sdl:ffplay vaapi vdpau zlib"
use openssl && myconf="${myconf} --enable-nonfree"
# Encoders
@@ -246,12 +246,6 @@
esac
fi
- # avresample support for libav compatibility
- use avresample && myconf="${myconf} --enable-avresample"
-
- # Misc stuff
- use hardcoded-tables && myconf="${myconf} --enable-hardcoded-tables"
-
"${S}/configure" \
--prefix="${EPREFIX}/usr" \
--libdir="${EPREFIX}/usr/$(get_libdir)" \
1.617 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.617&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.617&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.616&r2=1.617
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.616
retrieving revision 1.617
diff -u -r1.616 -r1.617
--- ChangeLog 9 Mar 2013 12:01:02 -0000 1.616
+++ ChangeLog 9 Mar 2013 12:07:50 -0000 1.617
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.616 2013/03/09 12:01:02 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.617 2013/03/09 12:07:50 aballier Exp $
+
+ 09 Mar 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ factorize some more code into ffuse
09 Mar 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
handle enabling gpl3 the same way we handle non-free: through myconf and
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-03-09 12:01 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-03-09 12:01 UTC (permalink / raw
To: gentoo-commits
aballier 13/03/09 12:01:02
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
handle enabling gpl3 the same way we handle non-free: through myconf and remove the version3 variable
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.122 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.122&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.122&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.121&r2=1.122
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- ffmpeg-9999.ebuild 9 Mar 2013 11:46:33 -0000 1.121
+++ ffmpeg-9999.ebuild 9 Mar 2013 12:01:02 -0000 1.122
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.121 2013/03/09 11:46:33 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.122 2013/03/09 12:01:02 aballier Exp $
EAPI="4"
@@ -138,8 +138,6 @@
cd "${BUILD_DIR}"
local myconf="${EXTRA_FFMPEG_CONF}"
- # Set to --enable-version3 if (L)GPL-3 is required
- local version3=""
# options to use as use_enable in the foo[:bar] form.
# This will feed configure with $(use_enable foo bar)
@@ -158,7 +156,7 @@
# Licensing.
if use aac || use amr ; then
- version3=" --enable-version3"
+ myconf="${myconf} --enable-version3"
fi
if use aacplus || use faac || use fdk ; then
myconf="${myconf} --enable-nonfree"
@@ -193,7 +191,7 @@
# Decoders
ffuse="${ffuse} amr:libopencore-amrwb amr:libopencore-amrnb jpeg2k:libopenjpeg"
- use amr && version3=" --enable-version3"
+ use amr && myconf="${myconf} --enable-version3"
for i in bluray celt gsm modplug opus rtmp schroedinger speex vorbis vpx; do
ffuse="${ffuse} ${i}:lib${i}"
done
@@ -227,7 +225,6 @@
# Mandatory configuration
myconf="
--enable-gpl
- ${version3}
--enable-postproc
--enable-avfilter
--disable-stripping
1.616 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.616&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.616&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.615&r2=1.616
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.615
retrieving revision 1.616
diff -u -r1.615 -r1.616
--- ChangeLog 9 Mar 2013 11:46:33 -0000 1.615
+++ ChangeLog 9 Mar 2013 12:01:02 -0000 1.616
@@ -1,6 +1,10 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.615 2013/03/09 11:46:33 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.616 2013/03/09 12:01:02 aballier Exp $
+
+ 09 Mar 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ handle enabling gpl3 the same way we handle non-free: through myconf and
+ remove the version3 variable
09 Mar 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
build up configure options on the ffuse variable that will be fed to
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-03-09 11:46 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-03-09 11:46 UTC (permalink / raw
To: gentoo-commits
aballier 13/03/09 11:46:33
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
build up configure options on the ffuse variable that will be fed to use_enable, use_enable works fine and avoids having features disappearing because the default behavior changed; factorize some code
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.121 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.121&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.121&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.120&r2=1.121
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- ffmpeg-9999.ebuild 4 Mar 2013 12:09:04 -0000 1.120
+++ ffmpeg-9999.ebuild 9 Mar 2013 11:46:33 -0000 1.121
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.120 2013/03/04 12:09:04 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.121 2013/03/09 11:46:33 aballier Exp $
EAPI="4"
@@ -141,73 +141,66 @@
# Set to --enable-version3 if (L)GPL-3 is required
local version3=""
- # enabled by default
- for i in debug doc network zlib; do
- use ${i} || myconf="${myconf} --disable-${i}"
- done
- use bzip2 || myconf="${myconf} --disable-bzlib"
- use sdl || myconf="${myconf} --disable-ffplay"
-
- use cpudetection || myconf="${myconf} --disable-runtime-cpudetect"
- use openssl && myconf="${myconf} --enable-openssl --enable-nonfree"
- # disabled by default
- for i in gnutls iconv vaapi vdpau ; do
- use $i && myconf="${myconf} --enable-$i"
- done
+ # options to use as use_enable in the foo[:bar] form.
+ # This will feed configure with $(use_enable foo bar)
+ # or $(use_enable foo foo) if no :bar is set.
+ local ffuse="bzip2:bzlib cpudetection:runtime-cpudetect debug doc gnutls
+ iconv network openssl sdl:ffplay vaapi vdpau zlib"
+ use openssl && myconf="${myconf} --enable-nonfree"
# Encoders
if use encode
then
- use mp3 && myconf="${myconf} --enable-libmp3lame"
- use aac && { myconf="${myconf} --enable-libvo-aacenc" ; version3=" --enable-version3" ; }
- use amr && { myconf="${myconf} --enable-libvo-amrwbenc" ; version3=" --enable-version3" ; }
- for i in theora twolame x264 xvid; do
- use ${i} && myconf="${myconf} --enable-lib${i}"
+ ffuse="${ffuse} aac:libvo-aacenc amr:libvo-amrwbenc mp3:libmp3lame fdk:libfdk-aac"
+ for i in aacplus faac theora twolame x264 xvid; do
+ ffuse="${ffuse} ${i}:lib${i}"
done
- use aacplus && myconf="${myconf} --enable-libaacplus --enable-nonfree"
- use faac && myconf="${myconf} --enable-libfaac --enable-nonfree"
- use fdk && myconf="${myconf} --enable-libfdk-aac --enable-nonfree"
+
+ # Licensing.
+ if use aac || use amr ; then
+ version3=" --enable-version3"
+ fi
+ if use aacplus || use faac || use fdk ; then
+ myconf="${myconf} --enable-nonfree"
+ fi
else
myconf="${myconf} --disable-encoders"
fi
# libavdevice options
- for i in cdio iec61883 ; do
- use ${i} && myconf="${myconf} --enable-lib${i}"
- done
- use ieee1394 && myconf="${myconf} --enable-libdc1394"
- use libcaca && myconf="${myconf} --enable-libcaca"
- use openal && myconf="${myconf} --enable-openal"
+ ffuse="${ffuse} cdio:libcdio iec61883:libiec61883 ieee1394:libdc1394 libcaca openal"
+
# Indevs
use v4l || myconf="${myconf} --disable-indev=v4l2"
for i in alsa oss jack ; do
use ${i} || myconf="${myconf} --disable-indev=${i}"
done
- use X && myconf="${myconf} --enable-x11grab"
- use pulseaudio && myconf="${myconf} --enable-libpulse"
- use libv4l && myconf="${myconf} --enable-libv4l2"
+ ffuse="${ffuse} libv4l:libv4l2 pulseaudio:libpulse X:x11grab"
+
# Outdevs
for i in alsa oss sdl ; do
use ${i} || myconf="${myconf} --disable-outdev=${i}"
done
+
# libavfilter options
- for i in frei0r fontconfig libass ; do
- use ${i} && myconf="${myconf} --enable-${i}"
- done
- use truetype && myconf="${myconf} --enable-libfreetype"
- use flite && myconf="${myconf} --enable-libflite"
+ ffuse="${ffuse} flite:libflite frei0r fontconfig libass truetype:libfreetype"
+
# libswresample options
- use libsoxr && myconf="${myconf} --enable-libsoxr"
+ ffuse="${ffuse} libsoxr"
# Threads; we only support pthread for now but ffmpeg supports more
- use threads && myconf="${myconf} --enable-pthreads"
+ ffuse="${ffuse} threads:pthreads"
# Decoders
- use amr && { myconf="${myconf} --enable-libopencore-amrwb --enable-libopencore-amrnb" ; version3=" --enable-version3" ; }
+ ffuse="${ffuse} amr:libopencore-amrwb amr:libopencore-amrnb jpeg2k:libopenjpeg"
+ use amr && version3=" --enable-version3"
for i in bluray celt gsm modplug opus rtmp schroedinger speex vorbis vpx; do
- use ${i} && myconf="${myconf} --enable-lib${i}"
+ ffuse="${ffuse} ${i}:lib${i}"
+ done
+
+ for i in ${ffuse} ; do
+ myconf="${myconf} $(use_enable ${i%:*} ${i#*:})"
done
- use jpeg2k && myconf="${myconf} --enable-libopenjpeg"
# CPU features
for i in ${CPU_FEATURES}; do
1.615 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.615&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.615&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.614&r2=1.615
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.614
retrieving revision 1.615
diff -u -r1.614 -r1.615
--- ChangeLog 4 Mar 2013 12:12:35 -0000 1.614
+++ ChangeLog 9 Mar 2013 11:46:33 -0000 1.615
@@ -1,6 +1,11 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.614 2013/03/04 12:12:35 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.615 2013/03/09 11:46:33 aballier Exp $
+
+ 09 Mar 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ build up configure options on the ffuse variable that will be fed to
+ use_enable, use_enable works fine and avoids having features disappearing
+ because the default behavior changed; factorize some code
04 Mar 2013; Alexis Ballier <aballier@gentoo.org> -ffmpeg-1.0.4.ebuild,
-ffmpeg-1.1.2.ebuild:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-03-04 12:09 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-03-04 12:09 UTC (permalink / raw
To: gentoo-commits
aballier 13/03/04 12:09:04
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
fix vaapi/vdpau useflags that are now disabled by default
(Portage version: 2.2.0_alpha165/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.120 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.120&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.120&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.119&r2=1.120
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -r1.119 -r1.120
--- ffmpeg-9999.ebuild 4 Mar 2013 11:59:02 -0000 1.119
+++ ffmpeg-9999.ebuild 4 Mar 2013 12:09:04 -0000 1.120
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.119 2013/03/04 11:59:02 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.120 2013/03/04 12:09:04 aballier Exp $
EAPI="4"
@@ -142,7 +142,7 @@
local version3=""
# enabled by default
- for i in debug doc network vaapi vdpau zlib; do
+ for i in debug doc network zlib; do
use ${i} || myconf="${myconf} --disable-${i}"
done
use bzip2 || myconf="${myconf} --disable-bzlib"
@@ -151,7 +151,7 @@
use cpudetection || myconf="${myconf} --disable-runtime-cpudetect"
use openssl && myconf="${myconf} --enable-openssl --enable-nonfree"
# disabled by default
- for i in gnutls iconv ; do
+ for i in gnutls iconv vaapi vdpau ; do
use $i && myconf="${myconf} --enable-$i"
done
1.613 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.613&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.613&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.612&r2=1.613
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.612
retrieving revision 1.613
diff -u -r1.612 -r1.613
--- ChangeLog 4 Mar 2013 11:59:02 -0000 1.612
+++ ChangeLog 4 Mar 2013 12:09:04 -0000 1.613
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.612 2013/03/04 11:59:02 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.613 2013/03/04 12:09:04 aballier Exp $
+
+ 04 Mar 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ fix vaapi/vdpau useflags that are now disabled by default
04 Mar 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
add iconv useflag
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-03-04 11:59 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-03-04 11:59 UTC (permalink / raw
To: gentoo-commits
aballier 13/03/04 11:59:02
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add iconv useflag
(Portage version: 2.2.0_alpha165/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.119 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.119&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.119&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.118&r2=1.119
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- ffmpeg-9999.ebuild 4 Mar 2013 11:48:00 -0000 1.118
+++ ffmpeg-9999.ebuild 4 Mar 2013 11:59:02 -0000 1.119
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.118 2013/03/04 11:48:00 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.119 2013/03/04 11:59:02 aballier Exp $
EAPI="4"
@@ -31,10 +31,10 @@
IUSE="
aac aacplus alsa amr avresample bindist bluray +bzip2 cdio celt
cpudetection debug doc +encode examples faac fdk flite fontconfig frei0r
- gnutls gsm +hardcoded-tables iec61883 ieee1394 jack jpeg2k libass libcaca
- libsoxr libv4l modplug mp3 network openal openssl opus oss pic pulseaudio
- rtmp schroedinger sdl speex static-libs test theora threads truetype twolame
- v4l vaapi vdpau vorbis vpx X x264 xvid +zlib
+ gnutls gsm +hardcoded-tables +iconv iec61883 ieee1394 jack jpeg2k libass
+ libcaca libsoxr libv4l modplug mp3 network openal openssl opus oss pic
+ pulseaudio rtmp schroedinger sdl speex static-libs test theora threads
+ truetype twolame v4l vaapi vdpau vorbis vpx X x264 xvid +zlib
"
# String for CPU features in the useflag[:configure_option] form
@@ -75,6 +75,7 @@
frei0r? ( media-plugins/frei0r-plugins )
gnutls? ( >=net-libs/gnutls-2.12.16 )
gsm? ( >=media-sound/gsm-1.0.12-r1 )
+ iconv? ( virtual/libiconv )
iec61883? ( media-libs/libiec61883 sys-libs/libraw1394 sys-libs/libavc1394 )
ieee1394? ( media-libs/libdc1394 sys-libs/libraw1394 )
jack? ( media-sound/jack-audio-connection-kit )
@@ -149,7 +150,8 @@
use cpudetection || myconf="${myconf} --disable-runtime-cpudetect"
use openssl && myconf="${myconf} --enable-openssl --enable-nonfree"
- for i in gnutls ; do
+ # disabled by default
+ for i in gnutls iconv ; do
use $i && myconf="${myconf} --enable-$i"
done
1.612 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.612&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.612&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.611&r2=1.612
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.611
retrieving revision 1.612
diff -u -r1.611 -r1.612
--- ChangeLog 4 Mar 2013 11:48:00 -0000 1.611
+++ ChangeLog 4 Mar 2013 11:59:02 -0000 1.612
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.611 2013/03/04 11:48:00 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.612 2013/03/04 11:59:02 aballier Exp $
+
+ 04 Mar 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add iconv useflag
04 Mar 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
do not compress examples, they are mainly useless compressed
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-03-04 11:48 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-03-04 11:48 UTC (permalink / raw
To: gentoo-commits
aballier 13/03/04 11:48:00
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
do not compress examples, they are mainly useless compressed
(Portage version: 2.2.0_alpha165/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.118 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.118&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.118&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.117&r2=1.118
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- ffmpeg-9999.ebuild 4 Mar 2013 11:40:57 -0000 1.117
+++ ffmpeg-9999.ebuild 4 Mar 2013 11:48:00 -0000 1.118
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.117 2013/03/04 11:40:57 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.118 2013/03/04 11:48:00 aballier Exp $
EAPI="4"
@@ -301,8 +301,8 @@
dodoc Changelog README CREDITS doc/*.txt doc/APIchanges doc/RELEASE_NOTES
use doc && dohtml -r doc/*
if use examples ; then
- insinto "/usr/share/doc/${PF}/examples"
- doins -r doc/examples/*
+ dodoc -r doc/examples
+ docompress -x /usr/share/doc/${PF}/examples
fi
}
1.611 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.611&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.611&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.610&r2=1.611
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.610
retrieving revision 1.611
diff -u -r1.610 -r1.611
--- ChangeLog 4 Mar 2013 11:40:57 -0000 1.610
+++ ChangeLog 4 Mar 2013 11:48:00 -0000 1.611
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.610 2013/03/04 11:40:57 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.611 2013/03/04 11:48:00 aballier Exp $
+
+ 04 Mar 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ do not compress examples, they are mainly useless compressed
04 Mar 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
do an out-of-tree build
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-03-04 11:40 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-03-04 11:40 UTC (permalink / raw
To: gentoo-commits
aballier 13/03/04 11:40:57
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
do an out-of-tree build
(Portage version: 2.2.0_alpha165/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.117 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.117&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.117&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.116&r2=1.117
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -r1.116 -r1.117
--- ffmpeg-9999.ebuild 22 Feb 2013 19:08:22 -0000 1.116
+++ ffmpeg-9999.ebuild 4 Mar 2013 11:40:57 -0000 1.117
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.116 2013/02/22 19:08:22 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.117 2013/03/04 11:40:57 aballier Exp $
EAPI="4"
@@ -123,6 +123,7 @@
test? ( encode )"
S=${WORKDIR}/${P/_/-}
+BUILD_DIR=${S}_build
src_prepare() {
if [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
@@ -132,6 +133,9 @@
}
src_configure() {
+ mkdir -p "${BUILD_DIR}"
+ cd "${BUILD_DIR}"
+
local myconf="${EXTRA_FFMPEG_CONF}"
# Set to --enable-version3 if (L)GPL-3 is required
local version3=""
@@ -256,8 +260,7 @@
# Misc stuff
use hardcoded-tables && myconf="${myconf} --enable-hardcoded-tables"
- cd "${S}"
- ./configure \
+ "${S}/configure" \
--prefix="${EPREFIX}/usr" \
--libdir="${EPREFIX}/usr/$(get_libdir)" \
--shlibdir="${EPREFIX}/usr/$(get_libdir)" \
@@ -274,6 +277,7 @@
}
src_compile() {
+ cd "${BUILD_DIR}"
emake V=1
for i in ${FFTOOLS} ; do
@@ -284,23 +288,26 @@
}
src_install() {
+ cd "${BUILD_DIR}"
emake V=1 DESTDIR="${D}" install install-man
+ for i in ${FFTOOLS} ; do
+ if use fftools_$i ; then
+ dobin tools/$i
+ fi
+ done
+
+ cd "${S}"
dodoc Changelog README CREDITS doc/*.txt doc/APIchanges doc/RELEASE_NOTES
use doc && dohtml -r doc/*
if use examples ; then
insinto "/usr/share/doc/${PF}/examples"
doins -r doc/examples/*
fi
-
- for i in ${FFTOOLS} ; do
- if use fftools_$i ; then
- dobin tools/$i
- fi
- done
}
src_test() {
- LD_LIBRARY_PATH="${S}/libpostproc:${S}/libswscale:${S}/libswresample:${S}/libavcodec:${S}/libavdevice:${S}/libavfilter:${S}/libavformat:${S}/libavutil:${S}/libavresample" \
+ cd "${BUILD_DIR}"
+ LD_LIBRARY_PATH="${BUILD_DIR}/libpostproc:${BUILD_DIR}/libswscale:${BUILD_DIR}/libswresample:${BUILD_DIR}/libavcodec:${BUILD_DIR}/libavdevice:${BUILD_DIR}/libavfilter:${BUILD_DIR}/libavformat:${BUILD_DIR}/libavutil:${BUILD_DIR}/libavresample" \
emake V=1 fate
}
1.610 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.610&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.610&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.609&r2=1.610
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.609
retrieving revision 1.610
diff -u -r1.609 -r1.610
--- ChangeLog 4 Mar 2013 10:58:00 -0000 1.609
+++ ChangeLog 4 Mar 2013 11:40:57 -0000 1.610
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.609 2013/03/04 10:58:00 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.610 2013/03/04 11:40:57 aballier Exp $
+
+ 04 Mar 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ do an out-of-tree build
*ffmpeg-1.0.5 (04 Mar 2013)
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-02-18 18:55 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-02-18 18:55 UTC (permalink / raw
To: gentoo-commits
aballier 13/02/18 18:55:08
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
Add epatch_user, by Hristo Venev, bug #448612
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.114 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.114&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.114&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.113&r2=1.114
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- ffmpeg-9999.ebuild 13 Feb 2013 17:42:36 -0000 1.113
+++ ffmpeg-9999.ebuild 18 Feb 2013 18:55:08 -0000 1.114
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.113 2013/02/13 17:42:36 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.114 2013/02/18 18:55:08 aballier Exp $
EAPI="4"
@@ -127,6 +127,7 @@
if [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
export revision=git-N-${FFMPEG_REVISION}
fi
+ epatch_user
}
src_configure() {
1.604 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.604&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.604&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.603&r2=1.604
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.603
retrieving revision 1.604
diff -u -r1.603 -r1.604
--- ChangeLog 13 Feb 2013 17:42:36 -0000 1.603
+++ ChangeLog 18 Feb 2013 18:55:08 -0000 1.604
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.603 2013/02/13 17:42:36 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.604 2013/02/18 18:55:08 aballier Exp $
+
+ 18 Feb 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ Add epatch_user, by Hristo Venev, bug #448612
13 Feb 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
run tests against built libavresample
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-02-13 17:42 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-02-13 17:42 UTC (permalink / raw
To: gentoo-commits
aballier 13/02/13 17:42:36
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
run tests against built libavresample
(Portage version: 2.2.0_alpha162/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.113 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.113&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.113&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.112&r2=1.113
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- ffmpeg-9999.ebuild 7 Feb 2013 13:45:38 -0000 1.112
+++ ffmpeg-9999.ebuild 13 Feb 2013 17:42:36 -0000 1.113
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.112 2013/02/07 13:45:38 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.113 2013/02/13 17:42:36 aballier Exp $
EAPI="4"
@@ -297,6 +297,6 @@
}
src_test() {
- LD_LIBRARY_PATH="${S}/libpostproc:${S}/libswscale:${S}/libswresample:${S}/libavcodec:${S}/libavdevice:${S}/libavfilter:${S}/libavformat:${S}/libavutil" \
+ LD_LIBRARY_PATH="${S}/libpostproc:${S}/libswscale:${S}/libswresample:${S}/libavcodec:${S}/libavdevice:${S}/libavfilter:${S}/libavformat:${S}/libavutil:${S}/libavresample" \
emake V=1 fate
}
1.603 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.603&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.603&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.602&r2=1.603
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.602
retrieving revision 1.603
diff -u -r1.602 -r1.603
--- ChangeLog 7 Feb 2013 13:47:54 -0000 1.602
+++ ChangeLog 13 Feb 2013 17:42:36 -0000 1.603
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.602 2013/02/07 13:47:54 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.603 2013/02/13 17:42:36 aballier Exp $
+
+ 13 Feb 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ run tests against built libavresample
07 Feb 2013; Alexis Ballier <aballier@gentoo.org> -ffmpeg-1.1.1.ebuild:
remove old
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-01-27 23:51 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-01-27 23:51 UTC (permalink / raw
To: gentoo-commits
aballier 13/01/27 23:51:37
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
Add ffescape and fourcc2pixfmt tools
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.111 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.111&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.111&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.110&r2=1.111
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ffmpeg-9999.ebuild 13 Jan 2013 19:23:29 -0000 1.110
+++ ffmpeg-9999.ebuild 27 Jan 2013 23:51:36 -0000 1.111
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.110 2013/01/13 19:23:29 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.111 2013/01/27 23:51:36 aballier Exp $
EAPI="4"
@@ -45,7 +45,7 @@
IUSE="${IUSE} ${i%:*}"
done
-FFTOOLS="aviocat cws2fws ffeval graph2dot ismindex pktdumper qt-faststart trasher"
+FFTOOLS="aviocat cws2fws ffescape ffeval fourcc2pixfmt graph2dot ismindex pktdumper qt-faststart trasher"
for i in ${FFTOOLS}; do
IUSE="${IUSE} +fftools_$i"
1.598 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.598&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.598&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.597&r2=1.598
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.597
retrieving revision 1.598
diff -u -r1.597 -r1.598
--- ChangeLog 23 Jan 2013 11:58:54 -0000 1.597
+++ ChangeLog 27 Jan 2013 23:51:36 -0000 1.598
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.597 2013/01/23 11:58:54 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.598 2013/01/27 23:51:36 aballier Exp $
+
+ 27 Jan 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ Add ffescape and fourcc2pixfmt tools
23 Jan 2013; Alexis Ballier <aballier@gentoo.org> -ffmpeg-1.0.1.ebuild,
-ffmpeg-1.1.ebuild:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2013-01-13 19:23 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2013-01-13 19:23 UTC (permalink / raw
To: gentoo-commits
aballier 13/01/13 19:23:29
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
Improve documentation installation and add an examples useflag
(Portage version: 2.2.0_alpha151/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.110 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.110&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.110&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.109&r2=1.110
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- ffmpeg-9999.ebuild 8 Dec 2012 12:06:17 -0000 1.109
+++ ffmpeg-9999.ebuild 13 Jan 2013 19:23:29 -0000 1.110
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.109 2012/12/08 12:06:17 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.110 2013/01/13 19:23:29 aballier Exp $
EAPI="4"
@@ -30,11 +30,11 @@
fi
IUSE="
aac aacplus alsa amr avresample bindist bluray +bzip2 cdio celt
- cpudetection debug doc +encode faac fdk flite fontconfig frei0r gnutls
- gsm +hardcoded-tables iec61883 ieee1394 jack jpeg2k libass libcaca libv4l
- modplug mp3 network openal openssl opus oss pic pulseaudio rtmp schroedinger
- sdl speex static-libs test theora threads truetype twolame v4l vaapi vdpau
- vorbis vpx X x264 xvid +zlib
+ cpudetection debug doc +encode examples faac fdk flite fontconfig frei0r
+ gnutls gsm +hardcoded-tables iec61883 ieee1394 jack jpeg2k libass libcaca
+ libv4l modplug mp3 network openal openssl opus oss pic pulseaudio rtmp
+ schroedinger sdl speex static-libs test theora threads truetype twolame v4l
+ vaapi vdpau vorbis vpx X x264 xvid +zlib
"
# String for CPU features in the useflag[:configure_option] form
@@ -282,8 +282,12 @@
src_install() {
emake V=1 DESTDIR="${D}" install install-man
- dodoc Changelog README INSTALL
- dodoc -r doc/*
+ dodoc Changelog README CREDITS doc/*.txt doc/APIchanges doc/RELEASE_NOTES
+ use doc && dohtml -r doc/*
+ if use examples ; then
+ insinto "/usr/share/doc/${PF}/examples"
+ doins -r doc/examples/*
+ fi
for i in ${FFTOOLS} ; do
if use fftools_$i ; then
1.592 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.592&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.592&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.591&r2=1.592
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.591
retrieving revision 1.592
diff -u -r1.591 -r1.592
--- ChangeLog 19 Dec 2012 00:39:42 -0000 1.591
+++ ChangeLog 13 Jan 2013 19:23:29 -0000 1.592
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.591 2012/12/19 00:39:42 aballier Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.592 2013/01/13 19:23:29 aballier Exp $
+
+ 13 Jan 2013; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ Improve documentation installation and add an examples useflag
19 Dec 2012; Alexis Ballier <aballier@gentoo.org> -ffmpeg-0.10.2.ebuild,
-ffmpeg-0.10.4.ebuild, -ffmpeg-0.10.5.ebuild, -ffmpeg-0.11.1.ebuild,
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2012-12-08 12:06 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2012-12-08 12:06 UTC (permalink / raw
To: gentoo-commits
aballier 12/12/08 12:06:17
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
v4l1 indev is gone, no need to disable it explicitly
(Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path
1.109 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.109&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.109&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.108&r2=1.109
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- ffmpeg-9999.ebuild 12 Oct 2012 11:24:14 -0000 1.108
+++ ffmpeg-9999.ebuild 8 Dec 2012 12:06:17 -0000 1.109
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.108 2012/10/12 11:24:14 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.109 2012/12/08 12:06:17 aballier Exp $
EAPI="4"
@@ -171,8 +171,6 @@
use libcaca && myconf="${myconf} --enable-libcaca"
use openal && myconf="${myconf} --enable-openal"
# Indevs
- # v4l1 is gone since linux-headers-2.6.38
- myconf="${myconf} --disable-indev=v4l"
use v4l || myconf="${myconf} --disable-indev=v4l2"
for i in alsa oss jack ; do
use ${i} || myconf="${myconf} --disable-indev=${i}"
1.588 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.588&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.588&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.587&r2=1.588
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.587
retrieving revision 1.588
diff -u -r1.587 -r1.588
--- ChangeLog 26 Nov 2012 14:24:24 -0000 1.587
+++ ChangeLog 8 Dec 2012 12:06:17 -0000 1.588
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.587 2012/11/26 14:24:24 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.588 2012/12/08 12:06:17 aballier Exp $
+
+ 08 Dec 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ v4l1 indev is gone, no need to disable it explicitly
26 Nov 2012; Tomáš Chvátal <scarabeus@gentoo.org> metadata.xml:
Update to global useflag.
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2012-09-29 15:17 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2012-09-29 15:17 UTC (permalink / raw
To: gentoo-commits
aballier 12/09/29 15:17:30
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
tests now work without zlib
(Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
Revision Changes Path
1.106 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.106&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.106&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.105&r2=1.106
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- ffmpeg-9999.ebuild 29 Sep 2012 02:08:58 -0000 1.105
+++ ffmpeg-9999.ebuild 29 Sep 2012 15:17:30 -0000 1.106
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.105 2012/09/29 02:08:58 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.106 2012/09/29 15:17:30 aballier Exp $
EAPI="4"
@@ -118,7 +118,7 @@
REQUIRED_USE="bindist? ( encode? ( !faac !aacplus ) !openssl )
libv4l? ( v4l )
fftools_cws2fws? ( zlib )
- test? ( encode zlib )"
+ test? ( encode )"
S=${WORKDIR}/${P/_/-}
1.583 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.583&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.583&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.582&r2=1.583
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.582
retrieving revision 1.583
diff -u -r1.582 -r1.583
--- ChangeLog 29 Sep 2012 02:16:06 -0000 1.582
+++ ChangeLog 29 Sep 2012 15:17:30 -0000 1.583
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.582 2012/09/29 02:16:06 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.583 2012/09/29 15:17:30 aballier Exp $
+
+ 29 Sep 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ tests now work without zlib
*ffmpeg-1.0 (29 Sep 2012)
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2012-09-29 2:08 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2012-09-29 2:08 UTC (permalink / raw
To: gentoo-commits
aballier 12/09/29 02:08:58
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
cpudetection is now enabled by default, disable it if the useflag is not enabled
(Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
Revision Changes Path
1.105 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.104&r2=1.105
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ffmpeg-9999.ebuild 21 Sep 2012 11:49:42 -0000 1.104
+++ ffmpeg-9999.ebuild 29 Sep 2012 02:08:58 -0000 1.105
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.104 2012/09/21 11:49:42 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.105 2012/09/29 02:08:58 aballier Exp $
EAPI="4"
@@ -140,7 +140,7 @@
use bzip2 || myconf="${myconf} --disable-bzlib"
use sdl || myconf="${myconf} --disable-ffplay"
- use cpudetection && myconf="${myconf} --enable-runtime-cpudetect"
+ use cpudetection || myconf="${myconf} --disable-runtime-cpudetect"
use openssl && myconf="${myconf} --enable-openssl --enable-nonfree"
for i in gnutls ; do
use $i && myconf="${myconf} --enable-$i"
1.581 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.581&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.581&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.580&r2=1.581
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.580
retrieving revision 1.581
diff -u -r1.580 -r1.581
--- ChangeLog 25 Sep 2012 03:50:07 -0000 1.580
+++ ChangeLog 29 Sep 2012 02:08:58 -0000 1.581
@@ -1,6 +1,10 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.580 2012/09/25 03:50:07 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.581 2012/09/29 02:08:58 aballier Exp $
+
+ 29 Sep 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ cpudetection is now enabled by default, disable it if the useflag is not
+ enabled
25 Sep 2012; Mike Frysinger <vapier@gentoo.org> ffmpeg-0.10.2.ebuild,
ffmpeg-0.10.3.ebuild, ffmpeg-0.10.4.ebuild, ffmpeg-0.10.5.ebuild,
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2012-09-21 11:49 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2012-09-21 11:49 UTC (permalink / raw
To: gentoo-commits
aballier 12/09/21 11:49:42
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
update git url
(Portage version: 2.2.0_alpha130/cvs/Linux x86_64)
Revision Changes Path
1.104 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.104&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.104&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.103&r2=1.104
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.103
retrieving revision 1.104
diff -u -r1.103 -r1.104
--- ffmpeg-9999.ebuild 17 Aug 2012 13:05:23 -0000 1.103
+++ ffmpeg-9999.ebuild 21 Sep 2012 11:49:42 -0000 1.104
@@ -1,13 +1,13 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.103 2012/08/17 13:05:23 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.104 2012/09/21 11:49:42 aballier Exp $
EAPI="4"
SCM=""
if [ "${PV#9999}" != "${PV}" ] ; then
SCM="git-2"
- EGIT_REPO_URI="git://git.videolan.org/ffmpeg.git"
+ EGIT_REPO_URI="git://source.ffmpeg.org/ffmpeg.git"
fi
inherit eutils flag-o-matic multilib toolchain-funcs ${SCM}
1.579 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.579&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.579&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.578&r2=1.579
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.578
retrieving revision 1.579
diff -u -r1.578 -r1.579
--- ChangeLog 20 Sep 2012 12:48:51 -0000 1.578
+++ ChangeLog 21 Sep 2012 11:49:42 -0000 1.579
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.578 2012/09/20 12:48:51 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.579 2012/09/21 11:49:42 aballier Exp $
+
+ 21 Sep 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ update git url
*ffmpeg-0.11.2 (20 Sep 2012)
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2012-08-17 13:05 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2012-08-17 13:05 UTC (permalink / raw
To: gentoo-commits
aballier 12/08/17 13:05:23
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
mmx2 is now mmxext
(Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
Revision Changes Path
1.103 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.103&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.103&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.102&r2=1.103
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.102
retrieving revision 1.103
diff -u -r1.102 -r1.103
--- ffmpeg-9999.ebuild 6 Aug 2012 14:11:46 -0000 1.102
+++ ffmpeg-9999.ebuild 17 Aug 2012 13:05:23 -0000 1.103
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.102 2012/08/06 14:11:46 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.103 2012/08/17 13:05:23 aballier Exp $
EAPI="4"
@@ -39,7 +39,7 @@
# String for CPU features in the useflag[:configure_option] form
# if :configure_option isn't set, it will use 'useflag' as configure option
-CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext altivec avx mmx mmxext:mmx2 ssse3 vis neon"
+CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext altivec avx mmx mmxext ssse3 vis neon"
for i in ${CPU_FEATURES}; do
IUSE="${IUSE} ${i%:*}"
1.575 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.575&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.575&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.574&r2=1.575
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.574
retrieving revision 1.575
diff -u -r1.574 -r1.575
--- ChangeLog 6 Aug 2012 14:11:46 -0000 1.574
+++ ChangeLog 17 Aug 2012 13:05:23 -0000 1.575
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.574 2012/08/06 14:11:46 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.575 2012/08/17 13:05:23 aballier Exp $
+
+ 17 Aug 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ mmx2 is now mmxext
06 Aug 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild,
metadata.xml:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2012-07-23 13:04 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2012-07-23 13:04 UTC (permalink / raw
To: gentoo-commits
aballier 12/07/23 13:04:25
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add libcaca useflag/support
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Revision Changes Path
1.99 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.99&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.99&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.98&r2=1.99
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ffmpeg-9999.ebuild 23 Jul 2012 12:42:07 -0000 1.98
+++ ffmpeg-9999.ebuild 23 Jul 2012 13:04:25 -0000 1.99
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.98 2012/07/23 12:42:07 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.99 2012/07/23 13:04:25 aballier Exp $
EAPI="4"
@@ -31,10 +31,10 @@
IUSE="
aac aacplus alsa amr avresample bindist bluray +bzip2 cdio celt
cpudetection debug doc +encode faac fontconfig frei0r gnutls gsm
- +hardcoded-tables iec61883 ieee1394 jack jpeg2k libass libv4l modplug mp3
- network openal openssl opus oss pic pulseaudio rtmp schroedinger sdl speex
- static-libs test theora threads truetype v4l vaapi vdpau vorbis vpx X x264
- xvid +zlib
+ +hardcoded-tables iec61883 ieee1394 jack jpeg2k libass libcaca libv4l
+ modplug mp3 network openal openssl opus oss pic pulseaudio rtmp schroedinger
+ sdl speex static-libs test theora threads truetype v4l vaapi vdpau vorbis
+ vpx X x264 xvid +zlib
"
# String for CPU features in the useflag[:configure_option] form
@@ -77,6 +77,7 @@
jack? ( media-sound/jack-audio-connection-kit )
jpeg2k? ( >=media-libs/openjpeg-1.3-r2 )
libass? ( media-libs/libass )
+ libcaca? ( media-libs/libcaca )
libv4l? ( media-libs/libv4l )
modplug? ( media-libs/libmodplug )
openal? ( >=media-libs/openal-1.1 )
@@ -163,6 +164,7 @@
use ${i} && myconf="${myconf} --enable-lib${i}"
done
use ieee1394 && myconf="${myconf} --enable-libdc1394"
+ use libcaca && myconf="${myconf} --enable-libcaca"
use openal && myconf="${myconf} --enable-openal"
# Indevs
# v4l1 is gone since linux-headers-2.6.38
1.571 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.571&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.571&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.570&r2=1.571
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.570
retrieving revision 1.571
diff -u -r1.570 -r1.571
--- ChangeLog 23 Jul 2012 12:42:07 -0000 1.570
+++ ChangeLog 23 Jul 2012 13:04:25 -0000 1.571
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.570 2012/07/23 12:42:07 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.571 2012/07/23 13:04:25 aballier Exp $
+
+ 23 Jul 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add libcaca useflag/support
23 Jul 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild,
metadata.xml:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2012-05-12 0:24 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2012-05-12 0:24 UTC (permalink / raw
To: gentoo-commits
aballier 12/05/12 00:24:24
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
libvorbis encoder is back, reflect the change into the ebuild
(Portage version: 2.2.0_alpha103/cvs/Linux x86_64)
Revision Changes Path
1.90 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.90&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.90&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.89&r2=1.90
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ffmpeg-9999.ebuild 5 May 2012 08:58:57 -0000 1.89
+++ ffmpeg-9999.ebuild 12 May 2012 00:24:23 -0000 1.90
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.89 2012/05/05 08:58:57 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.90 2012/05/12 00:24:23 aballier Exp $
EAPI="4"
@@ -65,7 +65,6 @@
faac? ( media-libs/faac )
mp3? ( >=media-sound/lame-3.98.3 )
theora? ( >=media-libs/libtheora-1.1.1[encode] media-libs/libogg )
- vorbis? ( media-libs/libvorbis media-libs/libogg )
x264? ( >=media-libs/x264-0.0.20111017 )
xvid? ( >=media-libs/xvid-1.1.0 )
)
@@ -87,6 +86,7 @@
truetype? ( media-libs/freetype:2 )
vaapi? ( >=x11-libs/libva-0.32 )
vdpau? ( x11-libs/libvdpau )
+ vorbis? ( media-libs/libvorbis media-libs/libogg )
vpx? ( >=media-libs/libvpx-0.9.6 )
X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXfixes )
zlib? ( sys-libs/zlib )
@@ -145,7 +145,7 @@
use mp3 && myconf="${myconf} --enable-libmp3lame"
use aac && { myconf="${myconf} --enable-libvo-aacenc" ; version3=" --enable-version3" ; }
use amr && { myconf="${myconf} --enable-libvo-amrwbenc" ; version3=" --enable-version3" ; }
- for i in theora vorbis x264 xvid; do
+ for i in theora x264 xvid; do
use ${i} && myconf="${myconf} --enable-lib${i}"
done
use aacplus && myconf="${myconf} --enable-libaacplus --enable-nonfree"
@@ -184,7 +184,7 @@
# Decoders
use amr && { myconf="${myconf} --enable-libopencore-amrwb --enable-libopencore-amrnb" ; version3=" --enable-version3" ; }
- for i in bluray celt gsm modplug rtmp schroedinger speex vpx; do
+ for i in bluray celt gsm modplug rtmp schroedinger speex vorbis vpx; do
use ${i} && myconf="${myconf} --enable-lib${i}"
done
use jpeg2k && myconf="${myconf} --enable-libopenjpeg"
1.550 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.550&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.550&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.549&r2=1.550
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.549
retrieving revision 1.550
diff -u -r1.549 -r1.550
--- ChangeLog 8 May 2012 22:49:09 -0000 1.549
+++ ChangeLog 12 May 2012 00:24:23 -0000 1.550
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.549 2012/05/08 22:49:09 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.550 2012/05/12 00:24:23 aballier Exp $
+
+ 12 May 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ libvorbis encoder is back, reflect the change into the ebuild
*ffmpeg-0.10.3 (08 May 2012)
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2012-04-24 13:17 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2012-04-24 13:17 UTC (permalink / raw
To: gentoo-commits
aballier 12/04/24 13:17:12
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
fontconfig requires pkgconfig
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Revision Changes Path
1.88 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.88&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.88&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.87&r2=1.88
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ffmpeg-9999.ebuild 24 Apr 2012 13:14:00 -0000 1.87
+++ ffmpeg-9999.ebuild 24 Apr 2012 13:17:12 -0000 1.88
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.87 2012/04/24 13:14:00 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.88 2012/04/24 13:17:12 aballier Exp $
EAPI="4"
@@ -96,6 +96,7 @@
DEPEND="${RDEPEND}
>=sys-devel/make-3.81
doc? ( app-text/texi2html )
+ fontconfig? ( dev-util/pkgconfig )
gnutls? ( dev-util/pkgconfig )
ieee1394? ( dev-util/pkgconfig )
libv4l? ( dev-util/pkgconfig )
1.547 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.547&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.547&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.546&r2=1.547
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.546
retrieving revision 1.547
diff -u -r1.546 -r1.547
--- ChangeLog 24 Apr 2012 13:14:00 -0000 1.546
+++ ChangeLog 24 Apr 2012 13:17:12 -0000 1.547
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.546 2012/04/24 13:14:00 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.547 2012/04/24 13:17:12 aballier Exp $
+
+ 24 Apr 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ fontconfig requires pkgconfig
24 Apr 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
drop dirac useflag per upstream drop
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2012-04-24 13:14 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2012-04-24 13:14 UTC (permalink / raw
To: gentoo-commits
aballier 12/04/24 13:14:00
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
drop dirac useflag per upstream drop
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Revision Changes Path
1.87 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.86&r2=1.87
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ffmpeg-9999.ebuild 14 Apr 2012 18:34:49 -0000 1.86
+++ ffmpeg-9999.ebuild 24 Apr 2012 13:14:00 -0000 1.87
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.86 2012/04/14 18:34:49 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.87 2012/04/24 13:14:00 aballier Exp $
EAPI="4"
@@ -30,7 +30,7 @@
fi
IUSE="
aac aacplus alsa amr ass bindist bluray +bzip2 cdio celt cpudetection debug
- dirac doc +encode faac fontconfig frei0r gnutls gsm +hardcoded-tables
+ doc +encode faac fontconfig frei0r gnutls gsm +hardcoded-tables
ieee1394 jack jpeg2k libv4l modplug mp3 network openal openssl oss pic
pulseaudio rtmp schroedinger sdl speex static-libs test theora threads
truetype v4l vaapi vdpau vorbis vpx X x264 xvid +zlib
@@ -58,7 +58,6 @@
bzip2? ( app-arch/bzip2 )
cdio? ( dev-libs/libcdio )
celt? ( >=media-libs/celt-0.11.1 )
- dirac? ( media-video/dirac )
encode? (
aac? ( media-libs/vo-aacenc )
aacplus? ( media-libs/libaacplus )
@@ -96,7 +95,6 @@
DEPEND="${RDEPEND}
>=sys-devel/make-3.81
- dirac? ( dev-util/pkgconfig )
doc? ( app-text/texi2html )
gnutls? ( dev-util/pkgconfig )
ieee1394? ( dev-util/pkgconfig )
@@ -185,7 +183,7 @@
# Decoders
use amr && { myconf="${myconf} --enable-libopencore-amrwb --enable-libopencore-amrnb" ; version3=" --enable-version3" ; }
- for i in bluray celt gsm dirac modplug rtmp schroedinger speex vpx; do
+ for i in bluray celt gsm modplug rtmp schroedinger speex vpx; do
use ${i} && myconf="${myconf} --enable-lib${i}"
done
use jpeg2k && myconf="${myconf} --enable-libopenjpeg"
1.546 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.546&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.546&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.545&r2=1.546
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.545
retrieving revision 1.546
diff -u -r1.545 -r1.546
--- ChangeLog 15 Apr 2012 18:17:55 -0000 1.545
+++ ChangeLog 24 Apr 2012 13:14:00 -0000 1.546
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.545 2012/04/15 18:17:55 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.546 2012/04/24 13:14:00 aballier Exp $
+
+ 24 Apr 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ drop dirac useflag per upstream drop
15 Apr 2012; Raúl Porcel <armin76@gentoo.org> ffmpeg-0.10.2.ebuild:
alpha/arm/ia64/sparc stable wrt #411369
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2012-04-11 13:44 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2012-04-11 13:44 UTC (permalink / raw
To: gentoo-commits
aballier 12/04/11 13:44:41
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add fontconfig useflag
(Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
Revision Changes Path
1.85 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.84&r2=1.85
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ffmpeg-9999.ebuild 5 Apr 2012 11:59:54 -0000 1.84
+++ ffmpeg-9999.ebuild 11 Apr 2012 13:44:41 -0000 1.85
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.84 2012/04/05 11:59:54 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.85 2012/04/11 13:44:41 aballier Exp $
EAPI="4"
@@ -30,9 +30,9 @@
fi
IUSE="
aac aacplus alsa amr ass bindist bluray +bzip2 cdio celt cpudetection debug
- dirac doc +encode faac frei0r gnutls gsm +hardcoded-tables ieee1394 jack
- jpeg2k libv4l modplug mp3 network openal openssl oss pic pulseaudio
- rtmp schroedinger sdl speex static-libs test theora threads
+ dirac doc +encode faac fontconfig frei0r gnutls gsm +hardcoded-tables
+ ieee1394 jack jpeg2k libv4l modplug mp3 network openal openssl oss pic
+ pulseaudio rtmp schroedinger sdl speex static-libs test theora threads
truetype v4l vaapi vdpau vorbis vpx X x264 xvid +zlib
"
@@ -70,6 +70,7 @@
x264? ( >=media-libs/x264-0.0.20111017 )
xvid? ( >=media-libs/xvid-1.1.0 )
)
+ fontconfig? ( media-libs/fontconfig )
frei0r? ( media-plugins/frei0r-plugins )
gnutls? ( >=net-libs/gnutls-2.12.16 )
gsm? ( >=media-sound/gsm-1.0.12-r1 )
@@ -173,7 +174,9 @@
use ${i} || myconf="${myconf} --disable-outdev=${i}"
done
# libavfilter options
- use frei0r && myconf="${myconf} --enable-frei0r"
+ for i in frei0r fontconfig ; do
+ use ${i} && myconf="${myconf} --enable-${i}"
+ done
use truetype && myconf="${myconf} --enable-libfreetype"
use ass && myconf="${myconf} --enable-libass"
1.541 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.541&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.541&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.540&r2=1.541
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.540
retrieving revision 1.541
diff -u -r1.540 -r1.541
--- ChangeLog 10 Apr 2012 08:14:00 -0000 1.540
+++ ChangeLog 11 Apr 2012 13:44:41 -0000 1.541
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.540 2012/04/10 08:14:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.541 2012/04/11 13:44:41 aballier Exp $
+
+ 11 Apr 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add fontconfig useflag
10 Apr 2012; Agostino Sarubbo <ago@gentoo.org> ffmpeg-0.10.2.ebuild:
Stable for amd64, wrt bug #411369
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2012-03-20 9:42 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2012-03-20 9:42 UTC (permalink / raw
To: gentoo-commits
aballier 12/03/20 09:42:57
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
cws2fws requires zlib
(Portage version: 2.2.0_alpha93/cvs/Linux x86_64)
Revision Changes Path
1.82 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.82&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.82&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.81&r2=1.82
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ffmpeg-9999.ebuild 13 Mar 2012 23:17:00 -0000 1.81
+++ ffmpeg-9999.ebuild 20 Mar 2012 09:42:57 -0000 1.82
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.81 2012/03/13 23:17:00 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.82 2012/03/20 09:42:57 aballier Exp $
EAPI="4"
@@ -110,6 +110,7 @@
# faac is license-incompatible with ffmpeg
REQUIRED_USE="bindist? ( encode? ( !faac !aacplus ) !openssl )
libv4l? ( v4l )
+ cws2fws? ( zlib )
test? ( encode zlib )"
S=${WORKDIR}/${P/_/-}
1.530 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.530&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.530&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.529&r2=1.530
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.529
retrieving revision 1.530
diff -u -r1.529 -r1.530
--- ChangeLog 18 Mar 2012 13:54:03 -0000 1.529
+++ ChangeLog 20 Mar 2012 09:42:57 -0000 1.530
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.529 2012/03/18 13:54:03 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.530 2012/03/20 09:42:57 aballier Exp $
+
+ 20 Mar 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ cws2fws requires zlib
*ffmpeg-0.10.2 (18 Mar 2012)
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2012-03-13 23:17 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2012-03-13 23:17 UTC (permalink / raw
To: gentoo-commits
aballier 12/03/13 23:17:00
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
drop iwmmxt useflag as it has been removed upstream
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Revision Changes Path
1.81 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.80&r2=1.81
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ffmpeg-9999.ebuild 9 Mar 2012 09:46:50 -0000 1.80
+++ ffmpeg-9999.ebuild 13 Mar 2012 23:17:00 -0000 1.81
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.80 2012/03/09 09:46:50 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.81 2012/03/13 23:17:00 aballier Exp $
EAPI="4"
@@ -38,7 +38,7 @@
# String for CPU features in the useflag[:configure_option] form
# if :configure_option isn't set, it will use 'useflag' as configure option
-CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext altivec avx mmx mmxext:mmx2 ssse3 vis neon iwmmxt"
+CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext altivec avx mmx mmxext:mmx2 ssse3 vis neon"
for i in ${CPU_FEATURES}; do
IUSE="${IUSE} ${i%:*}"
1.528 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.528&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.528&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.527&r2=1.528
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.527
retrieving revision 1.528
diff -u -r1.527 -r1.528
--- ChangeLog 9 Mar 2012 09:46:50 -0000 1.527
+++ ChangeLog 13 Mar 2012 23:17:00 -0000 1.528
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.527 2012/03/09 09:46:50 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.528 2012/03/13 23:17:00 aballier Exp $
+
+ 14 Mar 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ drop iwmmxt useflag as it has been removed upstream
09 Mar 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild,
metadata.xml:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2012-01-28 12:19 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2012-01-28 12:19 UTC (permalink / raw
To: gentoo-commits
aballier 12/01/28 12:19:08
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
avconv is gone in master
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Revision Changes Path
1.78 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.78&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.78&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.77&r2=1.78
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ffmpeg-9999.ebuild 17 Dec 2011 14:08:12 -0000 1.77
+++ ffmpeg-9999.ebuild 28 Jan 2012 12:19:08 -0000 1.78
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.77 2011/12/17 14:08:12 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.78 2012/01/28 12:19:08 aballier Exp $
EAPI="4"
@@ -29,7 +29,7 @@
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
fi
IUSE="
- aac aacplus alsa amr ass avconv bindist +bzip2 cdio celt cpudetection debug
+ aac aacplus alsa amr ass bindist +bzip2 cdio celt cpudetection debug
dirac doc +encode faac frei0r gnutls gsm +hardcoded-tables ieee1394 jack
jpeg2k libv4l modplug mp3 network openal openssl oss pic pulseaudio
+qt-faststart rtmp schroedinger sdl speex static-libs test theora threads
@@ -127,7 +127,7 @@
use cpudetection && myconf="${myconf} --enable-runtime-cpudetect"
use openssl && myconf="${myconf} --enable-openssl --enable-nonfree"
- for i in gnutls avconv ; do
+ for i in gnutls ; do
use $i && myconf="${myconf} --enable-$i"
done
1.522 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.522&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.522&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.521&r2=1.522
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.521
retrieving revision 1.522
diff -u -r1.521 -r1.522
--- ChangeLog 26 Jan 2012 13:24:09 -0000 1.521
+++ ChangeLog 28 Jan 2012 12:19:08 -0000 1.522
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.521 2012/01/26 13:24:09 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.522 2012/01/28 12:19:08 aballier Exp $
+
+ 28 Jan 2012; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ avconv is gone in master
26 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> ffmpeg-0.9.1.ebuild:
Restore ~ppc and ~ppc64 keywording wrt #392269
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-12-15 11:46 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-12-15 11:46 UTC (permalink / raw
To: gentoo-commits
aballier 11/12/15 11:46:02
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
no need to prebuild version.h these days
(Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
Revision Changes Path
1.74 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.74&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.74&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.73&r2=1.74
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ffmpeg-9999.ebuild 15 Dec 2011 11:43:51 -0000 1.73
+++ ffmpeg-9999.ebuild 15 Dec 2011 11:46:01 -0000 1.74
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.73 2011/12/15 11:43:51 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.74 2011/12/15 11:46:01 aballier Exp $
EAPI="4"
@@ -246,8 +246,6 @@
}
src_compile() {
- #252269
- emake version.h
emake
if use qt-faststart; then
1.512 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.512&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.512&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.511&r2=1.512
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.511
retrieving revision 1.512
diff -u -r1.511 -r1.512
--- ChangeLog 15 Dec 2011 11:43:51 -0000 1.511
+++ ChangeLog 15 Dec 2011 11:46:01 -0000 1.512
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.511 2011/12/15 11:43:51 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.512 2011/12/15 11:46:01 aballier Exp $
+
+ 15 Dec 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ no need to prebuild version.h these days
15 Dec 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
feed configure with cxx and ar too
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-12-15 11:43 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-12-15 11:43 UTC (permalink / raw
To: gentoo-commits
aballier 11/12/15 11:43:51
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
feed configure with cxx and ar too
(Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
Revision Changes Path
1.73 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.73&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.73&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.72&r2=1.73
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ffmpeg-9999.ebuild 15 Dec 2011 11:38:29 -0000 1.72
+++ ffmpeg-9999.ebuild 15 Dec 2011 11:43:51 -0000 1.73
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.72 2011/12/15 11:38:29 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.73 2011/12/15 11:43:51 aballier Exp $
EAPI="4"
@@ -236,6 +236,8 @@
--mandir="${EPREFIX}/usr/share/man" \
--enable-shared \
--cc="$(tc-getCC)" \
+ --cxx="$(tc-getCXX)" \
+ --ar="$(tc-getAR)" \
--optflags="" \
--extra-cflags="${CFLAGS}" \
--extra-cxxflags="${CXXFLAGS}" \
1.511 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.511&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.511&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.510&r2=1.511
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.510
retrieving revision 1.511
diff -u -r1.510 -r1.511
--- ChangeLog 15 Dec 2011 11:39:46 -0000 1.510
+++ ChangeLog 15 Dec 2011 11:43:51 -0000 1.511
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.510 2011/12/15 11:39:46 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.511 2011/12/15 11:43:51 aballier Exp $
+
+ 15 Dec 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ feed configure with cxx and ar too
15 Dec 2011; Alexis Ballier <aballier@gentoo.org> metadata.xml:
fix celt usedesc
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-12-15 11:25 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-12-15 11:25 UTC (permalink / raw
To: gentoo-commits
aballier 11/12/15 11:25:11
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
disable all asm on x86 with pic, this should be much slower but, at least, pic
(Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
Revision Changes Path
1.71 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.71&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.71&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.70&r2=1.71
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- ffmpeg-9999.ebuild 15 Dec 2011 11:21:08 -0000 1.70
+++ ffmpeg-9999.ebuild 15 Dec 2011 11:25:11 -0000 1.71
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.70 2011/12/15 11:21:08 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.71 2011/12/15 11:25:11 aballier Exp $
EAPI="4"
@@ -180,15 +180,13 @@
for i in ${CPU_FEATURES}; do
use ${i%:*} || myconf="${myconf} --disable-${i#*:}"
done
- # disable mmx accelerated code if PIC is required
- # as the provided asm decidedly is not PIC for x86.
- if use pic && use x86 ; then
- myconf="${myconf} --disable-mmx --disable-mmx2"
+ if use pic ; then
+ myconf="${myconf} --enable-pic"
+ # disable asm code if PIC is required
+ # as the provided asm decidedly is not PIC for x86.
+ use x86 && myconf="${myconf} --disable-asm"
fi
- # Option to force building pic
- use pic && myconf="${myconf} --enable-pic"
-
# Try to get cpu type based on CFLAGS.
# Bug #172723
# We need to do this so that features of that CPU will be better used
1.507 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.507&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.507&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.506&r2=1.507
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.506
retrieving revision 1.507
diff -u -r1.506 -r1.507
--- ChangeLog 15 Dec 2011 11:21:08 -0000 1.506
+++ ChangeLog 15 Dec 2011 11:25:11 -0000 1.507
@@ -1,6 +1,10 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.506 2011/12/15 11:21:08 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.507 2011/12/15 11:25:11 aballier Exp $
+
+ 15 Dec 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ disable all asm on x86 with pic, this should be much slower but, at least,
+ pic
15 Dec 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
remove x86 special handling, this should be handled automagically by the
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-12-15 11:21 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-12-15 11:21 UTC (permalink / raw
To: gentoo-commits
aballier 11/12/15 11:21:08
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
remove x86 special handling, this should be handled automagically by the build system nowadays
(Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
Revision Changes Path
1.70 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.70&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.70&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.69&r2=1.70
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ffmpeg-9999.ebuild 15 Dec 2011 11:15:54 -0000 1.69
+++ ffmpeg-9999.ebuild 15 Dec 2011 11:21:08 -0000 1.70
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.69 2011/12/15 11:15:54 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.70 2011/12/15 11:21:08 aballier Exp $
EAPI="4"
@@ -228,21 +228,6 @@
# Misc stuff
use hardcoded-tables && myconf="${myconf} --enable-hardcoded-tables"
- # Specific workarounds for too-few-registers arch...
- if [[ $(tc-arch) == "x86" ]]; then
- filter-flags -fforce-addr -momit-leaf-frame-pointer
- append-flags -fomit-frame-pointer
- is-flag -O? || append-flags -O2
- if (use debug); then
- # no need to warn about debug if not using debug flag
- ewarn ""
- ewarn "Debug information will be almost useless as the frame pointer is omitted."
- ewarn "This makes debugging harder, so crashes that has no fixed behavior are"
- ewarn "difficult to fix. Please have that in mind."
- ewarn ""
- fi
- fi
-
cd "${S}"
./configure \
--prefix="${EPREFIX}/usr" \
1.506 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.506&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.506&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.505&r2=1.506
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.505
retrieving revision 1.506
diff -u -r1.505 -r1.506
--- ChangeLog 15 Dec 2011 11:15:54 -0000 1.505
+++ ChangeLog 15 Dec 2011 11:21:08 -0000 1.506
@@ -1,6 +1,10 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.505 2011/12/15 11:15:54 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.506 2011/12/15 11:21:08 aballier Exp $
+
+ 15 Dec 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ remove x86 special handling, this should be handled automagically by the
+ build system nowadays
15 Dec 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
pass user cflags as extra-cflags, disable optflags as we assume user cflags
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-12-15 11:15 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-12-15 11:15 UTC (permalink / raw
To: gentoo-commits
aballier 11/12/15 11:15:54
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
pass user cflags as extra-cflags, disable optflags as we assume user cflags contain them, do not disable opimizations since optflags are empty, bug #392451
(Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
Revision Changes Path
1.69 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.69&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.69&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.68&r2=1.69
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ffmpeg-9999.ebuild 9 Dec 2011 13:59:29 -0000 1.68
+++ ffmpeg-9999.ebuild 15 Dec 2011 11:15:54 -0000 1.69
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.68 2011/12/09 13:59:29 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.69 2011/12/15 11:15:54 aballier Exp $
EAPI="4"
@@ -251,7 +251,9 @@
--mandir="${EPREFIX}/usr/share/man" \
--enable-shared \
--cc="$(tc-getCC)" \
- --disable-optimizations \
+ --optflags="" \
+ --extra-cflags="${CFLAGS}" \
+ --extra-cxxflags="${CXXFLAGS}" \
$(use_enable static-libs static) \
${myconf} || die
}
1.505 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.505&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.505&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.504&r2=1.505
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.504
retrieving revision 1.505
diff -u -r1.504 -r1.505
--- ChangeLog 9 Dec 2011 13:59:29 -0000 1.504
+++ ChangeLog 15 Dec 2011 11:15:54 -0000 1.505
@@ -1,6 +1,11 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.504 2011/12/09 13:59:29 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.505 2011/12/15 11:15:54 aballier Exp $
+
+ 15 Dec 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ pass user cflags as extra-cflags, disable optflags as we assume user cflags
+ contain them, do not disable opimizations since optflags are empty, bug
+ #392451
09 Dec 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-0.8.7.ebuild,
ffmpeg-9999.ebuild:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-12-06 13:13 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-12-06 13:13 UTC (permalink / raw
To: gentoo-commits
aballier 11/12/06 13:13:03
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
tests are now run with the fate makefile target
(Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
Revision Changes Path
1.67 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.67&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.67&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.66&r2=1.67
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ffmpeg-9999.ebuild 3 Dec 2011 15:41:02 -0000 1.66
+++ ffmpeg-9999.ebuild 6 Dec 2011 13:13:02 -0000 1.67
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.66 2011/12/03 15:41:02 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.67 2011/12/06 13:13:02 aballier Exp $
EAPI="4"
@@ -281,7 +281,7 @@
src_test() {
if use encode ; then
LD_LIBRARY_PATH="${S}/libpostproc:${S}/libswscale:${S}/libavcodec:${S}/libavdevice:${S}/libavfilter:${S}/libavformat:${S}/libavutil" \
- emake test
+ emake fate
else
ewarn "Tests fail without USE=encode, skipping"
fi
1.502 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.502&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.502&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.501&r2=1.502
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.501
retrieving revision 1.502
diff -u -r1.501 -r1.502
--- ChangeLog 6 Dec 2011 12:36:33 -0000 1.501
+++ ChangeLog 6 Dec 2011 13:13:02 -0000 1.502
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.501 2011/12/06 12:36:33 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.502 2011/12/06 13:13:02 aballier Exp $
+
+ 06 Dec 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ tests are now run with the fate makefile target
06 Dec 2011; Alexis Ballier <aballier@gentoo.org> metadata.xml:
improve vdpau usedesc, by Raúl Porcel
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-12-03 15:41 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-12-03 15:41 UTC (permalink / raw
To: gentoo-commits
aballier 11/12/03 15:41:02
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
fix sdl automagic
(Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
Revision Changes Path
1.66 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.66&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.66&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.65&r2=1.66
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ffmpeg-9999.ebuild 2 Dec 2011 18:22:15 -0000 1.65
+++ ffmpeg-9999.ebuild 3 Dec 2011 15:41:02 -0000 1.66
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.65 2011/12/02 18:22:15 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.66 2011/12/03 15:41:02 aballier Exp $
EAPI="4"
@@ -158,7 +158,7 @@
use pulseaudio && myconf="${myconf} --enable-libpulse"
use libv4l && myconf="${myconf} --enable-libv4l2"
# Outdevs
- for i in alsa oss ; do
+ for i in alsa oss sdl ; do
use ${i} || myconf="${myconf} --disable-outdev=${i}"
done
# libavfilter options
1.499 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.499&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.499&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.498&r2=1.499
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.498
retrieving revision 1.499
diff -u -r1.498 -r1.499
--- ChangeLog 2 Dec 2011 18:22:15 -0000 1.498
+++ ChangeLog 3 Dec 2011 15:41:02 -0000 1.499
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.498 2011/12/02 18:22:15 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.499 2011/12/03 15:41:02 aballier Exp $
+
+ 03 Dec 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ fix sdl automagic
02 Dec 2011; Steve Dibb <beandog@gentoo.org> ffmpeg-0.7.7.ebuild,
ffmpeg-0.7.8.ebuild, ffmpeg-0.8.7.ebuild, ffmpeg-9999.ebuild:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-11-09 13:01 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-11-09 13:01 UTC (permalink / raw
To: gentoo-commits
aballier 11/11/09 13:01:11
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add iwmmxt useflag, bug #349814
(Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
Revision Changes Path
1.63 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.62&r2=1.63
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ffmpeg-9999.ebuild 7 Nov 2011 13:30:57 -0000 1.62
+++ ffmpeg-9999.ebuild 9 Nov 2011 13:01:11 -0000 1.63
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.62 2011/11/07 13:30:57 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.63 2011/11/09 13:01:11 aballier Exp $
EAPI="4"
@@ -38,7 +38,7 @@
# String for CPU features in the useflag[:configure_option] form
# if :configure_option isn't set, it will use 'useflag' as configure option
-CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext altivec avx mmx mmxext:mmx2 ssse3 vis neon"
+CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext altivec avx mmx mmxext:mmx2 ssse3 vis neon iwmmxt"
for i in ${CPU_FEATURES}; do
IUSE="${IUSE} ${i%:*}"
1.485 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.485&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.485&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.484&r2=1.485
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.484
retrieving revision 1.485
diff -u -r1.484 -r1.485
--- ChangeLog 8 Nov 2011 22:40:52 -0000 1.484
+++ ChangeLog 9 Nov 2011 13:01:11 -0000 1.485
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.484 2011/11/08 22:40:52 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.485 2011/11/09 13:01:11 aballier Exp $
+
+ 09 Nov 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add iwmmxt useflag, bug #349814
08 Nov 2011; Jeroen Roovers <jer@gentoo.org> ffmpeg-0.7.7.ebuild:
Stable for HPPA (bug #389807).
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-11-07 13:23 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-11-07 13:23 UTC (permalink / raw
To: gentoo-commits
aballier 11/11/07 13:23:08
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add gnutls useflag
(Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
Revision Changes Path
1.61 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.60&r2=1.61
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ffmpeg-9999.ebuild 7 Nov 2011 13:17:18 -0000 1.60
+++ ffmpeg-9999.ebuild 7 Nov 2011 13:23:08 -0000 1.61
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.60 2011/11/07 13:17:18 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.61 2011/11/07 13:23:08 aballier Exp $
EAPI="4"
@@ -30,10 +30,10 @@
fi
IUSE="
aac aacplus alsa amr bindist +bzip2 cdio celt cpudetection debug dirac doc
- +encode faac frei0r gsm +hardcoded-tables ieee1394 jack jpeg2k modplug mp3
- network openal openssl oss pic pulseaudio qt-faststart rtmp schroedinger sdl
- speex static-libs test theora threads truetype v4l vaapi vdpau vorbis vpx X
- x264 xvid +zlib
+ +encode faac frei0r gnutls gsm +hardcoded-tables ieee1394 jack jpeg2k
+ modplug mp3 network openal openssl oss pic pulseaudio qt-faststart rtmp
+ schroedinger sdl speex static-libs test theora threads truetype v4l vaapi
+ vdpau vorbis vpx X x264 xvid +zlib
"
# String for CPU features in the useflag[:configure_option] form
@@ -63,6 +63,7 @@
xvid? ( >=media-libs/xvid-1.1.0 )
)
frei0r? ( media-plugins/frei0r-plugins )
+ gnutls? ( net-libs/gnutls )
gsm? ( >=media-sound/gsm-1.0.12-r1 )
ieee1394? ( media-libs/libdc1394 sys-libs/libraw1394 )
jack? ( media-sound/jack-audio-connection-kit )
@@ -87,6 +88,7 @@
>=sys-devel/make-3.81
dirac? ( dev-util/pkgconfig )
doc? ( app-text/texi2html )
+ gnutls? ( dev-util/pkgconfig )
ieee1394? ( dev-util/pkgconfig )
mmx? ( dev-lang/yasm )
rtmp? ( dev-util/pkgconfig )
@@ -120,6 +122,7 @@
use cpudetection && myconf="${myconf} --enable-runtime-cpudetect"
use openssl && myconf="${myconf} --enable-openssl --enable-nonfree"
+ use gnutls && myconf="${myconf} --enable-gnutls"
# Encoders
if use encode
1.481 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.481&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.481&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.480&r2=1.481
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.480
retrieving revision 1.481
diff -u -r1.480 -r1.481
--- ChangeLog 7 Nov 2011 13:17:18 -0000 1.480
+++ ChangeLog 7 Nov 2011 13:23:08 -0000 1.481
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.480 2011/11/07 13:17:18 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.481 2011/11/07 13:23:08 aballier Exp $
+
+ 07 Nov 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add gnutls useflag
07 Nov 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild,
metadata.xml:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-11-02 14:08 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-11-02 14:08 UTC (permalink / raw
To: gentoo-commits
aballier 11/11/02 14:08:52
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add pulseaudio useflag
(Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
Revision Changes Path
1.59 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.59&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.59&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.58&r2=1.59
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ffmpeg-9999.ebuild 1 Nov 2011 00:37:26 -0000 1.58
+++ ffmpeg-9999.ebuild 2 Nov 2011 14:08:52 -0000 1.59
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.58 2011/11/01 00:37:26 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.59 2011/11/02 14:08:52 aballier Exp $
EAPI="4"
@@ -31,9 +31,9 @@
IUSE="
aac aacplus alsa amr bindist +bzip2 cdio celt cpudetection debug dirac doc
+encode faac frei0r gsm +hardcoded-tables ieee1394 jack jpeg2k modplug mp3
- network openal oss pic qt-faststart rtmp schroedinger sdl speex static-libs
- test theora threads truetype v4l vaapi vdpau vorbis vpx X x264 xvid
- +zlib
+ network openal oss pic pulseaudio qt-faststart rtmp schroedinger sdl speex
+ static-libs test theora threads truetype v4l vaapi vdpau vorbis vpx X x264
+ xvid +zlib
"
# String for CPU features in the useflag[:configure_option] form
@@ -69,6 +69,7 @@
jpeg2k? ( >=media-libs/openjpeg-1.3-r2 )
modplug? ( media-libs/libmodplug )
openal? ( >=media-libs/openal-1.1 )
+ pulseaudio? ( media-sound/pulseaudio )
rtmp? ( >=media-video/rtmpdump-2.2f )
sdl? ( >=media-libs/libsdl-1.2.13-r1[audio,video] )
schroedinger? ( media-libs/schroedinger )
@@ -146,6 +147,7 @@
use ${i} || myconf="${myconf} --disable-indev=${i}"
done
use X && myconf="${myconf} --enable-x11grab"
+ use pulseaudio && myconf="${myconf} --enable-libpulse"
# Outdevs
for i in alsa oss ; do
use ${i} || myconf="${myconf} --disable-outdev=${i}"
1.477 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.477&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.477&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.476&r2=1.477
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.476
retrieving revision 1.477
diff -u -r1.476 -r1.477
--- ChangeLog 1 Nov 2011 00:37:26 -0000 1.476
+++ ChangeLog 2 Nov 2011 14:08:52 -0000 1.477
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.476 2011/11/01 00:37:26 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.477 2011/11/02 14:08:52 aballier Exp $
+
+ 02 Nov 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add pulseaudio useflag
01 Nov 2011; Samuli Suominen <ssuominen@gentoo.org> ffmpeg-0.7.6.ebuild,
ffmpeg-0.8.5.ebuild, ffmpeg-9999.ebuild:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-10-21 12:52 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-10-21 12:52 UTC (permalink / raw
To: gentoo-commits
aballier 11/10/21 12:52:01
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
bump x264 dep
(Portage version: 2.2.0_alpha70/cvs/Linux x86_64)
Revision Changes Path
1.57 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.57&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.57&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.56&r2=1.57
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ffmpeg-9999.ebuild 5 Oct 2011 14:17:52 -0000 1.56
+++ ffmpeg-9999.ebuild 21 Oct 2011 12:52:01 -0000 1.57
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.56 2011/10/05 14:17:52 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.57 2011/10/21 12:52:01 aballier Exp $
EAPI="4"
@@ -59,7 +59,7 @@
mp3? ( >=media-sound/lame-3.98.3 )
theora? ( >=media-libs/libtheora-1.1.1[encode] media-libs/libogg )
vorbis? ( media-libs/libvorbis media-libs/libogg )
- x264? ( >=media-libs/x264-0.0.20110426 )
+ x264? ( >=media-libs/x264-0.0.20111017 )
xvid? ( >=media-libs/xvid-1.1.0 )
)
frei0r? ( media-plugins/frei0r-plugins )
1.474 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.474&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.474&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.473&r2=1.474
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.473
retrieving revision 1.474
diff -u -r1.473 -r1.474
--- ChangeLog 15 Oct 2011 12:22:41 -0000 1.473
+++ ChangeLog 21 Oct 2011 12:52:01 -0000 1.474
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.473 2011/10/15 12:22:41 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.474 2011/10/21 12:52:01 aballier Exp $
+
+ 21 Oct 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ bump x264 dep
15 Oct 2011; Alexis Ballier <aballier@gentoo.org> -ffmpeg-0.7.5.ebuild,
-ffmpeg-0.8.4.ebuild:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-10-05 14:17 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-10-05 14:17 UTC (permalink / raw
To: gentoo-commits
aballier 11/10/05 14:17:52
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add libmodplug support
(Portage version: 2.2.0_alpha60/cvs/Linux x86_64)
Revision Changes Path
1.56 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.55&r2=1.56
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ffmpeg-9999.ebuild 27 Sep 2011 18:14:53 -0000 1.55
+++ ffmpeg-9999.ebuild 5 Oct 2011 14:17:52 -0000 1.56
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.55 2011/09/27 18:14:53 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.56 2011/10/05 14:17:52 aballier Exp $
EAPI="4"
@@ -30,9 +30,10 @@
fi
IUSE="
aac aacplus alsa amr bindist +bzip2 cdio celt cpudetection debug dirac doc
- +encode faac frei0r gsm +hardcoded-tables ieee1394 jack jpeg2k mp3 network
- openal oss pic qt-faststart rtmp schroedinger sdl speex static-libs test
- theora threads truetype v4l v4l2 vaapi vdpau vorbis vpx X x264 xvid +zlib
+ +encode faac frei0r gsm +hardcoded-tables ieee1394 jack jpeg2k modplug mp3
+ network openal oss pic qt-faststart rtmp schroedinger sdl speex static-libs
+ test theora threads truetype v4l v4l2 vaapi vdpau vorbis vpx X x264 xvid
+ +zlib
"
# String for CPU features in the useflag[:configure_option] form
@@ -66,6 +67,7 @@
ieee1394? ( media-libs/libdc1394 sys-libs/libraw1394 )
jack? ( media-sound/jack-audio-connection-kit )
jpeg2k? ( >=media-libs/openjpeg-1.3-r2 )
+ modplug? ( media-libs/libmodplug )
openal? ( >=media-libs/openal-1.1 )
rtmp? ( >=media-video/rtmpdump-2.2f )
sdl? ( >=media-libs/libsdl-1.2.13-r1[audio,video] )
@@ -155,7 +157,7 @@
# Decoders
use amr && { myconf="${myconf} --enable-libopencore-amrwb --enable-libopencore-amrnb" ; version3=" --enable-version3" ; }
- for i in celt gsm dirac rtmp schroedinger speex vpx; do
+ for i in celt gsm dirac modplug rtmp schroedinger speex vpx; do
use ${i} && myconf="${myconf} --enable-lib${i}"
done
use jpeg2k && myconf="${myconf} --enable-libopenjpeg"
1.466 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.466&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.466&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.465&r2=1.466
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.465
retrieving revision 1.466
diff -u -r1.465 -r1.466
--- ChangeLog 5 Oct 2011 14:06:08 -0000 1.465
+++ ChangeLog 5 Oct 2011 14:17:52 -0000 1.466
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.465 2011/10/05 14:06:08 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.466 2011/10/05 14:17:52 aballier Exp $
+
+ 05 Oct 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add libmodplug support
*ffmpeg-0.8.5 (05 Oct 2011)
*ffmpeg-0.7.6 (05 Oct 2011)
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-07-06 21:49 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-07-06 21:49 UTC (permalink / raw
To: gentoo-commits
aballier 11/07/06 21:49:06
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
Factorise a bit the cpu features handling code and keep the declarations in one place, a string that will be used to fill IUSE and convert them to ./configure arguments. Do not default-enable them anymore.
(Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
Revision Changes Path
1.50 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.50&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.50&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.49&r2=1.50
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- ffmpeg-9999.ebuild 29 Jun 2011 15:07:07 -0000 1.49
+++ ffmpeg-9999.ebuild 6 Jul 2011 21:49:06 -0000 1.50
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.49 2011/06/29 15:07:07 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.50 2011/07/06 21:49:06 aballier Exp $
EAPI="4"
@@ -29,13 +29,20 @@
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
fi
IUSE="
- +3dnow +3dnowext aac alsa altivec amr avx bindist +bzip2 celt cpudetection
- debug dirac doc +encode faac frei0r gsm +hardcoded-tables ieee1394 jack
- jpeg2k +mmx +mmxext mp3 network openal oss pic qt-faststart rtmp
- schroedinger sdl speex +ssse3 static-libs test theora threads truetype
- v4l v4l2 vaapi vdpau vorbis vpx X x264 xvid +zlib
+ aac alsa amr bindist +bzip2 celt cpudetection debug dirac doc +encode faac
+ frei0r gsm +hardcoded-tables ieee1394 jack jpeg2k mp3 network openal oss pic
+ qt-faststart rtmp schroedinger sdl speex static-libs test theora threads
+ truetype v4l v4l2 vaapi vdpau vorbis vpx X x264 xvid +zlib
"
+# String for CPU features in the useflag[:configure_option] form
+# if :configure_option isn't set, it will use 'useflag' as configure option
+CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext altivec avx mmx mmxext:mmx2 ssse3"
+
+for i in ${CPU_FEATURES}; do
+ IUSE="${IUSE} ${i%:*}"
+done
+
RDEPEND="
alsa? ( media-libs/alsa-lib )
amr? ( media-libs/opencore-amr )
@@ -148,12 +155,9 @@
use jpeg2k && myconf="${myconf} --enable-libopenjpeg"
# CPU features
- for i in mmx ssse3 altivec avx ; do
- use ${i} || myconf="${myconf} --disable-${i}"
+ for i in ${CPU_FEATURES}; do
+ use ${i%:*} || myconf="${myconf} --disable-${i#*:}"
done
- use mmxext || myconf="${myconf} --disable-mmx2"
- use 3dnow || myconf="${myconf} --disable-amd3dnow"
- use 3dnowext || myconf="${myconf} --disable-amd3dnowext"
# disable mmx accelerated code if PIC is required
# as the provided asm decidedly is not PIC for x86.
if use pic && use x86 ; then
1.430 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.430&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.430&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.429&r2=1.430
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.429
retrieving revision 1.430
diff -u -r1.429 -r1.430
--- ChangeLog 6 Jul 2011 21:08:56 -0000 1.429
+++ ChangeLog 6 Jul 2011 21:49:06 -0000 1.430
@@ -1,6 +1,11 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.429 2011/07/06 21:08:56 halcy0n Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.430 2011/07/06 21:49:06 aballier Exp $
+
+ 06 Jul 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ Factorise a bit the cpu features handling code and keep the declarations in
+ one place, a string that will be used to fill IUSE and convert them to
+ ./configure arguments. Do not default-enable them anymore.
06 Jul 2011; Mark Loeser <halcy0n@gentoo.org> ffmpeg-0.7_rc1.ebuild:
Mark stable for ppc64; bug 365273
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-06-29 15:07 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-06-29 15:07 UTC (permalink / raw
To: gentoo-commits
aballier 11/06/29 15:07:07
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
drop the video_cards_nvidia guard for vdpau
(Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
Revision Changes Path
1.49 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.48&r2=1.49
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ffmpeg-9999.ebuild 29 Jun 2011 15:01:15 -0000 1.48
+++ ffmpeg-9999.ebuild 29 Jun 2011 15:07:07 -0000 1.49
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.48 2011/06/29 15:01:15 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.49 2011/06/29 15:07:07 aballier Exp $
EAPI="4"
@@ -36,12 +36,6 @@
v4l v4l2 vaapi vdpau vorbis vpx X x264 xvid +zlib
"
-VIDEO_CARDS="nvidia"
-
-for x in ${VIDEO_CARDS}; do
- IUSE="${IUSE} video_cards_${x}"
-done
-
RDEPEND="
alsa? ( media-libs/alsa-lib )
amr? ( media-libs/opencore-amr )
@@ -70,7 +64,7 @@
speex? ( >=media-libs/speex-1.2_beta3 )
truetype? ( media-libs/freetype:2 )
vaapi? ( >=x11-libs/libva-0.32 )
- video_cards_nvidia? ( vdpau? ( x11-libs/libvdpau ) )
+ vdpau? ( x11-libs/libvdpau )
vpx? ( >=media-libs/libvpx-0.9.6 )
X? ( x11-libs/libX11 x11-libs/libXext )
zlib? ( sys-libs/zlib )
@@ -105,7 +99,7 @@
local version3=""
# enabled by default
- for i in debug doc network vaapi zlib; do
+ for i in debug doc network vaapi vdpau zlib; do
use ${i} || myconf="${myconf} --disable-${i}"
done
use bzip2 || myconf="${myconf} --disable-bzlib"
@@ -113,12 +107,6 @@
use cpudetection && myconf="${myconf} --enable-runtime-cpudetect"
- #for i in h264_vdpau mpeg1_vdpau mpeg_vdpau vc1_vdpau wmv3_vdpau; do
- # use video_cards_nvidia || myconf="${myconf} --disable-decoder=${i}"
- # use vdpau || myconf="${myconf} --disable-decoder=${i}"
- #done
- use video_cards_nvidia && use vdpau || myconf="${myconf} --disable-vdpau"
-
# Encoders
if use encode
then
1.428 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.428&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.428&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.427&r2=1.428
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.427
retrieving revision 1.428
diff -u -r1.427 -r1.428
--- ChangeLog 29 Jun 2011 15:01:15 -0000 1.427
+++ ChangeLog 29 Jun 2011 15:07:07 -0000 1.428
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.427 2011/06/29 15:01:15 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.428 2011/06/29 15:07:07 aballier Exp $
+
+ 29 Jun 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ drop the video_cards_nvidia guard for vdpau
29 Jun 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
drop custom-cflags useflag and always use ours
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-06-29 15:01 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-06-29 15:01 UTC (permalink / raw
To: gentoo-commits
aballier 11/06/29 15:01:16
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
drop custom-cflags useflag and always use ours
(Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
Revision Changes Path
1.48 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.47&r2=1.48
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ffmpeg-9999.ebuild 29 Jun 2011 14:50:13 -0000 1.47
+++ ffmpeg-9999.ebuild 29 Jun 2011 15:01:15 -0000 1.48
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.47 2011/06/29 14:50:13 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.48 2011/06/29 15:01:15 aballier Exp $
EAPI="4"
@@ -30,9 +30,9 @@
fi
IUSE="
+3dnow +3dnowext aac alsa altivec amr avx bindist +bzip2 celt cpudetection
- custom-cflags debug dirac doc +encode faac frei0r gsm +hardcoded-tables
- ieee1394 jack jpeg2k +mmx +mmxext mp3 network openal oss pic qt-faststart
- rtmp schroedinger sdl speex +ssse3 static-libs test theora threads truetype
+ debug dirac doc +encode faac frei0r gsm +hardcoded-tables ieee1394 jack
+ jpeg2k +mmx +mmxext mp3 network openal oss pic qt-faststart rtmp
+ schroedinger sdl speex +ssse3 static-libs test theora threads truetype
v4l v4l2 vaapi vdpau vorbis vpx X x264 xvid +zlib
"
@@ -111,7 +111,6 @@
use bzip2 || myconf="${myconf} --disable-bzlib"
use sdl || myconf="${myconf} --disable-ffplay"
- use custom-cflags && myconf="${myconf} --disable-optimizations"
use cpudetection && myconf="${myconf} --enable-runtime-cpudetect"
#for i in h264_vdpau mpeg1_vdpau mpeg_vdpau vc1_vdpau wmv3_vdpau; do
@@ -238,6 +237,7 @@
--mandir="${EPREFIX}/usr/share/man" \
--enable-shared \
--cc="$(tc-getCC)" \
+ --disable-optimizations \
$(use_enable static-libs static) \
${myconf} || die
}
1.427 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.427&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.427&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.426&r2=1.427
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.426
retrieving revision 1.427
diff -u -r1.426 -r1.427
--- ChangeLog 29 Jun 2011 14:57:14 -0000 1.426
+++ ChangeLog 29 Jun 2011 15:01:15 -0000 1.427
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.426 2011/06/29 14:57:14 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.427 2011/06/29 15:01:15 aballier Exp $
+
+ 29 Jun 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ drop custom-cflags useflag and always use ours
29 Jun 2011; Christoph Mende <angelos@gentoo.org> ffmpeg-0.7_rc1.ebuild:
Stable on amd64 wrt bug #365273
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-06-27 14:25 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-06-27 14:25 UTC (permalink / raw
To: gentoo-commits
aballier 11/06/27 14:25:08
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add openal useflag
(Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
Revision Changes Path
1.46 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.46&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.46&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.45&r2=1.46
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- ffmpeg-9999.ebuild 24 Jun 2011 13:32:54 -0000 1.45
+++ ffmpeg-9999.ebuild 27 Jun 2011 14:25:08 -0000 1.46
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.45 2011/06/24 13:32:54 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.46 2011/06/27 14:25:08 aballier Exp $
EAPI="2"
@@ -31,9 +31,9 @@
IUSE="
+3dnow +3dnowext aac alsa altivec amr avx bindist +bzip2 celt cpudetection
custom-cflags debug dirac doc +encode faac frei0r gsm +hardcoded-tables
- ieee1394 jack jpeg2k +mmx +mmxext mp3 network oss pic qt-faststart rtmp
- schroedinger sdl speex +ssse3 static-libs test theora threads truetype v4l
- v4l2 vaapi vdpau vorbis vpx X x264 xvid +zlib
+ ieee1394 jack jpeg2k +mmx +mmxext mp3 network openal oss pic qt-faststart
+ rtmp schroedinger sdl speex +ssse3 static-libs test theora threads truetype
+ v4l v4l2 vaapi vdpau vorbis vpx X x264 xvid +zlib
"
VIDEO_CARDS="nvidia"
@@ -63,6 +63,7 @@
ieee1394? ( media-libs/libdc1394 sys-libs/libraw1394 )
jack? ( media-sound/jack-audio-connection-kit )
jpeg2k? ( >=media-libs/openjpeg-1.3-r2 )
+ openal? ( >=media-libs/openal-1.1 )
rtmp? ( >=media-video/rtmpdump-2.2f )
sdl? ( >=media-libs/libsdl-1.2.13-r1[audio,video] )
schroedinger? ( media-libs/schroedinger )
@@ -139,6 +140,7 @@
# libavdevice options
use ieee1394 && myconf="${myconf} --enable-libdc1394"
+ use openal && myconf="${myconf} --enable-openal"
# Indevs
for i in v4l v4l2 alsa oss jack ; do
use ${i} || myconf="${myconf} --disable-indev=${i}"
1.424 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.424&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.424&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.423&r2=1.424
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.423
retrieving revision 1.424
diff -u -r1.423 -r1.424
--- ChangeLog 26 Jun 2011 14:58:54 -0000 1.423
+++ ChangeLog 27 Jun 2011 14:25:08 -0000 1.424
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.423 2011/06/26 14:58:54 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.424 2011/06/27 14:25:08 aballier Exp $
+
+ 27 Jun 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add openal useflag
26 Jun 2011; Brent Baude <ranger@gentoo.org> ffmpeg-0.7_rc1.ebuild:
marking ffmpeg-0.7_rc1 ppc for sec bug 365273
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-06-23 12:42 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-06-23 12:42 UTC (permalink / raw
To: gentoo-commits
aballier 11/06/23 12:42:47
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
no need to strip the -sse3 suffix for gcc march flag, its now handled in configure
(Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
Revision Changes Path
1.44 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.43&r2=1.44
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ffmpeg-9999.ebuild 22 Jun 2011 18:44:50 -0000 1.43
+++ ffmpeg-9999.ebuild 23 Jun 2011 12:42:47 -0000 1.44
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.43 2011/06/22 18:44:50 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.44 2011/06/23 12:42:47 aballier Exp $
EAPI="2"
@@ -185,7 +185,6 @@
# will just ignore it.
for i in $(get-flag march) $(get-flag mcpu) $(get-flag mtune) ; do
[ "${i}" = "native" ] && i="host" # bug #273421
- [[ ${i} = *-sse3 ]] && i="${i%-sse3}" # bug 283968
myconf="${myconf} --cpu=${i}"
break
done
1.418 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.418&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.418&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.417&r2=1.418
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.417
retrieving revision 1.418
diff -u -r1.417 -r1.418
--- ChangeLog 22 Jun 2011 18:44:50 -0000 1.417
+++ ChangeLog 23 Jun 2011 12:42:47 -0000 1.418
@@ -1,6 +1,10 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.417 2011/06/22 18:44:50 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.418 2011/06/23 12:42:47 aballier Exp $
+
+ 23 Jun 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ no need to strip the -sse3 suffix for gcc march flag, its now handled in
+ configure
22 Jun 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
use git-2.eclass
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-06-22 18:44 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-06-22 18:44 UTC (permalink / raw
To: gentoo-commits
aballier 11/06/22 18:44:50
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
use git-2.eclass
(Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
Revision Changes Path
1.43 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.43&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.43&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.42&r2=1.43
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- ffmpeg-9999.ebuild 20 Apr 2011 14:25:17 -0000 1.42
+++ ffmpeg-9999.ebuild 22 Jun 2011 18:44:50 -0000 1.43
@@ -1,12 +1,12 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.42 2011/04/20 14:25:17 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.43 2011/06/22 18:44:50 aballier Exp $
EAPI="2"
SCM=""
if [ "${PV#9999}" != "${PV}" ] ; then
- SCM="git"
+ SCM="git-2"
EGIT_REPO_URI="git://git.videolan.org/ffmpeg.git"
fi
1.417 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.417&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.417&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.416&r2=1.417
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.416
retrieving revision 1.417
diff -u -r1.416 -r1.417
--- ChangeLog 21 Jun 2011 13:59:29 -0000 1.416
+++ ChangeLog 22 Jun 2011 18:44:50 -0000 1.417
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.416 2011/06/21 13:59:29 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.417 2011/06/22 18:44:50 aballier Exp $
+
+ 22 Jun 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ use git-2.eclass
21 Jun 2011; Tobias Klausmann <klausman@gentoo.org> ffmpeg-0.7_rc1.ebuild:
Stable on alpha, bug #365273
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-04-13 12:40 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-04-13 12:40 UTC (permalink / raw
To: gentoo-commits
aballier 11/04/13 12:40:50
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
Enable (L)GPL-3 only when needed
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Revision Changes Path
1.41 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.40&r2=1.41
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ffmpeg-9999.ebuild 12 Apr 2011 13:44:37 -0000 1.40
+++ ffmpeg-9999.ebuild 13 Apr 2011 12:40:50 -0000 1.41
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.40 2011/04/12 13:44:37 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.41 2011/04/13 12:40:50 aballier Exp $
EAPI="2"
@@ -23,7 +23,7 @@
fi
FFMPEG_REVISION="${PV#*_p}"
-LICENSE="GPL-3"
+LICENSE="GPL-2 amr? ( GPL-3 ) encode? ( aac? ( GPL-3 ) )"
SLOT="0"
if [ "${PV#9999}" = "${PV}" ] ; then
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
@@ -97,6 +97,8 @@
src_configure() {
local myconf="${EXTRA_FFMPEG_CONF}"
+ # Set to --enable-version3 if (L)GPL-3 is required
+ local version3=""
# enabled by default
for i in debug doc network vaapi zlib; do
@@ -118,8 +120,8 @@
if use encode
then
use mp3 && myconf="${myconf} --enable-libmp3lame"
- use aac && myconf="${myconf} --enable-libvo-aacenc"
- use amr && myconf="${myconf} --enable-libvo-amrwbenc"
+ use aac && { myconf="${myconf} --enable-libvo-aacenc" ; version3=" --enable-version3" ; }
+ use amr && { myconf="${myconf} --enable-libvo-amrwbenc" ; version3=" --enable-version3" ; }
for i in theora vorbis x264 xvid; do
use ${i} && myconf="${myconf} --enable-lib${i}"
done
@@ -153,7 +155,7 @@
use threads && myconf="${myconf} --enable-pthreads"
# Decoders
- use amr && myconf="${myconf} --enable-libopencore-amrwb --enable-libopencore-amrnb"
+ use amr && { myconf="${myconf} --enable-libopencore-amrwb --enable-libopencore-amrnb" ; version3=" --enable-version3" ; }
for i in gsm dirac rtmp schroedinger speex vpx; do
use ${i} && myconf="${myconf} --enable-lib${i}"
done
@@ -190,7 +192,7 @@
# Mandatory configuration
myconf="
--enable-gpl
- --enable-version3
+ ${version3}
--enable-postproc
--enable-avfilter
--disable-stripping
1.407 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.407&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.407&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.406&r2=1.407
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.406
retrieving revision 1.407
diff -u -r1.406 -r1.407
--- ChangeLog 12 Apr 2011 14:45:47 -0000 1.406
+++ ChangeLog 13 Apr 2011 12:40:50 -0000 1.407
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.406 2011/04/12 14:45:47 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.407 2011/04/13 12:40:50 aballier Exp $
+
+ 13 Apr 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ Enable (L)GPL-3 only when needed
*ffmpeg-0.6.90_rc0-r1 (12 Apr 2011)
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-04-12 13:44 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-04-12 13:44 UTC (permalink / raw
To: gentoo-commits
aballier 11/04/12 13:44:38
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
no need to hack the LD_LIBRARY_PATH for libavcore since its no more
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Revision Changes Path
1.40 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.39&r2=1.40
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ffmpeg-9999.ebuild 12 Apr 2011 13:26:26 -0000 1.39
+++ ffmpeg-9999.ebuild 12 Apr 2011 13:44:37 -0000 1.40
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.39 2011/04/12 13:26:26 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.40 2011/04/12 13:44:37 aballier Exp $
EAPI="2"
@@ -266,7 +266,7 @@
src_test() {
if use encode ; then
for t in codectest lavftest seektest ; do
- LD_LIBRARY_PATH="${S}/libavcore:${S}/libpostproc:${S}/libswscale:${S}/libavcodec:${S}/libavdevice:${S}/libavfilter:${S}/libavformat:${S}/libavutil" \
+ LD_LIBRARY_PATH="${S}/libpostproc:${S}/libswscale:${S}/libavcodec:${S}/libavdevice:${S}/libavfilter:${S}/libavformat:${S}/libavutil" \
emake ${t} || die "Some tests in ${t} failed"
done
else
1.405 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.405&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.405&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.404&r2=1.405
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.404
retrieving revision 1.405
diff -u -r1.404 -r1.405
--- ChangeLog 12 Apr 2011 13:26:26 -0000 1.404
+++ ChangeLog 12 Apr 2011 13:44:37 -0000 1.405
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.404 2011/04/12 13:26:26 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.405 2011/04/12 13:44:37 aballier Exp $
+
+ 12 Apr 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ no need to hack the LD_LIBRARY_PATH for libavcore since its no more
12 Apr 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
Add support for amrwb and aac encodings via the libvo libraries. Bump libvpx
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-04-12 13:26 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-04-12 13:26 UTC (permalink / raw
To: gentoo-commits
aballier 11/04/12 13:26:26
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
Add support for amrwb and aac encodings via the libvo libraries. Bump libvpx dep.
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Revision Changes Path
1.39 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.38&r2=1.39
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ffmpeg-9999.ebuild 5 Apr 2011 04:49:22 -0000 1.38
+++ ffmpeg-9999.ebuild 12 Apr 2011 13:26:26 -0000 1.39
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.38 2011/04/05 04:49:22 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.39 2011/04/12 13:26:26 aballier Exp $
EAPI="2"
@@ -29,7 +29,7 @@
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
fi
IUSE="
- +3dnow +3dnowext alsa altivec amr avx bindist +bzip2 cpudetection
+ +3dnow +3dnowext aac alsa altivec amr avx bindist +bzip2 cpudetection
custom-cflags debug dirac doc +encode faac frei0r gsm +hardcoded-tables
ieee1394 jack jpeg2k +mmx +mmxext mp3 network oss pic qt-faststart rtmp
schroedinger sdl speex +ssse3 static-libs test theora threads truetype v4l
@@ -48,6 +48,8 @@
bzip2? ( app-arch/bzip2 )
dirac? ( media-video/dirac )
encode? (
+ aac? ( media-libs/vo-aacenc )
+ amr? ( media-libs/vo-amrwbenc )
faac? ( media-libs/faac )
mp3? ( >=media-sound/lame-3.98.3 )
theora? ( >=media-libs/libtheora-1.1.1[encode] media-libs/libogg )
@@ -67,7 +69,7 @@
truetype? ( media-libs/freetype:2 )
vaapi? ( >=x11-libs/libva-0.32 )
video_cards_nvidia? ( vdpau? ( x11-libs/libvdpau ) )
- vpx? ( media-libs/libvpx )
+ vpx? ( >=media-libs/libvpx-0.9.6 )
X? ( x11-libs/libX11 x11-libs/libXext )
zlib? ( sys-libs/zlib )
!media-video/qt-faststart
@@ -116,6 +118,8 @@
if use encode
then
use mp3 && myconf="${myconf} --enable-libmp3lame"
+ use aac && myconf="${myconf} --enable-libvo-aacenc"
+ use amr && myconf="${myconf} --enable-libvo-amrwbenc"
for i in theora vorbis x264 xvid; do
use ${i} && myconf="${myconf} --enable-lib${i}"
done
1.404 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.404&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.404&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.403&r2=1.404
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.403
retrieving revision 1.404
diff -u -r1.403 -r1.404
--- ChangeLog 12 Apr 2011 11:57:28 -0000 1.403
+++ ChangeLog 12 Apr 2011 13:26:26 -0000 1.404
@@ -1,6 +1,10 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.403 2011/04/12 11:57:28 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.404 2011/04/12 13:26:26 aballier Exp $
+
+ 12 Apr 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ Add support for amrwb and aac encodings via the libvo libraries. Bump libvpx
+ dep.
12 Apr 2011; Alexis Ballier <aballier@gentoo.org> -ffmpeg-0.5_p20373.ebuild:
remove old
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-04-01 23:16 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-04-01 23:16 UTC (permalink / raw
To: gentoo-commits
aballier 11/04/01 23:16:20
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
disable-stripping option is back, we need to pass it
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Revision Changes Path
1.37 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.36&r2=1.37
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ffmpeg-9999.ebuild 31 Mar 2011 12:19:05 -0000 1.36
+++ ffmpeg-9999.ebuild 1 Apr 2011 23:16:20 -0000 1.37
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.36 2011/03/31 12:19:05 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.37 2011/04/01 23:16:20 aballier Exp $
EAPI="2"
@@ -187,6 +187,7 @@
--enable-version3
--enable-postproc
--enable-avfilter
+ --disable-stripping
${myconf}"
# cross compile support
1.399 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.399&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.399&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.398&r2=1.399
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.398
retrieving revision 1.399
diff -u -r1.398 -r1.399
--- ChangeLog 31 Mar 2011 12:19:05 -0000 1.398
+++ ChangeLog 1 Apr 2011 23:16:20 -0000 1.399
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.398 2011/03/31 12:19:05 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.399 2011/04/01 23:16:20 aballier Exp $
+
+ 01 Apr 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ disable-stripping option is back, we need to pass it
31 Mar 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-0.6_p28715.ebuild,
ffmpeg-9999.ebuild:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-03-30 11:57 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-03-30 11:57 UTC (permalink / raw
To: gentoo-commits
aballier 11/03/30 11:57:35
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
disable-stripping isnt needed anymore
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Revision Changes Path
1.33 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.32&r2=1.33
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ffmpeg-9999.ebuild 21 Mar 2011 11:37:03 -0000 1.32
+++ ffmpeg-9999.ebuild 30 Mar 2011 11:57:35 -0000 1.33
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.32 2011/03/21 11:37:03 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.33 2011/03/30 11:57:35 aballier Exp $
EAPI="2"
@@ -179,7 +179,6 @@
--enable-version3
--enable-postproc
--enable-avfilter
- --disable-stripping
${myconf}"
# cross compile support
1.395 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.395&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.395&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.394&r2=1.395
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.394
retrieving revision 1.395
diff -u -r1.394 -r1.395
--- ChangeLog 21 Mar 2011 11:37:03 -0000 1.394
+++ ChangeLog 30 Mar 2011 11:57:35 -0000 1.395
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.394 2011/03/21 11:37:03 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.395 2011/03/30 11:57:35 aballier Exp $
+
+ 30 Mar 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ disable-stripping isnt needed anymore
21 Mar 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
fix git uri to the one pointed by http://ffmpeg.org/download.html
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-03-21 11:37 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-03-21 11:37 UTC (permalink / raw
To: gentoo-commits
aballier 11/03/21 11:37:03
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
fix git uri to the one pointed by http://ffmpeg.org/download.html
(Portage version: 2.2.0_alpha28/cvs/Linux x86_64)
Revision Changes Path
1.32 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.31&r2=1.32
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ffmpeg-9999.ebuild 10 Mar 2011 03:50:26 -0000 1.31
+++ ffmpeg-9999.ebuild 21 Mar 2011 11:37:03 -0000 1.32
@@ -1,13 +1,13 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.31 2011/03/10 03:50:26 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.32 2011/03/21 11:37:03 aballier Exp $
EAPI="2"
SCM=""
if [ "${PV#9999}" != "${PV}" ] ; then
SCM="git"
- EGIT_REPO_URI="git://git.ffmpeg.org/ffmpeg.git"
+ EGIT_REPO_URI="git://git.videolan.org/ffmpeg.git"
fi
inherit eutils flag-o-matic multilib toolchain-funcs ${SCM}
1.394 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.394&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.394&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.393&r2=1.394
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.393
retrieving revision 1.394
diff -u -r1.393 -r1.394
--- ChangeLog 10 Mar 2011 03:50:26 -0000 1.393
+++ ChangeLog 21 Mar 2011 11:37:03 -0000 1.394
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.393 2011/03/10 03:50:26 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.394 2011/03/21 11:37:03 aballier Exp $
+
+ 21 Mar 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ fix git uri to the one pointed by http://ffmpeg.org/download.html
10 Mar 2011; Tim Harder <radhermit@gentoo.org> ffmpeg-0.6_p25423.ebuild,
ffmpeg-0.6_p25767.ebuild, ffmpeg-9999.ebuild:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-01-29 20:03 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2011-01-29 20:03 UTC (permalink / raw
To: gentoo-commits
aballier 11/01/29 20:03:52
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
fix git URI
(Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
Revision Changes Path
1.30 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.29&r2=1.30
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ffmpeg-9999.ebuild 22 Jan 2011 13:34:47 -0000 1.29
+++ ffmpeg-9999.ebuild 29 Jan 2011 20:03:52 -0000 1.30
@@ -1,13 +1,13 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.29 2011/01/22 13:34:47 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.30 2011/01/29 20:03:52 aballier Exp $
EAPI="2"
SCM=""
if [ "${PV#9999}" != "${PV}" ] ; then
SCM="git"
- EGIT_REPO_URI="git://git.ffmpeg.org/ffmpeg"
+ EGIT_REPO_URI="git://git.ffmpeg.org/ffmpeg.git"
fi
inherit eutils flag-o-matic multilib toolchain-funcs ${SCM}
1.392 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.392&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.392&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.391&r2=1.392
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.391
retrieving revision 1.392
diff -u -r1.391 -r1.392
--- ChangeLog 21 Jan 2011 15:04:55 -0000 1.391
+++ ChangeLog 29 Jan 2011 20:03:52 -0000 1.392
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.391 2011/01/21 15:04:55 lu_zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.392 2011/01/29 20:03:52 aballier Exp $
+
+ 29 Jan 2011; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ fix git URI
21 Jan 2011; Luca Barbato <lu_zero@gentoo.org> ffmpeg-9999.ebuild:
Update repository url, switch to git
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2011-01-21 15:04 Luca Barbato (lu_zero)
0 siblings, 0 replies; 91+ messages in thread
From: Luca Barbato (lu_zero) @ 2011-01-21 15:04 UTC (permalink / raw
To: gentoo-commits
lu_zero 11/01/21 15:04:55
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
Update repository url, switch to git
(Portage version: 2.1.9.25/cvs/Linux x86_64)
Revision Changes Path
1.28 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.27&r2=1.28
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ffmpeg-9999.ebuild 19 Nov 2010 16:48:47 -0000 1.27
+++ ffmpeg-9999.ebuild 21 Jan 2011 15:04:55 -0000 1.28
@@ -1,13 +1,13 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.27 2010/11/19 16:48:47 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.28 2011/01/21 15:04:55 lu_zero Exp $
EAPI="2"
SCM=""
if [ "${PV#9999}" != "${PV}" ] ; then
- SCM="subversion"
- ESVN_REPO_URI="svn://svn.ffmpeg.org/ffmpeg/trunk"
+ SCM="git"
+ EGIT_REPO_URI="git://git.ffmpeg.org/ffmpeg"
fi
inherit eutils flag-o-matic multilib toolchain-funcs ${SCM}
1.391 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.391&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.391&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.390&r2=1.391
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.390
retrieving revision 1.391
diff -u -r1.390 -r1.391
--- ChangeLog 9 Dec 2010 16:11:56 -0000 1.390
+++ ChangeLog 21 Jan 2011 15:04:55 -0000 1.391
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.390 2010/12/09 16:11:56 rich0 Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.391 2011/01/21 15:04:55 lu_zero Exp $
+
+ 21 Jan 2011; Luca Barbato <lu_zero@gentoo.org> ffmpeg-9999.ebuild:
+ Update repository url, switch to git
09 Dec 2010; Richard Freeman <rich0@gentoo.org> ffmpeg-0.6_p25767.ebuild:
amd64 stable - 347625
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2010-10-30 15:42 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2010-10-30 15:42 UTC (permalink / raw
To: gentoo-commits
aballier 10/10/30 15:42:43
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
bump x264 requirements
(Portage version: 2.2.0_alpha2/cvs/Linux x86_64)
Revision Changes Path
1.23 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.22&r2=1.23
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ffmpeg-9999.ebuild 1 Oct 2010 01:46:48 -0000 1.22
+++ ffmpeg-9999.ebuild 30 Oct 2010 15:42:43 -0000 1.23
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.22 2010/10/01 01:46:48 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.23 2010/10/30 15:42:43 aballier Exp $
EAPI="2"
@@ -46,7 +46,7 @@
mp3? ( media-sound/lame )
theora? ( >=media-libs/libtheora-1.1.1[encode] media-libs/libogg )
vorbis? ( media-libs/libvorbis media-libs/libogg )
- x264? ( >=media-libs/x264-0.0.20100605 )
+ x264? ( >=media-libs/x264-0.0.20101029 )
xvid? ( >=media-libs/xvid-1.1.0 )
)
frei0r? ( media-plugins/frei0r-plugins )
1.380 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.380&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.380&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.379&r2=1.380
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.379
retrieving revision 1.380
diff -u -r1.379 -r1.380
--- ChangeLog 11 Oct 2010 22:13:00 -0000 1.379
+++ ChangeLog 30 Oct 2010 15:42:43 -0000 1.380
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.379 2010/10/11 22:13:00 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.380 2010/10/30 15:42:43 aballier Exp $
+
+ 30 Oct 2010; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ bump x264 requirements
11 Oct 2010; Markus Meier <maekke@gentoo.org> ffmpeg-0.6_p25423.ebuild:
restore ~arm, bug #340269
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2010-10-01 1:46 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2010-10-01 1:46 UTC (permalink / raw
To: gentoo-commits
aballier 10/10/01 01:46:48
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
disable mmx and other asm if pic is requested on x86 only
(Portage version: 2.2_rc88/cvs/Linux x86_64)
Revision Changes Path
1.22 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.21&r2=1.22
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ffmpeg-9999.ebuild 1 Oct 2010 00:56:44 -0000 1.21
+++ ffmpeg-9999.ebuild 1 Oct 2010 01:46:48 -0000 1.22
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.21 2010/10/01 00:56:44 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.22 2010/10/01 01:46:48 aballier Exp $
EAPI="2"
@@ -158,8 +158,8 @@
use 3dnow || myconf="${myconf} --disable-amd3dnow"
use 3dnowext || myconf="${myconf} --disable-amd3dnowext"
# disable mmx accelerated code if PIC is required
- # as the provided asm decidedly is not PIC.
- if gcc-specs-pie ; then
+ # as the provided asm decidedly is not PIC for x86.
+ if use pic && use x86 ; then
myconf="${myconf} --disable-mmx --disable-mmx2"
fi
1.373 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.373&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.373&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.372&r2=1.373
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.372
retrieving revision 1.373
diff -u -r1.372 -r1.373
--- ChangeLog 1 Oct 2010 00:56:44 -0000 1.372
+++ ChangeLog 1 Oct 2010 01:46:48 -0000 1.373
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.372 2010/10/01 00:56:44 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.373 2010/10/01 01:46:48 aballier Exp $
+
+ 01 Oct 2010; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ disable mmx and other asm if pic is requested on x86 only
01 Oct 2010; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild,
metadata.xml:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2010-08-02 5:12 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2010-08-02 5:12 UTC (permalink / raw
To: gentoo-commits
aballier 10/08/02 05:12:05
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
avfilter-lavf doesnt exist, bug #330247
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.18 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.17&r2=1.18
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ffmpeg-9999.ebuild 22 Jul 2010 20:57:23 -0000 1.17
+++ ffmpeg-9999.ebuild 2 Aug 2010 05:12:05 -0000 1.18
@@ -1,6 +1,6 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.17 2010/07/22 20:57:23 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.18 2010/08/02 05:12:05 aballier Exp $
EAPI="2"
@@ -185,7 +185,6 @@
--enable-version3
--enable-postproc
--enable-avfilter
- --enable-avfilter-lavf
--disable-stripping
${myconf}"
1.365 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.365&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.365&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.364&r2=1.365
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.364
retrieving revision 1.365
diff -u -r1.364 -r1.365
--- ChangeLog 22 Jul 2010 20:57:23 -0000 1.364
+++ ChangeLog 2 Aug 2010 05:12:05 -0000 1.365
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.364 2010/07/22 20:57:23 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.365 2010/08/02 05:12:05 aballier Exp $
+
+ 02 Aug 2010; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ avfilter-lavf doesnt exist, bug #330247
22 Jul 2010; Alexis Ballier <aballier@gentoo.org> +ffmpeg-9999.ebuild,
-ffmpeg-9999-r1.ebuild:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2009-04-04 14:35 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2009-04-04 14:35 UTC (permalink / raw
To: gentoo-commits
aballier 09/04/04 14:35:15
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add jack useflag
(Portage version: 2.2_rc28/cvs/Linux x86_64)
Revision Changes Path
1.14 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.13&r2=1.14
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ffmpeg-9999.ebuild 31 Mar 2009 19:28:15 -0000 1.13
+++ ffmpeg-9999.ebuild 4 Apr 2009 14:35:15 -0000 1.14
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.13 2009/03/31 19:28:15 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.14 2009/04/04 14:35:15 aballier Exp $
EAPI=1
@@ -16,7 +16,7 @@
SLOT="0"
KEYWORDS=""
IUSE="+3dnow +3dnowext alsa altivec amr custom-cflags debug dirac doc
- ieee1394 +encode faac faad gsm ipv6 +mmx +mmxext vorbis test theora
+ ieee1394 +encode faac faad gsm ipv6 jack +mmx +mmxext vorbis test theora
threads x264 xvid network zlib sdl X mp3 oss schroedinger
+hardcoded-tables bindist v4l v4l2 speex +ssse3 jpeg2k"
@@ -38,6 +38,7 @@
jpeg2k? ( >=media-libs/openjpeg-1.3-r2 )
schroedinger? ( media-libs/schroedinger )
speex? ( >=media-libs/speex-1.2_beta3 )
+ jack? ( media-sound/jack-audio-connection-kit )
X? ( x11-libs/libX11 x11-libs/libXext )
amr? ( media-libs/amrnb media-libs/amrwb )"
@@ -82,7 +83,7 @@
# libavdevice options
use ieee1394 && myconf="${myconf} --enable-libdc1394"
# Demuxers
- for i in v4l v4l2 alsa oss ; do
+ for i in v4l v4l2 alsa oss jack ; do
use $i || myconf="${myconf} --disable-demuxer=$i"
done
# Muxers
1.280 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.280&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.280&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.279&r2=1.280
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.279
retrieving revision 1.280
diff -u -r1.279 -r1.280
--- ChangeLog 31 Mar 2009 19:28:15 -0000 1.279
+++ ChangeLog 4 Apr 2009 14:35:15 -0000 1.280
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.279 2009/03/31 19:28:15 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.280 2009/04/04 14:35:15 aballier Exp $
+
+ 04 Apr 2009; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add jack useflag
31 Mar 2009; Raúl Porcel <armin76@gentoo.org>
ffmpeg-0.4.9_p20090201.ebuild, ffmpeg-0.4.9_p20090201-r1.ebuild,
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2009-02-10 19:54 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2009-02-10 19:54 UTC (permalink / raw
To: gentoo-commits
aballier 09/02/10 19:54:04
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
add openjpeg support
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Revision Changes Path
1.9 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.8&r2=1.9
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ffmpeg-9999.ebuild 27 Jan 2009 07:50:09 -0000 1.8
+++ ffmpeg-9999.ebuild 10 Feb 2009 19:54:04 -0000 1.9
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.8 2009/01/27 07:50:09 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.9 2009/02/10 19:54:04 aballier Exp $
ESVN_REPO_URI="svn://svn.mplayerhq.hu/ffmpeg/trunk"
@@ -13,7 +13,7 @@
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
-IUSE="3dnow aac alsa altivec amr debug dirac doc ieee1394 encode gsm ipv6 mmx mmxext vorbis
+IUSE="3dnow aac alsa altivec amr debug dirac doc ieee1394 jpeg2k encode gsm ipv6 mmx mmxext vorbis
test theora threads x264 xvid network zlib sdl X mp3 oss schroedinger
hardcoded-tables bindist v4l v4l2 speex ssse3 vhook"
@@ -33,6 +33,7 @@
sys-libs/libraw1394 )
dirac? ( media-video/dirac )
gsm? ( >=media-sound/gsm-1.0.12-r1 )
+ jpeg2k? ( >=media-libs/openjpeg-1.3-r2 )
schroedinger? ( media-libs/schroedinger )
speex? ( >=media-libs/speex-1.2_beta3 )
X? ( x11-libs/libX11 x11-libs/libXext )
@@ -98,6 +99,7 @@
use dirac && myconf="${myconf} --enable-libdirac"
use schroedinger && myconf="${myconf} --enable-libschroedinger"
use speex && myconf="${myconf} --enable-libspeex"
+ use jpeg2k && myconf="${myconf} --enable-libopenjpeg"
if use gsm; then
myconf="${myconf} --enable-libgsm"
# Crappy detection or our installation is weird, pick one (FIXME)
1.271 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.271&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.271&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.270&r2=1.271
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.270
retrieving revision 1.271
diff -u -r1.270 -r1.271
--- ChangeLog 9 Feb 2009 14:23:29 -0000 1.270
+++ ChangeLog 10 Feb 2009 19:54:04 -0000 1.271
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.270 2009/02/09 14:23:29 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.271 2009/02/10 19:54:04 aballier Exp $
+
+ 10 Feb 2009; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ add openjpeg support
09 Feb 2009; Raúl Porcel <armin76@gentoo.org>
ffmpeg-0.4.9_p20090201.ebuild:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2009-01-27 7:50 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2009-01-27 7:50 UTC (permalink / raw
To: gentoo-commits
aballier 09/01/27 07:50:09
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
no need for local variables when we use them only once
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Revision Changes Path
1.8 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.7&r2=1.8
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ffmpeg-9999.ebuild 27 Jan 2009 07:41:18 -0000 1.7
+++ ffmpeg-9999.ebuild 27 Jan 2009 07:50:09 -0000 1.8
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.7 2009/01/27 07:41:18 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.8 2009/01/27 07:50:09 aballier Exp $
ESVN_REPO_URI="svn://svn.mplayerhq.hu/ffmpeg/trunk"
@@ -129,10 +129,7 @@
# We need to do this so that features of that CPU will be better used
# If they contain an unknown CPU it will not hurt since ffmpeg's configure
# will just ignore it.
- local mymarch=$(get-flag march)
- local mymcpu=$(get-flag mcpu)
- local mymtune=$(get-flag mtune)
- for i in $mymarch $mymcpu $mymtune ; do
+ for i in $(get-flag march) $(get-flag mcpu) $(get-flag mtune) ; do
myconf="${myconf} --cpu=$i"
break
done
1.262 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.262&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.262&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.261&r2=1.262
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.261
retrieving revision 1.262
diff -u -r1.261 -r1.262
--- ChangeLog 27 Jan 2009 07:41:19 -0000 1.261
+++ ChangeLog 27 Jan 2009 07:50:09 -0000 1.262
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.261 2009/01/27 07:41:19 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.262 2009/01/27 07:50:09 aballier Exp $
+
+ 27 Jan 2009; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ no need for local variables when we use them only once
27 Jan 2009; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
Add alsa/oss/3dnow useflags and disable servertest as its mainly broken
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2009-01-27 7:41 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2009-01-27 7:41 UTC (permalink / raw
To: gentoo-commits
aballier 09/01/27 07:41:19
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
Add alsa/oss/3dnow useflags and disable servertest as its mainly broken
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Revision Changes Path
1.7 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.6&r2=1.7
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ffmpeg-9999.ebuild 20 Jan 2009 19:44:28 -0000 1.6
+++ ffmpeg-9999.ebuild 27 Jan 2009 07:41:18 -0000 1.7
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.6 2009/01/20 19:44:28 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.7 2009/01/27 07:41:18 aballier Exp $
ESVN_REPO_URI="svn://svn.mplayerhq.hu/ffmpeg/trunk"
@@ -13,12 +13,13 @@
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
-IUSE="aac altivec amr debug dirac doc ieee1394 encode gsm ipv6 mmx mmxext vorbis
- test theora threads x264 xvid network zlib sdl X mp3 schroedinger
+IUSE="3dnow aac alsa altivec amr debug dirac doc ieee1394 encode gsm ipv6 mmx mmxext vorbis
+ test theora threads x264 xvid network zlib sdl X mp3 oss schroedinger
hardcoded-tables bindist v4l v4l2 speex ssse3 vhook"
RDEPEND="vhook? ( >=media-libs/imlib2-1.4.0 >=media-libs/freetype-2 )
sdl? ( >=media-libs/libsdl-1.2.10 )
+ alsa? ( media-libs/alsa-lib )
encode? (
aac? ( media-libs/faac )
mp3? ( media-sound/lame )
@@ -79,9 +80,14 @@
# libavdevice options
use ieee1394 && myconf="${myconf} --enable-libdc1394"
- for i in v4l v4l2 ; do
+ # Demuxers
+ for i in v4l v4l2 alsa oss ; do
use $i || myconf="${myconf} --disable-demuxer=$i"
done
+ # Muxers
+ for i in alsa oss ; do
+ use $i || myconf="${myconf} --disable-muxer=$i"
+ done
use X && myconf="${myconf} --enable-x11grab"
# Threads; we only support pthread for now but ffmpeg supports more
@@ -111,6 +117,7 @@
use $i || myconf="${myconf} --disable-$i"
done
use mmxext || myconf="${myconf} --disable-mmx2"
+ use 3dnow || myconf="${myconf} --disable-amd3dnow"
# disable mmx accelerated code if PIC is required
# as the provided asm decidedly is not PIC.
if gcc-specs-pie ; then
@@ -183,7 +190,7 @@
# Never die for now...
src_test() {
- for t in codectest libavtest servertest seektest ; do
+ for t in codectest libavtest seektest ; do
emake ${t} || ewarn "Some tests in ${t} failed"
done
}
1.261 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.261&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.261&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.260&r2=1.261
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.260
retrieving revision 1.261
diff -u -r1.260 -r1.261
--- ChangeLog 25 Jan 2009 21:09:16 -0000 1.260
+++ ChangeLog 27 Jan 2009 07:41:19 -0000 1.261
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.260 2009/01/25 21:09:16 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.261 2009/01/27 07:41:19 aballier Exp $
+
+ 27 Jan 2009; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ Add alsa/oss/3dnow useflags and disable servertest as its mainly broken
25 Jan 2009; Markus Meier <maekke@gentoo.org>
ffmpeg-0.4.9_p20081219.ebuild:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2009-01-20 19:44 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2009-01-20 19:44 UTC (permalink / raw
To: gentoo-commits
aballier 09/01/20 19:44:28
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
set empty keywords for the live ebuild
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Revision Changes Path
1.6 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.5&r2=1.6
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ffmpeg-9999.ebuild 19 Jan 2009 09:28:23 -0000 1.5
+++ ffmpeg-9999.ebuild 20 Jan 2009 19:44:28 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.5 2009/01/19 09:28:23 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.6 2009/01/20 19:44:28 aballier Exp $
ESVN_REPO_URI="svn://svn.mplayerhq.hu/ffmpeg/trunk"
@@ -12,7 +12,7 @@
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS=""
IUSE="aac altivec amr debug dirac doc ieee1394 encode gsm ipv6 mmx mmxext vorbis
test theora threads x264 xvid network zlib sdl X mp3 schroedinger
hardcoded-tables bindist v4l v4l2 speex ssse3 vhook"
1.257 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.257&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.257&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.256&r2=1.257
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.256
retrieving revision 1.257
diff -u -r1.256 -r1.257
--- ChangeLog 19 Jan 2009 09:28:23 -0000 1.256
+++ ChangeLog 20 Jan 2009 19:44:28 -0000 1.257
@@ -1,6 +1,9 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.256 2009/01/19 09:28:23 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.257 2009/01/20 19:44:28 aballier Exp $
+
+ 20 Jan 2009; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ set empty keywords for the live ebuild
19 Jan 2009; Alexis Ballier <aballier@gentoo.org>
ffmpeg-0.4.9_p20081014.ebuild, ffmpeg-0.4.9_p20081219.ebuild,
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2008-12-23 12:13 Alexis Ballier (aballier)
0 siblings, 0 replies; 91+ messages in thread
From: Alexis Ballier (aballier) @ 2008-12-23 12:13 UTC (permalink / raw
To: gentoo-commits
aballier 08/12/23 12:13:03
Modified: ffmpeg-9999.ebuild ChangeLog
Log:
Sync live ebuild with latest snapshot; merely add speex useflag and remove unused make targets
(Portage version: 2.2_rc17/cvs/Linux 2.6.27.10 x86_64)
Revision Changes Path
1.2 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.1&r2=1.2
Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ffmpeg-9999.ebuild 20 Dec 2008 19:16:27 -0000 1.1
+++ ffmpeg-9999.ebuild 23 Dec 2008 12:13:03 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.1 2008/12/20 19:16:27 lu_zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.2 2008/12/23 12:13:03 aballier Exp $
ESVN_REPO_URI="svn://svn.mplayerhq.hu/ffmpeg/trunk"
@@ -15,7 +15,7 @@
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="aac altivec amr debug dirac doc ieee1394 encode gsm ipv6 mmx mmxext vorbis
test theora threads x264 xvid network zlib sdl X mp3 schroedinger
- hardcoded-tables bindist v4l v4l2 ssse3 vhook"
+ hardcoded-tables bindist v4l v4l2 speex ssse3 vhook"
RDEPEND="vhook? ( >=media-libs/imlib2-1.4.0 >=media-libs/freetype-2 )
sdl? ( >=media-libs/libsdl-1.2.10 )
@@ -26,13 +26,14 @@
theora? ( media-libs/libtheora media-libs/libogg )
x264? ( >=media-libs/x264-0.0.20081006 )
xvid? ( >=media-libs/xvid-1.1.0 ) )
- aac? ( media-libs/faad2 )
+ aac? ( >=media-libs/faad2-2.6.1 )
zlib? ( sys-libs/zlib )
ieee1394? ( media-libs/libdc1394
sys-libs/libraw1394 )
dirac? ( media-video/dirac )
gsm? ( >=media-sound/gsm-1.0.12-r1 )
schroedinger? ( media-libs/schroedinger )
+ speex? ( media-libs/speex )
X? ( x11-libs/libX11 x11-libs/libXext )
amr? ( media-libs/amrnb media-libs/amrwb )"
@@ -89,6 +90,7 @@
use aac && myconf="${myconf} --enable-libfaad"
use dirac && myconf="${myconf} --enable-libdirac"
use schroedinger && myconf="${myconf} --enable-libschroedinger"
+ use speex && myconf="${myconf} --enable-libspeex"
if use gsm; then
myconf="${myconf} --enable-libgsm"
# Crappy detection or our installation is weird, pick one (FIXME)
@@ -167,14 +169,12 @@
--cc="$(tc-getCC)" \
${myconf} || die "configure failed"
- emake -j1 depend || die "depend failed"
emake || die "make failed"
}
src_install() {
- emake -j1 DESTDIR="${D}" install || die "Install Failed"
+ emake DESTDIR="${D}" install || die "Install Failed"
- use doc && emake -j1 documentation
dodoc Changelog README INSTALL
dodoc doc/*
}
1.253 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.253&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.253&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.252&r2=1.253
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.252
retrieving revision 1.253
diff -u -r1.252 -r1.253
--- ChangeLog 22 Dec 2008 14:20:56 -0000 1.252
+++ ChangeLog 23 Dec 2008 12:13:03 -0000 1.253
@@ -1,6 +1,10 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.252 2008/12/22 14:20:56 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.253 2008/12/23 12:13:03 aballier Exp $
+
+ 23 Dec 2008; Alexis Ballier <aballier@gentoo.org> ffmpeg-9999.ebuild:
+ Sync live ebuild with latest snapshot; merely add speex useflag and remove
+ unused make targets
22 Dec 2008; Raúl Porcel <armin76@gentoo.org>
ffmpeg-0.4.9_p20081014.ebuild, ffmpeg-0.4.9_p20081219.ebuild:
^ permalink raw reply [flat|nested] 91+ messages in thread
* [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog
@ 2008-12-20 19:16 Luca Barbato (lu_zero)
0 siblings, 0 replies; 91+ messages in thread
From: Luca Barbato (lu_zero) @ 2008-12-20 19:16 UTC (permalink / raw
To: gentoo-commits
lu_zero 08/12/20 19:16:27
Modified: ChangeLog
Added: ffmpeg-9999.ebuild
Log:
Initial live ebuild
(Portage version: 2.1.6.1/cvs/Linux 2.6.26-gentoo-r1 x86_64)
Revision Changes Path
1.249 media-video/ffmpeg/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.249&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.249&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.248&r2=1.249
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.248
retrieving revision 1.249
diff -u -r1.248 -r1.249
--- ChangeLog 20 Dec 2008 00:36:04 -0000 1.248
+++ ChangeLog 20 Dec 2008 19:16:27 -0000 1.249
@@ -1,6 +1,6 @@
# ChangeLog for media-video/ffmpeg
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.248 2008/12/20 00:36:04 gentoofan23 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.249 2008/12/20 19:16:27 lu_zero Exp $
20 Dec 2008; Thomas Anderson <gentoofan23@gentoo.org>
ffmpeg-0.4.9_p20081014.ebuild:
@@ -36,6 +36,11 @@
ffmpeg-0.4.9_p20081014.ebuild:
Stable on alpha, bug #245285
+*ffmpeg-9999 (07 Dec 2008)
+
+ 07 Dec 2008; Luca Barbato <lu_zero@gentoo.org> +ffmpeg-9999.ebuild:
+ live ebuild
+
10 Nov 2008; Raúl Porcel <armin76@gentoo.org>
ffmpeg-0.4.9_p20081014.ebuild:
Add ~ia64 wrt #241908
1.1 media-video/ffmpeg/ffmpeg-9999.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.1&content-type=text/plain
Index: ffmpeg-9999.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 1.1 2008/12/20 19:16:27 lu_zero Exp $
ESVN_REPO_URI="svn://svn.mplayerhq.hu/ffmpeg/trunk"
inherit eutils flag-o-matic multilib toolchain-funcs subversion
DESCRIPTION="Complete solution to record, convert and stream audio and video.
Includes libavcodec. live svn"
HOMEPAGE="http://ffmpeg.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="aac altivec amr debug dirac doc ieee1394 encode gsm ipv6 mmx mmxext vorbis
test theora threads x264 xvid network zlib sdl X mp3 schroedinger
hardcoded-tables bindist v4l v4l2 ssse3 vhook"
RDEPEND="vhook? ( >=media-libs/imlib2-1.4.0 >=media-libs/freetype-2 )
sdl? ( >=media-libs/libsdl-1.2.10 )
encode? (
aac? ( media-libs/faac )
mp3? ( media-sound/lame )
vorbis? ( media-libs/libvorbis media-libs/libogg )
theora? ( media-libs/libtheora media-libs/libogg )
x264? ( >=media-libs/x264-0.0.20081006 )
xvid? ( >=media-libs/xvid-1.1.0 ) )
aac? ( media-libs/faad2 )
zlib? ( sys-libs/zlib )
ieee1394? ( media-libs/libdc1394
sys-libs/libraw1394 )
dirac? ( media-video/dirac )
gsm? ( >=media-sound/gsm-1.0.12-r1 )
schroedinger? ( media-libs/schroedinger )
X? ( x11-libs/libX11 x11-libs/libXext )
amr? ( media-libs/amrnb media-libs/amrwb )"
DEPEND="${RDEPEND}
mmx? ( dev-lang/yasm )
doc? ( app-text/texi2html )
test? ( net-misc/wget )
v4l? ( sys-kernel/linux-headers )
v4l2? ( sys-kernel/linux-headers )"
src_compile() {
replace-flags -O0 -O2
#x86, what a wonderful arch....
replace-flags -O1 -O2
local myconf="${EXTRA_ECONF}"
# enabled by default
use debug || myconf="${myconf} --disable-debug"
use zlib || myconf="${myconf} --disable-zlib"
use sdl || myconf="${myconf} --disable-ffplay"
if use network; then
use ipv6 || myconf="${myconf} --disable-ipv6"
else
myconf="${myconf} --disable-network"
fi
myconf="${myconf} --disable-optimizations"
# disabled by default
if use encode
then
use aac && myconf="${myconf} --enable-libfaac"
use mp3 && myconf="${myconf} --enable-libmp3lame"
use vorbis && myconf="${myconf} --enable-libvorbis"
use theora && myconf="${myconf} --enable-libtheora"
use x264 && myconf="${myconf} --enable-libx264"
use xvid && myconf="${myconf} --enable-libxvid"
else
myconf="${myconf} --disable-encoders"
fi
# libavdevice options
use ieee1394 && myconf="${myconf} --enable-libdc1394"
for i in v4l v4l2 ; do
use $i || myconf="${myconf} --disable-demuxer=$i"
done
use X && myconf="${myconf} --enable-x11grab"
# Threads; we only support pthread for now but ffmpeg supports more
use threads && myconf="${myconf} --enable-pthreads"
# Decoders
use aac && myconf="${myconf} --enable-libfaad"
use dirac && myconf="${myconf} --enable-libdirac"
use schroedinger && myconf="${myconf} --enable-libschroedinger"
if use gsm; then
myconf="${myconf} --enable-libgsm"
# Crappy detection or our installation is weird, pick one (FIXME)
append-flags -I/usr/include/gsm
fi
if use bindist
then
use amr && ewarn "libamr is nonfree and cannot be distributed; disabling amr support."
else
use amr && myconf="${myconf} --enable-libamr-nb \
--enable-libamr-wb \
--enable-nonfree"
fi
# CPU features
for i in mmx ssse3 altivec ; do
use $i || myconf="${myconf} --disable-$i"
done
use mmxext || myconf="${myconf} --disable-mmx2"
# disable mmx accelerated code if PIC is required
# as the provided asm decidedly is not PIC.
if gcc-specs-pie ; then
myconf="${myconf} --disable-mmx --disable-mmx2"
fi
# Try to get cpu type based on CFLAGS.
# Bug #172723
# We need to do this so that features of that CPU will be better used
# If they contain an unknown CPU it will not hurt since ffmpeg's configure
# will just ignore it.
local mymarch=$(get-flag march)
local mymcpu=$(get-flag mcpu)
local mymtune=$(get-flag mtune)
for i in $mymarch $mymcpu $mymtune ; do
myconf="${myconf} --cpu=$i"
break
done
# video hooking support. replaced by libavfilter, probably needs to be
# dropped at some point.
use vhook || myconf="${myconf} --disable-vhook"
# Mandatory configuration
myconf="${myconf} --enable-gpl --enable-postproc \
--enable-avfilter --enable-avfilter-lavf \
--enable-swscale --disable-stripping"
# cross compile support
tc-is-cross-compiler && myconf="${myconf} --enable-cross-compile --arch=$(tc-arch-kernel)"
# Misc stuff
use hardcoded-tables && myconf="${myconf} --enable-hardcoded-tables"
# Specific workarounds for too-few-registers arch...
if [[ $(tc-arch) == "x86" ]]; then
filter-flags -fforce-addr -momit-leaf-frame-pointer
append-flags -fomit-frame-pointer
is-flag -O? || append-flags -O2
if (use debug); then
# no need to warn about debug if not using debug flag
ewarn ""
ewarn "Debug information will be almost useless as the frame pointer is omitted."
ewarn "This makes debugging harder, so crashes that has no fixed behavior are"
ewarn "difficult to fix. Please have that in mind."
ewarn ""
fi
fi
cd "${S}"
./configure \
--prefix=/usr \
--libdir=/usr/$(get_libdir) \
--shlibdir=/usr/$(get_libdir) \
--mandir=/usr/share/man \
--enable-static --enable-shared \
--cc="$(tc-getCC)" \
${myconf} || die "configure failed"
emake -j1 depend || die "depend failed"
emake || die "make failed"
}
src_install() {
emake -j1 DESTDIR="${D}" install || die "Install Failed"
use doc && emake -j1 documentation
dodoc Changelog README INSTALL
dodoc doc/*
}
# Never die for now...
src_test() {
for t in codectest libavtest servertest seektest ; do
emake ${t} || ewarn "Some tests in ${t} failed"
done
}
pkg_postinst() {
ewarn "ffmpeg may have had ABI changes, if ffmpeg based programs"
ewarn "like xine-lib or vlc stop working as expected please"
ewarn "rebuild them."
}
^ permalink raw reply [flat|nested] 91+ messages in thread
end of thread, other threads:[~2015-05-19 9:24 UTC | newest]
Thread overview: 91+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-29 14:50 [gentoo-commits] gentoo-x86 commit in media-video/ffmpeg: ffmpeg-9999.ebuild ChangeLog Alexis Ballier (aballier)
-- strict thread matches above, loose matches on Subject: below --
2015-05-19 9:24 Alexis Ballier (aballier)
2015-03-06 14:14 Alexis Ballier (aballier)
2015-03-05 13:50 Alexis Ballier (aballier)
2015-02-18 14:36 Alexis Ballier (aballier)
2015-02-18 14:28 Alexis Ballier (aballier)
2015-02-18 11:54 Alexis Ballier (aballier)
2015-02-18 11:52 Alexis Ballier (aballier)
2015-02-18 10:47 Alexis Ballier (aballier)
2015-02-18 10:44 Alexis Ballier (aballier)
2015-02-18 9:58 Alexis Ballier (aballier)
2014-10-31 10:53 Alexis Ballier (aballier)
2014-08-29 19:05 Alexis Ballier (aballier)
2014-08-29 19:00 Alexis Ballier (aballier)
2014-07-27 9:08 Alexis Ballier (aballier)
2014-07-27 8:56 Alexis Ballier (aballier)
2014-07-27 8:52 Alexis Ballier (aballier)
2014-07-27 8:06 Alexis Ballier (aballier)
2014-07-05 13:40 Alexis Ballier (aballier)
2014-06-03 6:20 Alexis Ballier (aballier)
2014-03-15 9:17 Alexis Ballier (aballier)
2014-03-11 19:01 Alexis Ballier (aballier)
2014-02-17 18:13 Alexis Ballier (aballier)
2014-02-12 13:15 Alexis Ballier (aballier)
2013-10-11 5:42 Alexis Ballier (aballier)
2013-10-11 5:31 Alexis Ballier (aballier)
2013-10-11 5:27 Alexis Ballier (aballier)
2013-07-02 12:10 Alexis Ballier (aballier)
2013-06-14 17:15 Alexis Ballier (aballier)
2013-05-24 14:25 Alexis Ballier (aballier)
2013-05-23 0:23 Alexis Ballier (aballier)
2013-03-09 12:07 Alexis Ballier (aballier)
2013-03-09 12:01 Alexis Ballier (aballier)
2013-03-09 11:46 Alexis Ballier (aballier)
2013-03-04 12:09 Alexis Ballier (aballier)
2013-03-04 11:59 Alexis Ballier (aballier)
2013-03-04 11:48 Alexis Ballier (aballier)
2013-03-04 11:40 Alexis Ballier (aballier)
2013-02-18 18:55 Alexis Ballier (aballier)
2013-02-13 17:42 Alexis Ballier (aballier)
2013-01-27 23:51 Alexis Ballier (aballier)
2013-01-13 19:23 Alexis Ballier (aballier)
2012-12-08 12:06 Alexis Ballier (aballier)
2012-09-29 15:17 Alexis Ballier (aballier)
2012-09-29 2:08 Alexis Ballier (aballier)
2012-09-21 11:49 Alexis Ballier (aballier)
2012-08-17 13:05 Alexis Ballier (aballier)
2012-07-23 13:04 Alexis Ballier (aballier)
2012-05-12 0:24 Alexis Ballier (aballier)
2012-04-24 13:17 Alexis Ballier (aballier)
2012-04-24 13:14 Alexis Ballier (aballier)
2012-04-11 13:44 Alexis Ballier (aballier)
2012-03-20 9:42 Alexis Ballier (aballier)
2012-03-13 23:17 Alexis Ballier (aballier)
2012-01-28 12:19 Alexis Ballier (aballier)
2011-12-15 11:46 Alexis Ballier (aballier)
2011-12-15 11:43 Alexis Ballier (aballier)
2011-12-15 11:25 Alexis Ballier (aballier)
2011-12-15 11:21 Alexis Ballier (aballier)
2011-12-15 11:15 Alexis Ballier (aballier)
2011-12-06 13:13 Alexis Ballier (aballier)
2011-12-03 15:41 Alexis Ballier (aballier)
2011-11-09 13:01 Alexis Ballier (aballier)
2011-11-07 13:23 Alexis Ballier (aballier)
2011-11-02 14:08 Alexis Ballier (aballier)
2011-10-21 12:52 Alexis Ballier (aballier)
2011-10-05 14:17 Alexis Ballier (aballier)
2011-07-06 21:49 Alexis Ballier (aballier)
2011-06-29 15:07 Alexis Ballier (aballier)
2011-06-29 15:01 Alexis Ballier (aballier)
2011-06-27 14:25 Alexis Ballier (aballier)
2011-06-23 12:42 Alexis Ballier (aballier)
2011-06-22 18:44 Alexis Ballier (aballier)
2011-04-13 12:40 Alexis Ballier (aballier)
2011-04-12 13:44 Alexis Ballier (aballier)
2011-04-12 13:26 Alexis Ballier (aballier)
2011-04-01 23:16 Alexis Ballier (aballier)
2011-03-30 11:57 Alexis Ballier (aballier)
2011-03-21 11:37 Alexis Ballier (aballier)
2011-01-29 20:03 Alexis Ballier (aballier)
2011-01-21 15:04 Luca Barbato (lu_zero)
2010-10-30 15:42 Alexis Ballier (aballier)
2010-10-01 1:46 Alexis Ballier (aballier)
2010-08-02 5:12 Alexis Ballier (aballier)
2009-04-04 14:35 Alexis Ballier (aballier)
2009-02-10 19:54 Alexis Ballier (aballier)
2009-01-27 7:50 Alexis Ballier (aballier)
2009-01-27 7:41 Alexis Ballier (aballier)
2009-01-20 19:44 Alexis Ballier (aballier)
2008-12-23 12:13 Alexis Ballier (aballier)
2008-12-20 19:16 Luca Barbato (lu_zero)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox