summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Portnoy <avenj@gentoo.org>2003-11-20 19:49:03 +0000
committerJon Portnoy <avenj@gentoo.org>2003-11-20 19:49:03 +0000
commitc9deb2e5de1466ec638131d4a62415f5617b10ac (patch)
tree4a32efb78e138af4d1751ed75d236cdf43c3d8b7 /net-analyzer/hping
parentinitial import (diff)
downloadhistorical-c9deb2e5de1466ec638131d4a62415f5617b10ac.tar.gz
historical-c9deb2e5de1466ec638131d4a62415f5617b10ac.tar.bz2
historical-c9deb2e5de1466ec638131d4a62415f5617b10ac.zip
Build fixes, bug 33495
Diffstat (limited to 'net-analyzer/hping')
-rw-r--r--net-analyzer/hping/ChangeLog5
-rw-r--r--net-analyzer/hping/Manifest4
-rw-r--r--net-analyzer/hping/hping-2.0.0_rc2.ebuild20
3 files changed, 17 insertions, 12 deletions
diff --git a/net-analyzer/hping/ChangeLog b/net-analyzer/hping/ChangeLog
index 9aa8a355ea6f..7c677f206319 100644
--- a/net-analyzer/hping/ChangeLog
+++ b/net-analyzer/hping/ChangeLog
@@ -1,6 +1,9 @@
# 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.7 2003/08/03 15:23:54 gmsoft Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hping/ChangeLog,v 1.8 2003/11/20 19:49:00 avenj Exp $
+
+ 20 Nov 2003; Jon Portnoy <avenj@gentoo.org> hping-2.0.0_rc2.ebuild :
+ Build fixes from trauma@web.de, bug #33495.
*hping-2.0.0_rc2 (03 March 2003)
diff --git a/net-analyzer/hping/Manifest b/net-analyzer/hping/Manifest
index 9169bd94ce16..52cbbe3b89aa 100644
--- a/net-analyzer/hping/Manifest
+++ b/net-analyzer/hping/Manifest
@@ -1,6 +1,6 @@
-MD5 85e2305a2f48e2640d1217be2c9aa63a ChangeLog 1168
+MD5 b5bfa816a3d4d64425fbed29d7bce309 ChangeLog 1283
MD5 fe0c4b649fc135e8fe6cf95c9868dda4 hping-2.0.0_rc1.ebuild 961
-MD5 fdab4a3968e6320d83e33320d025e7bf hping-2.0.0_rc2.ebuild 969
+MD5 f3d7c532668f2bb3ef87a6dd3e05f7ad hping-2.0.0_rc2.ebuild 829
MD5 75ed528e33e83ac57ce987793d740b5c metadata.xml 245
MD5 704f5fd266e6ab22f0eed2acb3aa621b files/digest-hping-2.0.0_rc1 65
MD5 eef05cbe61a0adf5b65aced19f629085 files/digest-hping-2.0.0_rc2 66
diff --git a/net-analyzer/hping/hping-2.0.0_rc2.ebuild b/net-analyzer/hping/hping-2.0.0_rc2.ebuild
index c6ca4e048faa..c59859e53884 100644
--- a/net-analyzer/hping/hping-2.0.0_rc2.ebuild
+++ b/net-analyzer/hping/hping-2.0.0_rc2.ebuild
@@ -1,24 +1,27 @@
# Copyright 1999-2003 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.6 2003/09/05 23:44:49 msterret Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/hping/hping-2.0.0_rc2.ebuild,v 1.7 2003/11/20 19:49:00 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"
+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"
+KEYWORDS="x86 ~sparc hppa ia64 ~amd64"
DEPEND="net-libs/libpcap"
src_compile() {
./configure || die
- make CCOPT="$CFLAGS" || die
- make strip
+
+ if [ `use debug` ]
+ then
+ make CCOPT="${CFLAGS}" || die
+ else
+ make CCOPT="${CFLAGS}" || die
+ fi
}
src_install () {
@@ -29,6 +32,5 @@ src_install () {
dosym /usr/sbin/hping2 /usr/sbin/hping
doman docs/hping2.8
- dodoc INSTALL KNOWN-BUGS MIRRORS NEWS README TODO AUTHORS BUGS CHANGES COPYING
-
+ dodoc INSTALL KNOWN-BUGS NEWS README TODO AUTHORS BUGS CHANGES COPYING
}