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 3E5801388C1 for ; Sat, 31 Oct 2015 05:50:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A491E21C002; Sat, 31 Oct 2015 05:50:00 +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 406E421C002 for ; Sat, 31 Oct 2015 05:50:00 +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 0C309340AC8 for ; Sat, 31 Oct 2015 05:49:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 810A31BCE for ; Sat, 31 Oct 2015 05:49:54 +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: <1446270590.0acbc50092d0f64835ba71ebf7f798d8e3f08f7a.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.5.3_pre20150925-r1.ebuild X-VCS-Directories: net-analyzer/pmacct/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 0acbc50092d0f64835ba71ebf7f798d8e3f08f7a X-VCS-Branch: master Date: Sat, 31 Oct 2015 05:49:54 +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: 5cfff4b4-e03d-4df2-9060-a09c16ab5468 X-Archives-Hash: c034fa01752704468075ec3826a34cce commit: 0acbc50092d0f64835ba71ebf7f798d8e3f08f7a Author: Jeroen Roovers gentoo org> AuthorDate: Sat Oct 31 05:49:26 2015 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sat Oct 31 05:49:50 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0acbc500 net-analyzer/pmacct: Add USE=geoipv2. Package-Manager: portage-2.2.23 net-analyzer/pmacct/metadata.xml | 1 + .../pmacct/pmacct-1.5.3_pre20150925-r1.ebuild | 77 ++++++++++++++++++++++ 2 files changed, 78 insertions(+) diff --git a/net-analyzer/pmacct/metadata.xml b/net-analyzer/pmacct/metadata.xml index 0ad2b40..8249714 100644 --- a/net-analyzer/pmacct/metadata.xml +++ b/net-analyzer/pmacct/metadata.xml @@ -3,6 +3,7 @@ netmon +Add support for GeoIP2 through dev-libs/libmaxminddb Use 64bit counters instead of 32bit ones Add support for mongodb backend Enable support for ULOG in older kernels (deprecated) diff --git a/net-analyzer/pmacct/pmacct-1.5.3_pre20150925-r1.ebuild b/net-analyzer/pmacct/pmacct-1.5.3_pre20150925-r1.ebuild new file mode 100644 index 0000000..e44303f --- /dev/null +++ b/net-analyzer/pmacct/pmacct-1.5.3_pre20150925-r1.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit toolchain-funcs + +DESCRIPTION="A network tool to gather IP traffic information" +HOMEPAGE="http://www.pmacct.net/" +SRC_URI="https://dev.gentoo.org/~jer/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="64bit debug geoip geoipv2 ipv6 mongodb mysql postgres sqlite threads ulog" +REQUIRED_USE=" + ?? ( geoip geoipv2 ) +" + +RDEPEND=" + net-libs/libpcap + geoip? ( dev-libs/geoip ) + geoipv2? ( dev-libs/libmaxminddb ) + mongodb? ( + >=dev-libs/mongo-c-driver-0.8.1-r1 +