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 686191395E3 for ; Mon, 21 Nov 2016 19:49:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 821A2E0B74; Mon, 21 Nov 2016 19:48:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6D709E0B74 for ; Mon, 21 Nov 2016 19:48:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E578B340F53 for ; Mon, 21 Nov 2016 19:48:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5918F49A for ; Mon, 21 Nov 2016 19:48:56 +0000 (UTC) From: "Slawek Lis" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Slawek Lis" Message-ID: <1479757686.4482012f5bd8f2a753509d6214ec284466731d59.slis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ntopng/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/ntopng/metadata.xml net-analyzer/ntopng/ntopng-2.4.ebuild X-VCS-Directories: net-analyzer/ntopng/ X-VCS-Committer: slis X-VCS-Committer-Name: Slawek Lis X-VCS-Revision: 4482012f5bd8f2a753509d6214ec284466731d59 X-VCS-Branch: master Date: Mon, 21 Nov 2016 19:48:56 +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: 8a5f4d52-989e-4e7a-9c8a-80578f9fef1c X-Archives-Hash: f2689896ed3206e432bdbcb4c1d4cd8e commit: 4482012f5bd8f2a753509d6214ec284466731d59 Author: Slawomir Lis gentoo org> AuthorDate: Mon Nov 21 14:12:26 2016 +0000 Commit: Slawek Lis gentoo org> CommitDate: Mon Nov 21 19:48:06 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4482012f net-analyzer/ntopng: updated dependencies Added missing dependencies: dev-libs/json-c and added redis use flag, and dependency to dev-libs/hiredis I'm not sure if dev-db/redis is still needed Package-Manager: portage-2.3.2 net-analyzer/ntopng/metadata.xml | 3 +++ net-analyzer/ntopng/ntopng-2.4.ebuild | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/net-analyzer/ntopng/metadata.xml b/net-analyzer/ntopng/metadata.xml index cab61f7..9b7a6e8 100644 --- a/net-analyzer/ntopng/metadata.xml +++ b/net-analyzer/ntopng/metadata.xml @@ -7,4 +7,7 @@ ntop + + Enable REDIS support + diff --git a/net-analyzer/ntopng/ntopng-2.4.ebuild b/net-analyzer/ntopng/ntopng-2.4.ebuild index f6c9071..6f8199c 100644 --- a/net-analyzer/ntopng/ntopng-2.4.ebuild +++ b/net-analyzer/ntopng/ntopng-2.4.ebuild @@ -12,20 +12,22 @@ SRC_URI="mirror://sourceforge/ntop/${PN}/${P}-stable.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" +IUSE="redis" DEPEND="dev-db/sqlite:3 dev-python/pyzmq dev-lang/luajit:2 + dev-libs/json-c dev-libs/geoip dev-libs/glib:2 + redis? ( dev-libs/hiredis ) dev-libs/libxml2 net-analyzer/rrdtool net-libs/libpcap net-misc/curl virtual/libmysqlclient" RDEPEND="${DEPEND} - dev-db/redis" + redis? ( dev-db/redis )" S="${WORKDIR}/${P}-stable"