diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-11-01 01:05:08 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-11-01 01:05:08 +0000 |
commit | 1239b0057fde6b37135d6d243013d39c53a1a68d (patch) | |
tree | fd3fb7bfb55de7e79d3362232e3bd229607cc51b /media-video/mplayer2/mplayer2-2.0.ebuild | |
parent | old, uncompatible with libpng15 (diff) | |
download | gentoo-2-1239b0057fde6b37135d6d243013d39c53a1a68d.tar.gz gentoo-2-1239b0057fde6b37135d6d243013d39c53a1a68d.tar.bz2 gentoo-2-1239b0057fde6b37135d6d243013d39c53a1a68d.zip |
Rename USE="v4l2" to USE="v4l" while removing support for video4linux 1.x wrt #385241
(Portage version: 2.2.0_alpha71_p73/cvs/Linux x86_64)
Diffstat (limited to 'media-video/mplayer2/mplayer2-2.0.ebuild')
-rw-r--r-- | media-video/mplayer2/mplayer2-2.0.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/media-video/mplayer2/mplayer2-2.0.ebuild b/media-video/mplayer2/mplayer2-2.0.ebuild index c5edfefa4d64..226b392c49fd 100644 --- a/media-video/mplayer2/mplayer2-2.0.ebuild +++ b/media-video/mplayer2/mplayer2-2.0.ebuild @@ -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/mplayer2/mplayer2-2.0.ebuild,v 1.19 2011/10/09 16:36:34 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer2/mplayer2-2.0.ebuild,v 1.20 2011/11/01 01:05:08 ssuominen Exp $ EAPI=4 @@ -18,7 +18,7 @@ ftp gif ggi +iconv ipv6 jack joystick jpeg kernel_linux ladspa libcaca lirc +live mad md5sum +mmx mmxext mng +mp3 nas +network nut +opengl +osdmenu oss png pnm pulseaudio pvr +quicktime radio +rar +real +rtc samba +shm sdl +speex sse sse2 ssse3 -tga +theora +truetype +unicode v4l v4l2 vdpau +tga +theora +truetype +unicode v4l vdpau +vorbis win32codecs +X xanim xinerama +xscreensaver +xv xvid xvmc" VIDEO_CARDS="s3virge mga tdfx vesa" @@ -342,12 +342,13 @@ src_configure() { myconf+=" --disable-tv-bsdbt848" # broken upstream, won't work with recent kernels myconf+=" --disable-ivtv" - if { use dvb || use v4l || use v4l2 || use pvr || use radio; }; then + # v4l1 is gone since linux-headers-2.6.38 + myconf+=" --disable-tv-v4l1" + if { use dvb || use v4l || use pvr || use radio; }; then use dvb || myconf+=" --disable-dvb" use pvr || myconf+=" --disable-pvr" - use v4l || myconf+=" --disable-tv-v4l1" - use v4l2 || myconf+=" --disable-tv-v4l2" - if use radio && { use dvb || use v4l || use v4l2; }; then + use v4l || myconf+=" --disable-tv-v4l2" + if use radio && { use dvb || use v4l; }; then myconf+=" --enable-radio --disable-radio-capture @@ -361,7 +362,6 @@ src_configure() { else myconf+=" --disable-tv - --disable-tv-v4l1 --disable-tv-v4l2 --disable-radio --disable-radio-v4l2 |