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 E7D69139694 for ; Fri, 21 Apr 2017 12:51:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14596E0C97; Fri, 21 Apr 2017 12:51:05 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 D2D5DE0C97 for ; Fri, 21 Apr 2017 12:51:04 +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 2EC2833D3CE for ; Fri, 21 Apr 2017 12:51:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1ADAF7427 for ; Fri, 21 Apr 2017 12:51:01 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1492779059.aee26e0ffc4de9b95170535c5b4a2f023d908417.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/pmacct/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/pmacct/metadata.xml net-analyzer/pmacct/pmacct-1.6.1-r1.ebuild X-VCS-Directories: net-analyzer/pmacct/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: aee26e0ffc4de9b95170535c5b4a2f023d908417 X-VCS-Branch: master Date: Fri, 21 Apr 2017 12:51:01 +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: af91c4b0-b41a-4bf2-804a-c300472e210f X-Archives-Hash: bfd189a01d1290cae33fdccf69bd3422 commit: aee26e0ffc4de9b95170535c5b4a2f023d908417 Author: Jeroen Roovers gentoo org> AuthorDate: Fri Apr 21 12:50:11 2017 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Fri Apr 21 12:50:59 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aee26e0f net-analyzer/pmacct: Add USE="jansson kafka rabbitmq" (bug #594512 by Marcin Mirosław). Package-Manager: Portage-2.3.5, Repoman-2.3.2 net-analyzer/pmacct/metadata.xml | 5 +- net-analyzer/pmacct/pmacct-1.6.1-r1.ebuild | 79 ++++++++++++++++++++++++++++++ 2 files changed, 83 insertions(+), 1 deletion(-) diff --git a/net-analyzer/pmacct/metadata.xml b/net-analyzer/pmacct/metadata.xml index 46cfcd1fff7..32c63343b6f 100644 --- a/net-analyzer/pmacct/metadata.xml +++ b/net-analyzer/pmacct/metadata.xml @@ -6,9 +6,12 @@ Gentoo network monitoring and analysis project -Add support for GeoIP2 through dev-libs/libmaxminddb Use 64bit counters instead of 32bit ones +Add support for GeoIP2 through dev-libs/libmaxminddb +Add support for JSON through dev-libs/jansson +Add support for Apache Kafka through dev-libs/librdkafka Add support for mongodb backend +Add support for RabbitMQ through net-libs/rabbitmq-c Enable support for ULOG in older kernels (deprecated) diff --git a/net-analyzer/pmacct/pmacct-1.6.1-r1.ebuild b/net-analyzer/pmacct/pmacct-1.6.1-r1.ebuild new file mode 100644 index 00000000000..112c9000ec8 --- /dev/null +++ b/net-analyzer/pmacct/pmacct-1.6.1-r1.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit toolchain-funcs + +DESCRIPTION="A network tool to gather IP traffic information" +HOMEPAGE="http://www.pmacct.net/" +SRC_URI="http://www.pmacct.net/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="64bit debug geoip geoipv2 ipv6 jansson kafka mongodb mysql postgres rabbitmq sqlite threads" +REQUIRED_USE=" + ?? ( geoip geoipv2 ) + kafka? ( jansson ) + rabbitmq? ( jansson ) +" + +RDEPEND=" + net-libs/libpcap + geoip? ( dev-libs/geoip ) + geoipv2? ( dev-libs/libmaxminddb ) + jansson? ( dev-libs/jansson ) + kafka? ( dev-libs/librdkafka ) + mongodb? ( + >=dev-libs/mongo-c-driver-0.8.1-r1 +