diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-02-03 02:13:49 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-02-03 02:13:49 +0000 |
commit | a6d3b8a20e974fa6c5b151435bd3f60b7c8cfa21 (patch) | |
tree | 3087de21c1af5be4cfcb15bd0d72e526bb5eceae /net-analyzer/hunt | |
parent | initial ebuild #39949 (diff) | |
download | historical-a6d3b8a20e974fa6c5b151435bd3f60b7c8cfa21.tar.gz historical-a6d3b8a20e974fa6c5b151435bd3f60b7c8cfa21.tar.bz2 historical-a6d3b8a20e974fa6c5b151435bd3f60b7c8cfa21.zip |
initial ebuild #40123
Diffstat (limited to 'net-analyzer/hunt')
-rw-r--r-- | net-analyzer/hunt/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/hunt/files/digest-hunt-1.5 | 1 | ||||
-rw-r--r-- | net-analyzer/hunt/hunt-1.5.ebuild | 29 |
3 files changed, 38 insertions, 0 deletions
diff --git a/net-analyzer/hunt/ChangeLog b/net-analyzer/hunt/ChangeLog new file mode 100644 index 000000000000..36a762138210 --- /dev/null +++ b/net-analyzer/hunt/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for net-analyzer/hunt +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hunt/ChangeLog,v 1.1 2004/02/03 02:13:49 vapier Exp $ + +*hunt-1.5 (02 Feb 2004) + + 02 Feb 2004; Mike Frysinger <vapier@gentoo.org> : + Initial import. Ebuild submitted by Diego Garcia #40123. diff --git a/net-analyzer/hunt/files/digest-hunt-1.5 b/net-analyzer/hunt/files/digest-hunt-1.5 new file mode 100644 index 000000000000..78bd434d0aff --- /dev/null +++ b/net-analyzer/hunt/files/digest-hunt-1.5 @@ -0,0 +1 @@ +MD5 5a8886784d1668a8518d5562bfd01ae7 hunt-1.5.tgz 99241 diff --git a/net-analyzer/hunt/hunt-1.5.ebuild b/net-analyzer/hunt/hunt-1.5.ebuild new file mode 100644 index 000000000000..32e97dfc12b1 --- /dev/null +++ b/net-analyzer/hunt/hunt-1.5.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hunt/hunt-1.5.ebuild,v 1.1 2004/02/03 02:13:49 vapier Exp $ + +DESCRIPTION="tool for checking well known weaknesses in the TCP/IP protocol" +HOMEPAGE="http://www.gncz.cz/kra/index.html" +SRC_URI="http://lin.fsid.cvut.cz/~kra/hunt/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND="virtual/glibc" + +src_unpack() { + unpack ${A} + cd ${S} + sed -i "s:-O2 -g:${CFLAGS}:" Makefile +} + +src_compile() { + emake || die +} + +src_install() { + dobin hunt + doman man/hunt.1 + dodoc CHANGES README* TODO tpsetup/transproxy +} |