From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 612BF13888F for ; Sat, 10 Oct 2015 18:35:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C115FE0817; Sat, 10 Oct 2015 18:35:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 63CC2E0817 for ; Sat, 10 Oct 2015 18:35:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F3A9A33F7F8 for ; Sat, 10 Oct 2015 18:35:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F3EAB9 for ; Sat, 10 Oct 2015 18:35:11 +0000 (UTC) From: "Joerg Bornkessel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joerg Bornkessel" Message-ID: <1444502102.e0edd794e41c6ea9f493df8ea1621073fef8426e.hd_brummy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-remote/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/vdr-remote/vdr-remote-0.6.0-r1.ebuild X-VCS-Directories: media-plugins/vdr-remote/ X-VCS-Committer: hd_brummy X-VCS-Committer-Name: Joerg Bornkessel X-VCS-Revision: e0edd794e41c6ea9f493df8ea1621073fef8426e X-VCS-Branch: master Date: Sat, 10 Oct 2015 18:35:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b53c4d28-5d8e-4533-a4a1-b0d504bfcc4c X-Archives-Hash: ed376c03e38ab7cd2b9ed54494d01ede commit: e0edd794e41c6ea9f493df8ea1621073fef8426e Author: Joerg Bornkessel gentoo org> AuthorDate: Sat Oct 10 18:35:02 2015 +0000 Commit: Joerg Bornkessel gentoo org> CommitDate: Sat Oct 10 18:35:02 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0edd794 expand vdr version depends, reported by Sebastion on bug #562428 Package-Manager: portage-2.2.20.1 .../vdr-remote/vdr-remote-0.6.0-r1.ebuild | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) 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 new file mode 100644 index 0000000..5eec3a9 --- /dev/null +++ b/media-plugins/vdr-remote/vdr-remote-0.6.0-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit vdr-plugin-2 + +DESCRIPTION="VDR Plugin: use various devices for controlling vdr (keyboards, lirc, remotes bundled with tv-cards)" +HOMEPAGE="http://www.escape-edv.de/endriss/vdr/" +SRC_URI="http://www.escape-edv.de/endriss/vdr/${P}.tgz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +IUSE="systemd" + +DEPEND=">=media-video/vdr-2.0.0" + +pkg_setup() { + vdr-plugin-2_pkg_setup + + if use systemd; then + if ! getent group input | grep -q vdr; then + einfo "add user 'vdr' to group 'input' for full access to remote control device" + gpasswd -a vdr input + fi + fi +}