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 BB86C58973 for ; Sun, 24 Jan 2016 23:04:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6121021C06D; Sun, 24 Jan 2016 23:04:37 +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 D894021C059 for ; Sun, 24 Jan 2016 23:04:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2401F340942 for ; Sun, 24 Jan 2016 23:04:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2614310FE for ; Sun, 24 Jan 2016 23:04:30 +0000 (UTC) From: "Sven Wegener" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Wegener" Message-ID: <1453676642.c69dc4348380b40e043ec86e35287e737ad97e23.swegener@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-tv/tvheadend/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-tv/tvheadend/tvheadend-9999.ebuild X-VCS-Directories: media-tv/tvheadend/ X-VCS-Committer: swegener X-VCS-Committer-Name: Sven Wegener X-VCS-Revision: c69dc4348380b40e043ec86e35287e737ad97e23 X-VCS-Branch: master Date: Sun, 24 Jan 2016 23:04:30 +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: 71803c80-8588-49a7-a7a1-b14e66558f0a X-Archives-Hash: 2070fa719155a95d6becc37bd85c4ecd commit: c69dc4348380b40e043ec86e35287e737ad97e23 Author: Sven Wegener gentoo org> AuthorDate: Sat Jan 23 09:22:22 2016 +0000 Commit: Sven Wegener gentoo org> CommitDate: Sun Jan 24 23:04:02 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c69dc434 media-tv/tvheadend: Forward port additional USE flags Signed-off-by: Sven Wegener gentoo.org> media-tv/tvheadend/tvheadend-9999.ebuild | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/media-tv/tvheadend/tvheadend-9999.ebuild b/media-tv/tvheadend/tvheadend-9999.ebuild index 584af8a..d056a1e 100644 --- a/media-tv/tvheadend/tvheadend-9999.ebuild +++ b/media-tv/tvheadend/tvheadend-9999.ebuild @@ -14,20 +14,23 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="" -IUSE="avahi +dvb +dvbscan ffmpeg libav imagecache inotify uriparser xmltv zlib" +IUSE="avahi capmt constcw +cwc dbus +dvb +dvbscan ffmpeg hdhomerun libav imagecache inotify iptv satip +timeshift uriparser xmltv zlib" RDEPEND="dev-libs/openssl:= virtual/libiconv avahi? ( net-dns/avahi ) + dbus? ( sys-apps/dbus ) ffmpeg? ( !libav? ( media-video/ffmpeg:0= ) libav? ( media-video/libav:= ) ) + hdhomerun? ( media-libs/libhdhomerun ) uriparser? ( dev-libs/uriparser ) zlib? ( sys-libs/zlib )" DEPEND="${RDEPEND} dvb? ( virtual/linuxtv-dvb-headers ) + capmt? ( virtual/linuxtv-dvb-headers ) virtual/pkgconfig" RDEPEND+=" @@ -53,10 +56,19 @@ src_configure() { --disable-ccache \ --disable-dvbscan \ $(use_enable avahi) \ + $(use_enable capmt) \ + $(use_enable constcw) \ + $(use_enable cwc) \ + $(use_enable dbus) \ $(use_enable dvb linuxdvb) \ $(use_enable ffmpeg libav) \ + $(use_enable hdhomerun hdhomerun_client) \ $(use_enable imagecache) \ $(use_enable inotify) \ + $(use_enable iptv) \ + $(use_enable satip satip_server) \ + $(use_enable satip satip_client) \ + $(use_enable timeshift) \ $(use_enable uriparser) \ $(use_enable zlib) }