summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Bangert <bangert@gentoo.org>2002-06-28 11:54:12 +0000
committerThilo Bangert <bangert@gentoo.org>2002-06-28 11:54:12 +0000
commit51193a79fa88f5eab19efb25824fd86408698657 (patch)
treeff468f7f0381c9ae5eae540f69813dc4d8ba6429 /net-analyzer/hping
parentsmall fix0rs (diff)
downloadgentoo-2-51193a79fa88f5eab19efb25824fd86408698657.tar.gz
gentoo-2-51193a79fa88f5eab19efb25824fd86408698657.tar.bz2
gentoo-2-51193a79fa88f5eab19efb25824fd86408698657.zip
moving 13 packages from net-misc to net-analyzer - import
Diffstat (limited to 'net-analyzer/hping')
-rw-r--r--net-analyzer/hping/ChangeLog16
-rw-r--r--net-analyzer/hping/files/digest-hping-2.0.0_rc11
-rw-r--r--net-analyzer/hping/hping-2.0.0_rc1.ebuild34
3 files changed, 51 insertions, 0 deletions
diff --git a/net-analyzer/hping/ChangeLog b/net-analyzer/hping/ChangeLog
new file mode 100644
index 000000000000..235ed536c0c7
--- /dev/null
+++ b/net-analyzer/hping/ChangeLog
@@ -0,0 +1,16 @@
+# ChangeLog for net-analyzer/hping
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hping/ChangeLog,v 1.1 2002/06/28 11:54:12 bangert Exp $
+
+ 28 Jun 2002; Thilo Bangert <bangert@gentoo.org> :
+ moved to net-analyzer - added SLOT
+
+*hping-2.0.0_rc1 (1 Feb 2002)
+
+ 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
+
+ Added initial ChangeLog which should be updated whenever the package is
+ updated in any way. This changelog is targetted to users. This means that the
+ comments should well explained and written in clean English. The details about
+ writing correct changelogs are explained in the skel.ChangeLog file which you
+ can find in the root directory of the portage repository.
diff --git a/net-analyzer/hping/files/digest-hping-2.0.0_rc1 b/net-analyzer/hping/files/digest-hping-2.0.0_rc1
new file mode 100644
index 000000000000..4041316f832c
--- /dev/null
+++ b/net-analyzer/hping/files/digest-hping-2.0.0_rc1
@@ -0,0 +1 @@
+MD5 f915af241bfac510d1a51b7113503a17 hping2.0.0-rc1.tar.gz 90496
diff --git a/net-analyzer/hping/hping-2.0.0_rc1.ebuild b/net-analyzer/hping/hping-2.0.0_rc1.ebuild
new file mode 100644
index 000000000000..c56e695381e2
--- /dev/null
+++ b/net-analyzer/hping/hping-2.0.0_rc1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2000 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# Author Bruce A. Locke <blocke@shivan.org>
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hping/hping-2.0.0_rc1.ebuild,v 1.1 2002/06/28 11:54:12 bangert Exp $
+
+# NOTE: author couldn't make up mind over tarball names, directory names,
+# etc... hense the need to hardcode S and SRC_URI :(
+S=${WORKDIR}/hping2
+DESCRIPTION="hping is a command-line oriented TCP/IP packet assembler/analyzer whose interface is inspired by the unix ping command"
+SRC_URI="http://www.hping.org/hping2.0.0-rc1.tar.gz"
+HOMEPAGE="http://www.hping.org"
+SLOT="0"
+
+DEPEND="net-libs/libpcap"
+
+src_compile() {
+ cd ${S}
+
+ ./configure || die
+ make CCOPT="$CFLAGS" || die
+ make strip
+}
+
+src_install () {
+ cd ${S}
+
+ dodir /usr/sbin
+ dosbin hping2
+ dosym /usr/sbin/hping2 /usr/sbin/hping
+
+ doman docs/hping2.8
+ dodoc INSTALL KNOWN-BUGS MIRRORS NEWS README TODO AUTHORS BUGS CHANGES COPYING
+
+}