Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/pulseaudio-dlna/
Date: Thu, 28 Sep 2017 06:09:57
Message-Id: 1506578973.67fa3286ef91043177c182c964e4a6e6ec85a96c.prometheanfire@gentoo
1 commit: 67fa3286ef91043177c182c964e4a6e6ec85a96c
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 28 06:09:14 2017 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 28 06:09:33 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67fa3286
7
8 net-misc/pulseaudio-dlna: allow newer ffmpeg use
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 .../pulseaudio-dlna-0.5.2-r1.ebuild | 56 ++++++++++++++++++++++
13 1 file changed, 56 insertions(+)
14
15 diff --git a/net-misc/pulseaudio-dlna/pulseaudio-dlna-0.5.2-r1.ebuild b/net-misc/pulseaudio-dlna/pulseaudio-dlna-0.5.2-r1.ebuild
16 new file mode 100644
17 index 00000000000..6714dd0bdc2
18 --- /dev/null
19 +++ b/net-misc/pulseaudio-dlna/pulseaudio-dlna-0.5.2-r1.ebuild
20 @@ -0,0 +1,56 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +PYTHON_COMPAT=( python2_7 )
26 +DISTUTILS_SINGLE_IMPL=1
27 +
28 +inherit distutils-r1
29 +
30 +DESCRIPTION="A lightweight DLNA/UPNP/Chromecast streaming server for PulseAudio"
31 +HOMEPAGE="https://github.com/masmu/pulseaudio-dlna"
32 +SRC_URI="https://github.com/masmu/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
33 +
34 +LICENSE="GPL-3"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86"
37 +IUSE=""
38 +
39 +RDEPEND=">=dev-python/protobuf-python-2.5.0[${PYTHON_USEDEP}]
40 + >=dev-python/chardet-2.0.1[${PYTHON_USEDEP}]
41 + >=dev-python/docopt-0.6.1[${PYTHON_USEDEP}]
42 + >=dev-python/futures-2.1.6[${PYTHON_USEDEP}]
43 + dev-python/librsvg-python[${PYTHON_USEDEP}]
44 + >=dev-python/lxml-3[${PYTHON_USEDEP}]
45 + >=dev-python/netifaces-0.8[${PYTHON_USEDEP}]
46 + >=dev-python/notify2-0.3[${PYTHON_USEDEP}]
47 + >=dev-python/psutil-1.2.1[${PYTHON_USEDEP}]
48 + dev-python/pycairo[${PYTHON_USEDEP}]
49 + dev-python/pygobject:3[${PYTHON_USEDEP}]
50 + >=dev-python/requests-2.2.1[${PYTHON_USEDEP}]
51 + >=dev-python/setproctitle-1.0.1[${PYTHON_USEDEP}]
52 + >=dev-python/zeroconf-0.17[${PYTHON_USEDEP}]
53 + || (
54 + || ( media-video/ffmpeg[encode,faac,mp3,opus,vorbis]
55 + media-video/ffmpeg[encode,fdk,mp3,opus,vorbis] )
56 + ( media-video/libav[encode,faac,mp3,opus,vorbis] )
57 + ( media-libs/faac
58 + media-libs/flac
59 + media-sound/lame
60 + media-sound/opus-tools
61 + media-sound/sox
62 + media-sound/vorbis-tools )
63 + )
64 + virtual/python-futures[${PYTHON_USEDEP}]"
65 +
66 +DEPEND="${RDEPEND}
67 + dev-python/dbus-python[${PYTHON_USEDEP}]
68 + dev-python/setuptools[${PYTHON_USEDEP}]
69 + media-sound/pulseaudio"
70 +
71 +src_install() {
72 + distutils-r1_src_install
73 +
74 + insinto /usr/share/applications
75 + doins "${FILESDIR}/${PN}.desktop"
76 +}