Gentoo Archives: gentoo-commits

From: Ian Delaney <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/mpv/
Date: Sat, 02 Jan 2016 05:52:14
Message-Id: 1451667217.e1deca1f89b9d7f560fdf622717bef90d2f834f7.idella4@gentoo
1 commit: e1deca1f89b9d7f560fdf622717bef90d2f834f7
2 Author: Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
3 AuthorDate: Fri Jan 1 16:53:37 2016 +0000
4 Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 16:53:37 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1deca1f
7
8 media-video/mpv: add missing zsh-completion USE flag
9
10 Zsh completion is a separate feature from CLI player.
11 Thus it should be controlled by a separate 'zsh-completion' USE.
12
13 Make 'zsh-completion' USE require 'cli' USE, since completions
14 for a shared library are not useful.
15
16 Package-Manager: portage-2.2.24
17
18 media-video/mpv/mpv-9999.ebuild | 7 ++++---
19 1 file changed, 4 insertions(+), 3 deletions(-)
20
21 diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild
22 index fcb22d5..c515098 100644
23 --- a/media-video/mpv/mpv-9999.ebuild
24 +++ b/media-video/mpv/mpv-9999.ebuild
25 @@ -1,4 +1,4 @@
26 -# Copyright 1999-2015 Gentoo Foundation
27 +# Copyright 1999-2016 Gentoo Foundation
28 # Distributed under the terms of the GNU General Public License v2
29 # $Id$
30
31 @@ -33,7 +33,7 @@ IUSE="+alsa archive bluray cdda +cli doc drm dvb +dvd +egl +enca encode gbm
32 +iconv jack jpeg lcms +libass libav libcaca libguess libmpv lua luajit
33 openal +opengl oss pulseaudio raspberry-pi rubberband samba sdl selinux
34 test uchardet v4l vaapi vdpau vf-dlopen wayland +X xinerama +xscreensaver
35 - xv"
36 + xv zsh-completion"
37
38 REQUIRED_USE="
39 || ( cli libmpv )
40 @@ -52,6 +52,7 @@ REQUIRED_USE="
41 xinerama? ( X )
42 xscreensaver? ( X )
43 xv? ( X )
44 + zsh-completion? ( cli )
45 "
46
47 COMMON_DEPEND="
48 @@ -179,7 +180,7 @@ src_configure() {
49
50 $(use_enable doc pdf-build)
51 $(use_enable vf-dlopen vf-dlopen-filters)
52 - $(use_enable cli zsh-comp)
53 + $(use_enable zsh-completion zsh-comp)
54 $(use_enable test)
55
56 $(use_enable iconv)