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 1CF32139083 for ; Mon, 19 Jun 2017 11:59:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5713723401E; Mon, 19 Jun 2017 11:59:08 +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 33AD123401E for ; Mon, 19 Jun 2017 11:59:08 +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 2FAC73417D3 for ; Mon, 19 Jun 2017 11:59:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC6D32FA for ; Mon, 19 Jun 2017 11:59:04 +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: <1497873528.805c605a0da74b7e312231fba97ea3b7fcc4682f.slis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/nDPI/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/nDPI/Manifest net-libs/nDPI/metadata.xml net-libs/nDPI/nDPI-2.0.ebuild X-VCS-Directories: net-libs/nDPI/ X-VCS-Committer: slis X-VCS-Committer-Name: Slawek Lis X-VCS-Revision: 805c605a0da74b7e312231fba97ea3b7fcc4682f X-VCS-Branch: master Date: Mon, 19 Jun 2017 11:59:04 +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: 905d3635-6636-4194-b70d-58e9af6482b4 X-Archives-Hash: f8b8ca72dbf3d9d311d6a47b28fa2eda commit: 805c605a0da74b7e312231fba97ea3b7fcc4682f Author: Slawomir Lis gentoo org> AuthorDate: Mon Jun 19 12:01:04 2017 +0000 Commit: Slawek Lis gentoo org> CommitDate: Mon Jun 19 11:58:48 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=805c605a net-libs/nDPI: new package Package-Manager: Portage-2.3.6, Repoman-2.3.2 net-libs/nDPI/Manifest | 1 + net-libs/nDPI/metadata.xml | 10 ++++++++++ net-libs/nDPI/nDPI-2.0.ebuild | 23 +++++++++++++++++++++++ 3 files changed, 34 insertions(+) diff --git a/net-libs/nDPI/Manifest b/net-libs/nDPI/Manifest new file mode 100644 index 00000000000..f30625b45e3 --- /dev/null +++ b/net-libs/nDPI/Manifest @@ -0,0 +1 @@ +DIST nDPI-2.0.tar.gz 19280901 SHA256 a42a60ebd64bc8606f780204222893027f6dce0e3b460d7be655e5e065f5f3fa SHA512 c8dac1990ff49fc04ee321068d8fc722528c6be0543af2d0bda77936eff12713c36d5abd3fd2472121f2e322e99ba8e57facca813f7b012240c61e16c1a6cd44 WHIRLPOOL a19c55ae82b99d7a7b4e79a9327832dcb77c8cf62e18a2ff875399580d6157e74358d929025be5ca11b63a969f1cc950b222959b092026286adfbc35fb7c5194 diff --git a/net-libs/nDPI/metadata.xml b/net-libs/nDPI/metadata.xml new file mode 100644 index 00000000000..7224cca2bed --- /dev/null +++ b/net-libs/nDPI/metadata.xml @@ -0,0 +1,10 @@ + + + + + slis@gentoo.org + + + ntop/nDPI + + diff --git a/net-libs/nDPI/nDPI-2.0.ebuild b/net-libs/nDPI/nDPI-2.0.ebuild new file mode 100644 index 00000000000..7d4217d49af --- /dev/null +++ b/net-libs/nDPI/nDPI-2.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools + +DESCRIPTION="Open Source Deep Packet Inspection Software Toolkit" +HOMEPAGE="http://www.ntop.org/" +SRC_URI="https://github.com/ntop/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-libs/json-c + net-libs/libpcap" +RDEPEND="${DEPEND}" + +src_prepare() { + default + eautoreconf +}