diff options
author | Jon Portnoy <avenj@gentoo.org> | 2003-03-01 22:55:56 +0000 |
---|---|---|
committer | Jon Portnoy <avenj@gentoo.org> | 2003-03-01 22:55:56 +0000 |
commit | 4f4bb75861889f53b958934255d7265614deee07 (patch) | |
tree | ccf65d3e3aa6381ad32f801820192964a74a1a8f /net-analyzer | |
parent | Latest giFTcurs. (diff) | |
download | gentoo-2-4f4bb75861889f53b958934255d7265614deee07.tar.gz gentoo-2-4f4bb75861889f53b958934255d7265614deee07.tar.bz2 gentoo-2-4f4bb75861889f53b958934255d7265614deee07.zip |
Version bump, latest hping.
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/hping/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/hping/files/digest-hping-2.0.0_rc2 | 1 | ||||
-rw-r--r-- | net-analyzer/hping/hping-2.0.0_rc2.ebuild | 34 |
3 files changed, 41 insertions, 1 deletions
diff --git a/net-analyzer/hping/ChangeLog b/net-analyzer/hping/ChangeLog index c6a70b6c9173..a752e5681cc3 100644 --- a/net-analyzer/hping/ChangeLog +++ b/net-analyzer/hping/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/hping # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hping/ChangeLog,v 1.5 2003/02/15 07:43:47 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hping/ChangeLog,v 1.6 2003/03/01 22:55:56 avenj Exp $ + +*hping-2.0.0_rc2 (03 March 2003) + + 03 March 2003; Jon Portnoy <avenj@gentoo.org> hping-2.0.0_rc2.ebuild : + Version bump. 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords diff --git a/net-analyzer/hping/files/digest-hping-2.0.0_rc2 b/net-analyzer/hping/files/digest-hping-2.0.0_rc2 new file mode 100644 index 000000000000..30bfb232cf07 --- /dev/null +++ b/net-analyzer/hping/files/digest-hping-2.0.0_rc2 @@ -0,0 +1 @@ +MD5 f9ab1f84ec89f2a1c428988231d554b0 hping2.0.0-rc2.tar.gz 100501 diff --git a/net-analyzer/hping/hping-2.0.0_rc2.ebuild b/net-analyzer/hping/hping-2.0.0_rc2.ebuild new file mode 100644 index 000000000000..47eccd0719ad --- /dev/null +++ b/net-analyzer/hping/hping-2.0.0_rc2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hping/hping-2.0.0_rc2.ebuild,v 1.1 2003/03/01 22:55:56 avenj 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-rc2 +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-rc2.tar.gz" +HOMEPAGE="http://www.hping.org" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~sparc ~sparc64" + +DEPEND="net-libs/libpcap" + +src_compile() { + ./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 + +} |