Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mpd/
Date: Sat, 11 Nov 2017 21:03:07
Message-Id: 1510434173.798b39d002de345abe0eaae950a3a3c89192d76e.asturm@gentoo
1 commit: 798b39d002de345abe0eaae950a3a3c89192d76e
2 Author: sqozz <sqozz <AT> geekify <DOT> de>
3 AuthorDate: Fri Sep 1 19:35:49 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 11 21:02:53 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=798b39d0
7
8 media-sound/mpd: Add webdav use flag
9
10 Committer-comment: Added missing IUSE description and curl REQUIRED_USE.
11 Closes: https://bugs.gentoo.org/629564
12
13 media-sound/mpd/metadata.xml | 1 +
14 media-sound/mpd/mpd-0.20.10.ebuild | 4 +++-
15 2 files changed, 4 insertions(+), 1 deletion(-)
16
17 diff --git a/media-sound/mpd/metadata.xml b/media-sound/mpd/metadata.xml
18 index a824cdeb5ff..44d02733ce2 100644
19 --- a/media-sound/mpd/metadata.xml
20 +++ b/media-sound/mpd/metadata.xml
21 @@ -35,6 +35,7 @@
22 <flag name="soundcloud">Build plugin to access soundcloud</flag>
23 <flag name="systemd">Enable support for systemd socket activation</flag>
24 <flag name="twolame">Support twolame MPEG-2 encoding</flag>
25 + <flag name="webdav">Enable using music from a WebDAV share</flag>
26 <flag name="wildmidi">Enable MIDI support via wildmidi</flag>
27 <flag name="zip">Support for ZIP files</flag>
28 </use>
29
30 diff --git a/media-sound/mpd/mpd-0.20.10.ebuild b/media-sound/mpd/mpd-0.20.10.ebuild
31 index 7e3851e85ed..dcde1d4cc46 100644
32 --- a/media-sound/mpd/mpd-0.20.10.ebuild
33 +++ b/media-sound/mpd/mpd-0.20.10.ebuild
34 @@ -17,7 +17,7 @@ IUSE="adplug +alsa ao audiofile bzip2 cdio +curl debug +eventfd expat faad
35 lame mms libav libmpdclient libsamplerate libsoxr +mad mikmod modplug
36 mpg123 musepack +network nfs ogg openal opus oss pipe pulseaudio recorder
37 samba selinux sid +signalfd sndfile soundcloud sqlite systemd tcpd twolame
38 - unicode upnp vorbis wavpack wildmidi zeroconf zip zlib"
39 + unicode upnp vorbis wavpack wildmidi zeroconf zip zlib webdav"
40
41 OUTPUT_PLUGINS="alsa ao fifo jack network openal oss pipe pulseaudio recorder"
42 DECODER_PLUGINS="adplug audiofile faad ffmpeg flac fluidsynth mad mikmod
43 @@ -31,6 +31,7 @@ REQUIRED_USE="
44 recorder? ( || ( ${ENCODER_PLUGINS} ) )
45 opus? ( ogg )
46 upnp? ( expat )
47 + webdav? ( curl expat )
48 "
49
50 CDEPEND="!<sys-cluster/mpich2-1.4_rc2
51 @@ -220,6 +221,7 @@ src_configure() {
52 $(use_enable wildmidi)
53 $(use_enable zip zzip)
54 $(use_enable icu)
55 + $(use_enable webdav)
56 $(use_enable faad aac)
57 $(use_with zeroconf zeroconf avahi)
58 --with-systemdsystemunitdir=$(systemd_get_systemunitdir)