From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A2A77139084 for ; Sun, 17 Dec 2017 22:53:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E98CFE0E7C; Sun, 17 Dec 2017 22:53:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B8437E0E7C for ; Sun, 17 Dec 2017 22:53:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 90FE933BF24 for ; Sun, 17 Dec 2017 22:53:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 282027467 for ; Sun, 17 Dec 2017 22:53:40 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1513551213.46b42af633f895b35ddad5eccdba22dad451bc83.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/tvheadend/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-tv/tvheadend/metadata.xml media-tv/tvheadend/tvheadend-9999.ebuild X-VCS-Directories: media-tv/tvheadend/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 46b42af633f895b35ddad5eccdba22dad451bc83 X-VCS-Branch: master Date: Sun, 17 Dec 2017 22:53:40 +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: fac762d5-b10d-4eaa-8bd2-362c7b2be399 X-Archives-Hash: 0a9858ca4ca3158b8b87003402ef4351 commit: 46b42af633f895b35ddad5eccdba22dad451bc83 Author: Daniel Scheller gmx net> AuthorDate: Sat Dec 2 12:25:09 2017 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Sun Dec 17 22:53:33 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46b42af6 media-tv/tvheadend: add ddci USE flag (support for DDCI hardware) --enable-ddci enables the recently added support for the Digital Devices CI hardware (Octopus CI, DuoFlex CI), for which the driver exposes their functionality via a /dev/dvb/adapterX/secY (recent kernels) or ciY (dddvb vendor driver package, both supported equally) dev node. This support will be part of the tvheadend 4.4 release. Repoman 2.3.3 (portage-2.3.13) Closes: https://github.com/gentoo/gentoo/pull/6399 media-tv/tvheadend/metadata.xml | 1 + media-tv/tvheadend/tvheadend-9999.ebuild | 8 ++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/media-tv/tvheadend/metadata.xml b/media-tv/tvheadend/metadata.xml index ad28ad1f4b6..0b905954f50 100644 --- a/media-tv/tvheadend/metadata.xml +++ b/media-tv/tvheadend/metadata.xml @@ -9,6 +9,7 @@ Enable support for capmt (dvbapi) protocol Enable support for the constcw protocol Enable support for the cwc (newcamd) protocol + Enable support for DDCI hardware Enable decryption of the DVB Common Scrambling Algorithm Enable support for hardware CAM Enable support for the HDHomeRun device diff --git a/media-tv/tvheadend/tvheadend-9999.ebuild b/media-tv/tvheadend/tvheadend-9999.ebuild index 55773cf0ac9..952ade3e853 100644 --- a/media-tv/tvheadend/tvheadend-9999.ebuild +++ b/media-tv/tvheadend/tvheadend-9999.ebuild @@ -13,7 +13,7 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="" -IUSE="+capmt +constcw +cwc dbus debug dvbcsa dvben50221 +dvb +ffmpeg hdhomerun +imagecache +inotify iptv libressl opus satip systemd +timeshift uriparser vpx x264 x265 xmltv zeroconf zlib" +IUSE="+capmt +constcw +cwc dbus debug ddci dvbcsa dvben50221 +dvb +ffmpeg hdhomerun +imagecache +inotify iptv libressl opus satip systemd +timeshift uriparser vpx x264 x265 xmltv zeroconf zlib" RDEPEND=" virtual/libiconv @@ -47,7 +47,10 @@ RDEPEND+=" dvb? ( media-tv/dtv-scan-tables ) xmltv? ( media-tv/xmltv )" -REQUIRED_USE="dvbcsa? ( || ( capmt constcw cwc dvben50221 ) )" +REQUIRED_USE=" + dvbcsa? ( || ( capmt constcw cwc dvben50221 ) ) + ddci? ( dvb dvben50221 ) +" # Some patches from: # https://github.com/rpmfusion/tvheadend @@ -92,6 +95,7 @@ src_configure() { $(use_enable cwc) \ $(use_enable dbus dbus_1) \ $(use_enable debug trace) \ + $(use_enable ddci) \ $(use_enable dvb linuxdvb) \ $(use_enable dvbcsa) \ $(use_enable dvben50221) \