diff options
author | Markus Ullmann <jokey@gentoo.org> | 2007-09-06 16:42:09 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2007-09-06 16:42:09 +0000 |
commit | 35319005c50412f70d88dd64794a34e1cffe2a83 (patch) | |
tree | 6910bc5ad9068d8365d65ac5a644e328bb7c48b3 /net-analyzer/hping/hping-2.0.0_rc2-r1.ebuild | |
parent | Fixed comparision in tape permission rule, thanks to Polynomial-C from #gento... (diff) | |
download | historical-35319005c50412f70d88dd64794a34e1cffe2a83.tar.gz historical-35319005c50412f70d88dd64794a34e1cffe2a83.tar.bz2 historical-35319005c50412f70d88dd64794a34e1cffe2a83.zip |
Cleanup
Package-Manager: portage-2.1.3.7
Diffstat (limited to 'net-analyzer/hping/hping-2.0.0_rc2-r1.ebuild')
-rw-r--r-- | net-analyzer/hping/hping-2.0.0_rc2-r1.ebuild | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/net-analyzer/hping/hping-2.0.0_rc2-r1.ebuild b/net-analyzer/hping/hping-2.0.0_rc2-r1.ebuild deleted file mode 100644 index 2a7a8bd91550..000000000000 --- a/net-analyzer/hping/hping-2.0.0_rc2-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hping/hping-2.0.0_rc2-r1.ebuild,v 1.12 2005/01/29 05:12:51 dragonheart Exp $ - -inherit eutils - -S=${WORKDIR}/hping2-rc2 -DESCRIPTION="A ping-like TCP/IP packet assembler/analyzer." -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 hppa ia64 amd64 alpha ppc" - -DEPEND="virtual/libpcap" -IUSE="debug" - -src_compile() { - epatch ${FILESDIR}/wlan-header-fix.patch - - ./configure || die - - if use debug - then - make CCOPT="${CFLAGS}" || die - else - make CCOPT="${CFLAGS}" DEBUG="" || die - fi -} - -src_install () { - cd ${S} - - dodir /usr/sbin - dosbin hping2 - dosym /usr/sbin/hping2 /usr/sbin/hping - - doman docs/hping2.8 - dodoc INSTALL KNOWN-BUGS NEWS README TODO AUTHORS BUGS CHANGES COPYING -} |