From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7C1161388C1 for ; Fri, 4 Mar 2016 10:03:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE138E0801; Fri, 4 Mar 2016 10:03:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 636C5E0801 for ; Fri, 4 Mar 2016 10:03:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2F89C340CB4 for ; Fri, 4 Mar 2016 10:03:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFCE116C4 for ; Fri, 4 Mar 2016 10:03:02 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1457010887.c9a513f5fca425af368156b1272145ce6a9a6980.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/mplayer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/mplayer/metadata.xml media-video/mplayer/mplayer-1.2.1.ebuild media-video/mplayer/mplayer-1.3.0.ebuild media-video/mplayer/mplayer-9999.ebuild X-VCS-Directories: media-video/mplayer/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: c9a513f5fca425af368156b1272145ce6a9a6980 X-VCS-Branch: master Date: Fri, 4 Mar 2016 10:03:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8fcd32d7-b634-4649-8de4-fc89ca9c9772 X-Archives-Hash: 2e7334044eef31c2cd11238afdc1d7e7 commit: c9a513f5fca425af368156b1272145ce6a9a6980 Author: hkgz localhost localdomain> AuthorDate: Thu Mar 3 13:14:47 2016 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Thu Mar 3 13:14:47 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9a513f5 media-video/mplayer: added vcd and yuv4mpeg USE flags, bug #574806 media-video/mplayer/metadata.xml | 2 ++ media-video/mplayer/mplayer-1.2.1.ebuild | 8 ++++---- media-video/mplayer/mplayer-1.3.0.ebuild | 8 ++++---- media-video/mplayer/mplayer-9999.ebuild | 8 ++++---- 4 files changed, 14 insertions(+), 12 deletions(-) diff --git a/media-video/mplayer/metadata.xml b/media-video/mplayer/metadata.xml index c6d7f2f..0bde382 100644 --- a/media-video/mplayer/metadata.xml +++ b/media-video/mplayer/metadata.xml @@ -32,9 +32,11 @@ Enable toolame MPEG-2 encoding Enable internal support for Vorbis Enable twolame MPEG-2 encoding + Enables VCD support Support for vidix video output Enables support for xanim based codecs Enables X-Video Motion Compensation support + Enables yuv4mpeg video output Enables ZR360[56]7/ZR36060 video output diff --git a/media-video/mplayer/mplayer-1.2.1.ebuild b/media-video/mplayer/mplayer-1.2.1.ebuild index e524a12..c2a89ed 100644 --- a/media-video/mplayer/mplayer-1.2.1.ebuild +++ b/media-video/mplayer/mplayer-1.2.1.ebuild @@ -17,8 +17,8 @@ ftp gif ggi gsm +iconv ipv6 jack joystick jpeg jpeg2k kernel_linux ladspa +libass libcaca libmpeg2 lirc live lzo mad md5sum +cpu_flags_x86_mmx cpu_flags_x86_mmxext mng mp3 nas +network nut openal opengl +osdmenu oss png pnm pulseaudio pvr radio rar rtc rtmp samba selinux +shm sdl speex cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_ssse3 -tga theora tremor +truetype toolame twolame +unicode v4l vdpau vidix -vorbis +X x264 xanim xinerama +xscreensaver +xv xvid xvmc zoran" +tga theora tremor +truetype toolame twolame +unicode v4l vcd vdpau vidix +vorbis +X x264 xanim xinerama +xscreensaver +xv xvid xvmc yuv4mpeg zoran" VIDEO_CARDS="s3virge mga tdfx" for x in ${VIDEO_CARDS}; do @@ -299,7 +299,7 @@ src_configure() { $(use_enable network networking) $(use_enable joystick) " - uses="bl bluray enca ftp rtc" # nemesi <- not working with in-tree ebuild + uses="bl bluray enca ftp rtc vcd" # nemesi <- not working with in-tree ebuild myconf+=" --disable-nemesi" # nemesi automagic disable for i in ${uses}; do use ${i} || myconf+=" --disable-${i}" @@ -422,7 +422,7 @@ src_configure() { ################ # Video Output # ################ - uses="directfb md5sum sdl" + uses="directfb md5sum sdl yuv4mpeg" for i in ${uses}; do use ${i} || myconf+=" --disable-${i}" done diff --git a/media-video/mplayer/mplayer-1.3.0.ebuild b/media-video/mplayer/mplayer-1.3.0.ebuild index 8a5b401..c5eb085 100644 --- a/media-video/mplayer/mplayer-1.3.0.ebuild +++ b/media-video/mplayer/mplayer-1.3.0.ebuild @@ -17,8 +17,8 @@ ftp gif ggi gsm +iconv ipv6 jack joystick jpeg jpeg2k kernel_linux ladspa +libass libcaca libmpeg2 lirc live lzo mad md5sum +cpu_flags_x86_mmx cpu_flags_x86_mmxext mng mp3 nas +network nut openal opengl +osdmenu oss png pnm pulseaudio pvr radio rar rtc rtmp samba selinux +shm sdl speex cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_ssse3 -tga theora tremor +truetype toolame twolame +unicode v4l vdpau vidix -vorbis +X x264 xanim xinerama +xscreensaver +xv xvid xvmc zoran" +tga theora tremor +truetype toolame twolame +unicode v4l vcd vdpau vidix +vorbis +X x264 xanim xinerama +xscreensaver +xv xvid xvmc yuv4mpeg zoran" VIDEO_CARDS="s3virge mga tdfx" for x in ${VIDEO_CARDS}; do @@ -293,7 +293,7 @@ src_configure() { $(use_enable network networking) $(use_enable joystick) " - uses="bl bluray enca ftp rtc" # nemesi <- not working with in-tree ebuild + uses="bl bluray enca ftp rtc vcd" # nemesi <- not working with in-tree ebuild myconf+=" --disable-nemesi" # nemesi automagic disable for i in ${uses}; do use ${i} || myconf+=" --disable-${i}" @@ -416,7 +416,7 @@ src_configure() { ################ # Video Output # ################ - uses="directfb md5sum sdl" + uses="directfb md5sum sdl yuv4mpeg" for i in ${uses}; do use ${i} || myconf+=" --disable-${i}" done diff --git a/media-video/mplayer/mplayer-9999.ebuild b/media-video/mplayer/mplayer-9999.ebuild index 586f70a..1e3a45b 100644 --- a/media-video/mplayer/mplayer-9999.ebuild +++ b/media-video/mplayer/mplayer-9999.ebuild @@ -17,8 +17,8 @@ ftp gif ggi gsm +iconv ipv6 jack joystick jpeg jpeg2k kernel_linux ladspa +libass libcaca libmpeg2 lirc live lzo mad md5sum +cpu_flags_x86_mmx cpu_flags_x86_mmxext mng mp3 nas +network nut openal opengl +osdmenu oss png pnm pulseaudio pvr radio rar rtc rtmp samba selinux +shm sdl speex cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_ssse3 -tga theora tremor +truetype toolame twolame +unicode v4l vdpau vidix -vorbis +X x264 xanim xinerama +xscreensaver +xv xvid xvmc zoran" +tga theora tremor +truetype toolame twolame +unicode v4l vcd vdpau vidix +vorbis +X x264 xanim xinerama +xscreensaver +xv xvid xvmc yuv4mpeg zoran" VIDEO_CARDS="s3virge mga tdfx" for x in ${VIDEO_CARDS}; do @@ -293,7 +293,7 @@ src_configure() { $(use_enable network networking) $(use_enable joystick) " - uses="bl bluray enca ftp rtc" # nemesi <- not working with in-tree ebuild + uses="bl bluray enca ftp rtc vcd" # nemesi <- not working with in-tree ebuild myconf+=" --disable-nemesi" # nemesi automagic disable for i in ${uses}; do use ${i} || myconf+=" --disable-${i}" @@ -416,7 +416,7 @@ src_configure() { ################ # Video Output # ################ - uses="directfb md5sum sdl" + uses="directfb md5sum sdl yuv4mpeg" for i in ${uses}; do use ${i} || myconf+=" --disable-${i}" done