public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-video/libav: libav-9999.ebuild libav-0.8.2-r1.ebuild libav-0.8.9999.ebuild ChangeLog
@ 2012-05-14  8:26 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 2+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2012-05-14  8:26 UTC (permalink / raw
  To: gentoo-commits

scarabeus    12/05/14 08:26:05

  Modified:             libav-9999.ebuild libav-0.8.2-r1.ebuild
                        libav-0.8.9999.ebuild ChangeLog
  Log:
  use the same use expand for tools like ffmpeg does so we are more inline with each other.
  
  (Portage version: 2.2.0_alpha104/cvs/Linux x86_64)

Revision  Changes    Path
1.41                 media-video/libav/libav-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-9999.ebuild?rev=1.41&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-9999.ebuild?rev=1.41&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-9999.ebuild?r1=1.40&r2=1.41

Index: libav-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/libav/libav-9999.ebuild,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- libav-9999.ebuild	14 May 2012 06:32:07 -0000	1.40
+++ libav-9999.ebuild	14 May 2012 08:26:05 -0000	1.41
@@ -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/libav/libav-9999.ebuild,v 1.40 2012/05/14 06:32:07 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/libav/libav-9999.ebuild,v 1.41 2012/05/14 08:26:05 scarabeus Exp $
 
 EAPI=4
 
@@ -27,21 +27,24 @@
 [[ ${PV} == *9999 ]] || KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64
 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos
 ~x64-solaris ~x86-solaris"
-IUSE=" aac aacplus alsa ass amr bindist bluray  +bzip2 cdio celt cpudetection
+IUSE="aac aacplus alsa ass amr bindist bluray +bzip2 cdio celt cpudetection
 	custom-cflags debug doc +encode faac fontconfig frei0r +gpl gsm
-	+hardcoded-tables ieee1394 jack jpeg2k libv4l modplug mp3 network
-	openal openssl oss pic pulseaudio rtmp schroedinger sdl speex ssl
-	static-libs test theora threads tools truetype v4l vaapi vdpau vorbis
-	vpx X x264 xvid +zlib"
+	+hardcoded-tables ieee1394 jack jpeg2k libv4l modplug mp3 network openal
+	openssl oss pic pulseaudio rtmp schroedinger sdl speex ssl 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
 # if :configure_option isn't set, it will use 'useflag' as configure option
 CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext altivec avx mmx mmxext:mmx2 neon ssse3 vis"
-
-for i in ${CPU_FEATURES}; do
+for i in ${CPU_FEATURES} ; do
 	IUSE+=" ${i%:*}"
 done
 
+FFTOOLS="aviocat cws2fws graph2dot ismindex pktdumper qt-faststart trasher"
+for i in ${FFTOOLS} ; do
+	IUSE+=" +fftools_${i}"
+done
+
 RDEPEND="
 	!media-video/ffmpeg
 	alsa? ( media-libs/alsa-lib )
@@ -131,8 +134,6 @@
 	fi
 }
 
-TOOLS="aviocat graph2dot ismindex qt-faststart"
-
 src_configure() {
 	local myconf="${EXTRA_LIBAV_CONF}"
 	local uses i
@@ -143,8 +144,6 @@
 		--enable-avfilter
 	"
 
-	use zlib && TOOLS+=" cws2fws"
-
 	# enabled by default
 	uses="debug doc network zlib"
 	for i in ${uses}; do
@@ -303,26 +302,23 @@
 
 	emake
 
-	if use tools; then
-		for i in ${TOOLS}; do
-			emake tools/${i}
-		done
-	fi
+	for i in ${FFTOOLS} ; do
+		use fftools_${i} && emake tools/${i}
+	done
 }
 
 src_install() {
 	local i
+
 	emake DESTDIR="${D}" install install-man
 
 	dodoc Changelog README INSTALL
 	dodoc doc/*.txt
 	use doc && dodoc doc/*.html
 
-	if use tools; then
-		for i in ${TOOLS}; do
-			dobin tools/${i}
-		done
-	fi
+	for i in ${FFTOOLS} ; do
+		use fftools_${i} && dobin tools/${i}
+	done
 
 	for i in $(usex sdl avplay "") $(usex network avserver "") avprobe; do
 		dosym  ${i} /usr/bin/${i/av/ff}



1.2                  media-video/libav/libav-0.8.2-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-0.8.2-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-0.8.2-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-0.8.2-r1.ebuild?r1=1.1&r2=1.2

Index: libav-0.8.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/libav/libav-0.8.2-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libav-0.8.2-r1.ebuild	14 May 2012 06:49:05 -0000	1.1
+++ libav-0.8.2-r1.ebuild	14 May 2012 08:26:05 -0000	1.2
@@ -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/libav/libav-0.8.2-r1.ebuild,v 1.1 2012/05/14 06:49:05 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/libav/libav-0.8.2-r1.ebuild,v 1.2 2012/05/14 08:26:05 scarabeus Exp $
 
 EAPI=4
 
@@ -31,7 +31,7 @@
 	custom-cflags dirac debug doc +encode faac frei0r +gpl gsm
 	+hardcoded-tables ieee1394 jack jpeg2k libv4l modplug mp3 network
 	openal openssl oss pic pulseaudio rtmp schroedinger sdl speex ssl
-	static-libs test theora threads tools truetype v4l vaapi vdpau vorbis
+	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
@@ -132,8 +132,6 @@
 	fi
 }
 
-TOOLS="aviocat graph2dot ismindex qt-faststart"
-
 src_configure() {
 	local myconf="${EXTRA_LIBAV_CONF}"
 	local uses i
@@ -144,8 +142,6 @@
 		--enable-avfilter
 	"
 
-	use zlib && TOOLS+=" cws2fws"
-
 	# enabled by default
 	uses="debug doc network zlib"
 	for i in ${uses}; do
@@ -302,11 +298,9 @@
 
 	emake
 
-	if use tools; then
-		for i in ${TOOLS}; do
-			emake tools/${i}
+	for i in ${FFTOOLS} ; do
+		use fftools_${i} && emake tools/${i}
 		done
-	fi
 }
 
 src_install() {
@@ -317,11 +311,9 @@
 	dodoc doc/*.txt
 	use doc && dodoc doc/*.html
 
-	if use tools; then
-		for i in ${TOOLS}; do
-			dobin tools/${i}
+	for i in ${FFTOOLS} ; do
+		use fftools_${i} && dobin tools/${i}
 		done
-	fi
 
 	for i in $(usex sdl avplay "") $(usex network avserver "") avprobe; do
 		dosym  ${i} /usr/bin/${i/av/ff}



1.11                 media-video/libav/libav-0.8.9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-0.8.9999.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-0.8.9999.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-0.8.9999.ebuild?r1=1.10&r2=1.11

Index: libav-0.8.9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/libav/libav-0.8.9999.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- libav-0.8.9999.ebuild	14 May 2012 06:49:05 -0000	1.10
+++ libav-0.8.9999.ebuild	14 May 2012 08:26:05 -0000	1.11
@@ -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/libav/libav-0.8.9999.ebuild,v 1.10 2012/05/14 06:49:05 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/libav/libav-0.8.9999.ebuild,v 1.11 2012/05/14 08:26:05 scarabeus Exp $
 
 EAPI=4
 
@@ -31,7 +31,7 @@
 	custom-cflags dirac debug doc +encode faac frei0r +gpl gsm
 	+hardcoded-tables ieee1394 jack jpeg2k libv4l modplug mp3 network
 	openal openssl oss pic pulseaudio rtmp schroedinger sdl speex ssl
-	static-libs test theora threads tools truetype v4l vaapi vdpau vorbis
+	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
@@ -132,8 +132,6 @@
 	fi
 }
 
-TOOLS="aviocat graph2dot ismindex qt-faststart"
-
 src_configure() {
 	local myconf="${EXTRA_LIBAV_CONF}"
 	local uses i
@@ -144,8 +142,6 @@
 		--enable-avfilter
 	"
 
-	use zlib && TOOLS+=" cws2fws"
-
 	# enabled by default
 	uses="debug doc network zlib"
 	for i in ${uses}; do
@@ -302,11 +298,9 @@
 
 	emake
 
-	if use tools; then
-		for i in ${TOOLS}; do
-			emake tools/${i}
+	for i in ${FFTOOLS} ; do
+		use fftools_${i} && emake tools/${i}
 		done
-	fi
 }
 
 src_install() {
@@ -317,11 +311,9 @@
 	dodoc doc/*.txt
 	use doc && dodoc doc/*.html
 
-	if use tools; then
-		for i in ${TOOLS}; do
-			dobin tools/${i}
+	for i in ${FFTOOLS} ; do
+		use fftools_${i} && dobin tools/${i}
 		done
-	fi
 
 	for i in $(usex sdl avplay "") $(usex network avserver "") avprobe; do
 		dosym  ${i} /usr/bin/${i/av/ff}



1.79                 media-video/libav/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/ChangeLog?r1=1.78&r2=1.79

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/libav/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	14 May 2012 06:49:05 -0000	1.78
+++ ChangeLog	14 May 2012 08:26:05 -0000	1.79
@@ -1,6 +1,11 @@
 # ChangeLog for media-video/libav
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/libav/ChangeLog,v 1.78 2012/05/14 06:49:05 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/libav/ChangeLog,v 1.79 2012/05/14 08:26:05 scarabeus Exp $
+
+  14 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libav-0.8.2-r1.ebuild,
+  libav-0.8.9999.ebuild, libav-9999.ebuild:
+  use the same use expand for tools like ffmpeg does so we are more inline with
+  each other.
 
 *libav-0.8.2-r1 (14 May 2012)
 






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-video/libav: libav-9999.ebuild libav-0.8.2-r1.ebuild libav-0.8.9999.ebuild ChangeLog
@ 2012-05-14 18:29 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 2+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2012-05-14 18:29 UTC (permalink / raw
  To: gentoo-commits

scarabeus    12/05/14 18:29:13

  Modified:             libav-9999.ebuild libav-0.8.2-r1.ebuild
                        libav-0.8.9999.ebuild ChangeLog
  Log:
  Actually ffmpeg has openal, libav does not. My overlook.
  
  (Portage version: 2.2.0_alpha104/cvs/Linux x86_64)

Revision  Changes    Path
1.44                 media-video/libav/libav-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-9999.ebuild?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-9999.ebuild?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-9999.ebuild?r1=1.43&r2=1.44

Index: libav-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/libav/libav-9999.ebuild,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- libav-9999.ebuild	14 May 2012 09:16:01 -0000	1.43
+++ libav-9999.ebuild	14 May 2012 18:29:13 -0000	1.44
@@ -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/libav/libav-9999.ebuild,v 1.43 2012/05/14 09:16:01 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/libav/libav-9999.ebuild,v 1.44 2012/05/14 18:29:13 scarabeus Exp $
 
 EAPI=4
 
@@ -29,9 +29,9 @@
 ~x64-solaris ~x86-solaris"
 IUSE="aac aacplus alsa ass amr bindist bluray +bzip2 cdio celt cpudetection
 	custom-cflags debug doc +encode faac fontconfig frei0r +gpl gsm
-	+hardcoded-tables ieee1394 jack jpeg2k libv4l modplug mp3 network openal
-	openssl oss pic pulseaudio rtmp schroedinger sdl speex ssl static-libs test
-	theora threads truetype v4l vaapi vdpau vorbis vpx X x264 xvid +zlib"
+	+hardcoded-tables ieee1394 jack jpeg2k libv4l modplug mp3 network openssl oss
+	pic pulseaudio rtmp schroedinger sdl speex ssl 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
 # if :configure_option isn't set, it will use 'useflag' as configure option
@@ -79,7 +79,6 @@
 	jpeg2k? ( >=media-libs/openjpeg-1.3-r2 )
 	libv4l? ( media-libs/libv4l )
 	modplug? ( media-libs/libmodplug )
-	openal? ( >=media-libs/openal-1.1 )
 	pulseaudio? ( media-sound/pulseaudio )
 	rtmp? ( >=media-video/rtmpdump-2.2f )
 	ssl? (
@@ -182,7 +181,6 @@
 	# libavdevice options
 	use cdio && myconf+=" --enable-libcdio"
 	use ieee1394 && myconf+=" --enable-libdc1394"
-	use openal && myconf+=" --enable-openal"
 	use pulseaudio && myconf+=" --enable-libpulse"
 
 	# Indevs



1.5                  media-video/libav/libav-0.8.2-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-0.8.2-r1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-0.8.2-r1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-0.8.2-r1.ebuild?r1=1.4&r2=1.5

Index: libav-0.8.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/libav/libav-0.8.2-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libav-0.8.2-r1.ebuild	14 May 2012 09:14:27 -0000	1.4
+++ libav-0.8.2-r1.ebuild	14 May 2012 18:29:13 -0000	1.5
@@ -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/libav/libav-0.8.2-r1.ebuild,v 1.4 2012/05/14 09:14:27 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/libav/libav-0.8.2-r1.ebuild,v 1.5 2012/05/14 18:29:13 scarabeus Exp $
 
 EAPI=4
 
@@ -30,7 +30,7 @@
 IUSE=" aac aacplus alsa ass amr bindist +bzip2 cdio celt cpudetection
 	custom-cflags dirac debug doc +encode faac frei0r +gpl gsm
 	+hardcoded-tables ieee1394 jack jpeg2k libv4l modplug mp3 network
-	openal openssl oss pic pulseaudio rtmp schroedinger sdl speex ssl
+	openssl oss pic pulseaudio rtmp schroedinger sdl speex ssl
 	static-libs test theora threads truetype v4l vaapi vdpau vorbis
 	vpx X x264 xvid +zlib"
 
@@ -75,7 +75,6 @@
 	jpeg2k? ( >=media-libs/openjpeg-1.3-r2 )
 	libv4l? ( media-libs/libv4l )
 	modplug? ( media-libs/libmodplug )
-	openal? ( >=media-libs/openal-1.1 )
 	pulseaudio? ( media-sound/pulseaudio )
 	rtmp? ( >=media-video/rtmpdump-2.2f )
 	ssl? (
@@ -182,7 +181,6 @@
 	# libavdevice options
 	use cdio && myconf+=" --enable-libcdio"
 	use ieee1394 && myconf+=" --enable-libdc1394"
-	use openal && myconf+=" --enable-openal"
 	use pulseaudio && myconf+=" --enable-libpulse"
 
 	# Indevs



1.15                 media-video/libav/libav-0.8.9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-0.8.9999.ebuild?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-0.8.9999.ebuild?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/libav-0.8.9999.ebuild?r1=1.14&r2=1.15

Index: libav-0.8.9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/libav/libav-0.8.9999.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- libav-0.8.9999.ebuild	14 May 2012 09:16:01 -0000	1.14
+++ libav-0.8.9999.ebuild	14 May 2012 18:29:13 -0000	1.15
@@ -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/libav/libav-0.8.9999.ebuild,v 1.14 2012/05/14 09:16:01 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/libav/libav-0.8.9999.ebuild,v 1.15 2012/05/14 18:29:13 scarabeus Exp $
 
 EAPI=4
 
@@ -30,7 +30,7 @@
 IUSE=" aac aacplus alsa ass amr bindist +bzip2 cdio celt cpudetection
 	custom-cflags dirac debug doc +encode faac frei0r +gpl gsm
 	+hardcoded-tables ieee1394 jack jpeg2k libv4l modplug mp3 network
-	openal openssl oss pic pulseaudio rtmp schroedinger sdl speex ssl
+	openssl oss pic pulseaudio rtmp schroedinger sdl speex ssl
 	static-libs test theora threads truetype v4l vaapi vdpau vorbis
 	vpx X x264 xvid +zlib"
 
@@ -75,7 +75,6 @@
 	jpeg2k? ( >=media-libs/openjpeg-1.3-r2 )
 	libv4l? ( media-libs/libv4l )
 	modplug? ( media-libs/libmodplug )
-	openal? ( >=media-libs/openal-1.1 )
 	pulseaudio? ( media-sound/pulseaudio )
 	rtmp? ( >=media-video/rtmpdump-2.2f )
 	ssl? (
@@ -178,7 +177,6 @@
 	# libavdevice options
 	use cdio && myconf+=" --enable-libcdio"
 	use ieee1394 && myconf+=" --enable-libdc1394"
-	use openal && myconf+=" --enable-openal"
 	use pulseaudio && myconf+=" --enable-libpulse"
 
 	# Indevs



1.84                 media-video/libav/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/ChangeLog?rev=1.84&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/ChangeLog?rev=1.84&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/libav/ChangeLog?r1=1.83&r2=1.84

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/libav/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog	14 May 2012 09:16:01 -0000	1.83
+++ ChangeLog	14 May 2012 18:29:13 -0000	1.84
@@ -1,6 +1,10 @@
 # ChangeLog for media-video/libav
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/libav/ChangeLog,v 1.83 2012/05/14 09:16:01 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/libav/ChangeLog,v 1.84 2012/05/14 18:29:13 scarabeus Exp $
+
+  14 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libav-0.8.2-r1.ebuild,
+  libav-0.8.9999.ebuild, libav-9999.ebuild:
+  Actually ffmpeg has openal, libav does not. My overlook.
 
   14 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libav-0.8.9999.ebuild,
   libav-9999.ebuild:






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-05-14 18:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-14  8:26 [gentoo-commits] gentoo-x86 commit in media-video/libav: libav-9999.ebuild libav-0.8.2-r1.ebuild libav-0.8.9999.ebuild ChangeLog Tomas Chvatal (scarabeus)
  -- strict thread matches above, loose matches on Subject: below --
2012-05-14 18:29 Tomas Chvatal (scarabeus)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox