Gentoo Archives: gentoo-commits

From: Joerg Bornkessel <hd_brummy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-remote/
Date: Sat, 10 Oct 2015 18:35:20
Message-Id: 1444502102.e0edd794e41c6ea9f493df8ea1621073fef8426e.hd_brummy@gentoo
1 commit: e0edd794e41c6ea9f493df8ea1621073fef8426e
2 Author: Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 10 18:35:02 2015 +0000
4 Commit: Joerg Bornkessel <hd_brummy <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 10 18:35:02 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0edd794
7
8 expand vdr version depends, reported by Sebastion on bug #562428
9
10 Package-Manager: portage-2.2.20.1
11
12 .../vdr-remote/vdr-remote-0.6.0-r1.ebuild | 29 ++++++++++++++++++++++
13 1 file changed, 29 insertions(+)
14
15 diff --git a/media-plugins/vdr-remote/vdr-remote-0.6.0-r1.ebuild b/media-plugins/vdr-remote/vdr-remote-0.6.0-r1.ebuild
16 new file mode 100644
17 index 0000000..5eec3a9
18 --- /dev/null
19 +++ b/media-plugins/vdr-remote/vdr-remote-0.6.0-r1.ebuild
20 @@ -0,0 +1,29 @@
21 +# Copyright 1999-2015 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +
27 +inherit vdr-plugin-2
28 +
29 +DESCRIPTION="VDR Plugin: use various devices for controlling vdr (keyboards, lirc, remotes bundled with tv-cards)"
30 +HOMEPAGE="http://www.escape-edv.de/endriss/vdr/"
31 +SRC_URI="http://www.escape-edv.de/endriss/vdr/${P}.tgz"
32 +
33 +SLOT="0"
34 +LICENSE="GPL-2"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE="systemd"
37 +
38 +DEPEND=">=media-video/vdr-2.0.0"
39 +
40 +pkg_setup() {
41 + vdr-plugin-2_pkg_setup
42 +
43 + if use systemd; then
44 + if ! getent group input | grep -q vdr; then
45 + einfo "add user 'vdr' to group 'input' for full access to remote control device"
46 + gpasswd -a vdr input
47 + fi
48 + fi
49 +}