diff options
author | Matthew Brewer <tomboy64@sina.cn> | 2016-03-11 22:24:17 +0100 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2016-03-19 19:19:20 +0800 |
commit | 2970ef097b92c747ea2b95dfdcca8f6ef1a743e9 (patch) | |
tree | d5fe0f63d93aeee20253afcb55e1cbd798579c2d | |
parent | License: new license: the-Click-license for ipsumdump (diff) | |
download | gentoo-2970ef097b92c747ea2b95dfdcca8f6ef1a743e9.tar.gz gentoo-2970ef097b92c747ea2b95dfdcca8f6ef1a743e9.tar.bz2 gentoo-2970ef097b92c747ea2b95dfdcca8f6ef1a743e9.zip |
net-analyzer/ipsumdump: initial ebuild, version 1.85
ipsumdump is actually a small collection of three tiny utilities to
process libpcap output. It's necessary for net-analyzer/bro, a network
security scanner.
Package-Manager: portage-2.2.27
RepoMan-Options: --ignore-arches
Closes: https://github.com/gentoo/gentoo/pull/1069
-rw-r--r-- | net-analyzer/ipsumdump/Manifest | 1 | ||||
-rw-r--r-- | net-analyzer/ipsumdump/ipsumdump-1.85.ebuild | 25 | ||||
-rw-r--r-- | net-analyzer/ipsumdump/metadata.xml | 19 |
3 files changed, 45 insertions, 0 deletions
diff --git a/net-analyzer/ipsumdump/Manifest b/net-analyzer/ipsumdump/Manifest new file mode 100644 index 000000000000..b6eb8fd0ad7d --- /dev/null +++ b/net-analyzer/ipsumdump/Manifest @@ -0,0 +1 @@ +DIST ipsumdump-1.85.tar.gz 919540 SHA256 98feca0f323605a022ba0cabcd765a8fcad1b308461360a5ae6c4c293740dc32 SHA512 b42844cf028b9c1ea9da90306be8d731bffcec1a8f5c9eeb8029f563ddd5781651c583913a2105d8ad99cabac4b003345e1e8fdfb83367cabf806de1bca31596 WHIRLPOOL e30959f3ec0416a0c85c63aafa78433f46364fd01e8dde9fac6874d4c73838096d3f48abba9b4fa5f191062a9e5186b3efa32615626e62aa724b6884be1ad6aa diff --git a/net-analyzer/ipsumdump/ipsumdump-1.85.ebuild b/net-analyzer/ipsumdump/ipsumdump-1.85.ebuild new file mode 100644 index 000000000000..6155368917a3 --- /dev/null +++ b/net-analyzer/ipsumdump/ipsumdump-1.85.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Simple TCP/IP Dump summarizer/analyzer" +HOMEPAGE="http://read.seas.harvard.edu/~kohler/ipsumdump/" +SRC_URI="http://read.seas.harvard.edu/~kohler/ipsumdump/${P}.tar.gz" + +LICENSE="the-Click-license" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+ipv6 +nanotimestamp" + +RDEPEND="net-libs/libpcap" +DEPEND="${RDEPEND} + dev-lang/perl + dev-libs/expat + sys-apps/texinfo" + +src_configure() { + econf $(use_enable ipv6 ip6) \ + $(use_enable nanotimestamp) +} diff --git a/net-analyzer/ipsumdump/metadata.xml b/net-analyzer/ipsumdump/metadata.xml new file mode 100644 index 000000000000..43ceb8c9a02e --- /dev/null +++ b/net-analyzer/ipsumdump/metadata.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>tomboy64@sina.cn</email> + <name>M.B.</name> + <description>Maintainer, assign bugs to him</description> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <use> + <flag name="nanotimestamp">Enable timestamps with nano-second resolution</flag> + </use> + <longdescription lang="en"> + The ipsumdump program summarizes TCP/IP dump files into a self-describing ASCII format easily readable by humans and programs. The companion ipaggcreate program counts various properties of packet aggregates. + </longdescription> +</pkgmetadata> |