summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Walker <ka0ttic@gentoo.org>2005-04-05 11:45:21 +0000
committerAaron Walker <ka0ttic@gentoo.org>2005-04-05 11:45:21 +0000
commit9c0d348204e24f88a377b2b66aafcc60cd6e8984 (patch)
tree8ed38ba94019beb6ce3c5abab7b18b0d25c4d4b4 /net-analyzer/httping
parentNew upstream version and some small housekeeping (diff)
downloadgentoo-2-9c0d348204e24f88a377b2b66aafcc60cd6e8984.tar.gz
gentoo-2-9c0d348204e24f88a377b2b66aafcc60cd6e8984.tar.bz2
gentoo-2-9c0d348204e24f88a377b2b66aafcc60cd6e8984.zip
Version bump for bug 86810.
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-analyzer/httping')
-rw-r--r--net-analyzer/httping/ChangeLog9
-rw-r--r--net-analyzer/httping/Manifest14
-rw-r--r--net-analyzer/httping/files/digest-httping-1.0.11
-rw-r--r--net-analyzer/httping/httping-1.0.1.ebuild32
4 files changed, 43 insertions, 13 deletions
diff --git a/net-analyzer/httping/ChangeLog b/net-analyzer/httping/ChangeLog
index 9ebb593a2e9a..f4affcc6f5a4 100644
--- a/net-analyzer/httping/ChangeLog
+++ b/net-analyzer/httping/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-analyzer/httping
-# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.11 2004/12/01 03:18:55 squinky86 Exp $
+# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.12 2005/04/05 11:45:21 ka0ttic Exp $
+
+*httping-1.0.1 (05 Apr 2005)
+
+ 05 Apr 2005; Aaron Walker <ka0ttic@gentoo.org> +httping-1.0.1.ebuild:
+ Version bump for bug 86810.
30 Nov 2004; Jon Hood <squinky86@gentoo.org> httping-0.0.95.ebuild:
Mark ~hppa and ~amd64.
diff --git a/net-analyzer/httping/Manifest b/net-analyzer/httping/Manifest
index 6ccf12bca930..881751fdf5a8 100644
--- a/net-analyzer/httping/Manifest
+++ b/net-analyzer/httping/Manifest
@@ -1,16 +1,8 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
MD5 cbf5c8619a7775691a16c1e62c2e6737 httping-0.0.95.ebuild 750
+MD5 56cb70b788b0359d7c9d60112fb74342 httping-1.0.1.ebuild 802
MD5 ad4a493ee0b1776ad4d0a4a2105f5992 httping-0.0.94-r1.ebuild 740
-MD5 3ae920143a9816251354538eb2ce0720 ChangeLog 1582
+MD5 f05dd18d1662788229522172e5e14223 ChangeLog 1715
MD5 61da3c68a3ae57136cdc2a17fbaedfaf metadata.xml 223
MD5 ae2b0648bc9a639b7129d5297c8ad680 files/digest-httping-0.0.95 61
+MD5 13c81336e88f4d24d12adb47c9195811 files/digest-httping-1.0.1 60
MD5 e09a4c048a540ff768f9be969e7fa62c files/digest-httping-0.0.94-r1 61
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.2.6 (GNU/Linux)
-
-iD8DBQFBrTgucAgAdbxYsnERAkkyAJ4j1HeYiNDiucVDrPWR3/txgJpPjQCgi28K
-CDXrjLcjXGRB1QsucKCMjDI=
-=UK0Q
------END PGP SIGNATURE-----
diff --git a/net-analyzer/httping/files/digest-httping-1.0.1 b/net-analyzer/httping/files/digest-httping-1.0.1
new file mode 100644
index 000000000000..6b4daef00ca3
--- /dev/null
+++ b/net-analyzer/httping/files/digest-httping-1.0.1
@@ -0,0 +1 @@
+MD5 0288bc37374a71dc45dfcbc2d1dd0f87 httping-1.0.1.tgz 7962
diff --git a/net-analyzer/httping/httping-1.0.1.ebuild b/net-analyzer/httping/httping-1.0.1.ebuild
new file mode 100644
index 000000000000..7bf7bd4366e1
--- /dev/null
+++ b/net-analyzer/httping/httping-1.0.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-1.0.1.ebuild,v 1.1 2005/04/05 11:45:21 ka0ttic Exp $
+
+DESCRIPTION="http protocol ping-like program"
+HOMEPAGE="http://www.vanheusden.com/httping/"
+SRC_URI="http://www.vanheusden.com/${PN}/${P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~ppc64 ~hppa ~amd64"
+IUSE="ssl"
+
+DEPEND=">=sys-libs/ncurses-5"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ sed -i "s|^\(CFLAGS=\)-O2\(.*\)$|\1${CFLAGS} \2|g" Makefile* || \
+ die "sed Makefile failed"
+}
+
+src_compile() {
+ local makefile
+ use ssl || makefile="-f Makefile.nossl"
+ emake ${makefile} || die "make failed"
+}
+
+src_install() {
+ dobin httping || die
+ dodoc readme.txt license.txt
+}