summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAli Polatel <hawking@gentoo.org>2007-07-11 10:51:20 +0000
committerAli Polatel <hawking@gentoo.org>2007-07-11 10:51:20 +0000
commit96c659061ad47cfd9a3ff60a99bf942d2ef44b9e (patch)
tree216d435fe27b3b23fda3a8812122448181e558e7 /net-analyzer/httping
parentbackport bump - security bug #184934 (diff)
downloadgentoo-2-96c659061ad47cfd9a3ff60a99bf942d2ef44b9e.tar.gz
gentoo-2-96c659061ad47cfd9a3ff60a99bf942d2ef44b9e.tar.bz2
gentoo-2-96c659061ad47cfd9a3ff60a99bf942d2ef44b9e.zip
version bump (bug 184715), drop old
(Portage version: 2.1.3_rc7)
Diffstat (limited to 'net-analyzer/httping')
-rw-r--r--net-analyzer/httping/files/digest-httping-1.2.13
-rw-r--r--net-analyzer/httping/files/digest-httping-1.2.43
-rw-r--r--net-analyzer/httping/httping-1.2.4.ebuild (renamed from net-analyzer/httping/httping-1.2.1.ebuild)22
3 files changed, 12 insertions, 16 deletions
diff --git a/net-analyzer/httping/files/digest-httping-1.2.1 b/net-analyzer/httping/files/digest-httping-1.2.1
deleted file mode 100644
index bb3456ff8d9e..000000000000
--- a/net-analyzer/httping/files/digest-httping-1.2.1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 71a5d0d3f53867d0c990a608d7d679bd httping-1.2.1.tgz 12789
-RMD160 e150f3f369e5d5ea114f58ab725e41fce81b92ae httping-1.2.1.tgz 12789
-SHA256 53c243de88023f398a7ff76b99b2b9430f53222864d30b33a3f674b3c8b29317 httping-1.2.1.tgz 12789
diff --git a/net-analyzer/httping/files/digest-httping-1.2.4 b/net-analyzer/httping/files/digest-httping-1.2.4
new file mode 100644
index 000000000000..ddafbc2baebe
--- /dev/null
+++ b/net-analyzer/httping/files/digest-httping-1.2.4
@@ -0,0 +1,3 @@
+MD5 5a4c9ce45dc0f7c10a43cc948a0980f4 httping-1.2.4.tgz 13162
+RMD160 66d8d57a2166df2091ab1e2d0271d0dd9bb7303c httping-1.2.4.tgz 13162
+SHA256 774e22e275f235305a72e990bc7e8736afa2ab65c27615c9e8d0d8c38334262b httping-1.2.4.tgz 13162
diff --git a/net-analyzer/httping/httping-1.2.1.ebuild b/net-analyzer/httping/httping-1.2.4.ebuild
index 8b1e9f7f6795..6251b9f52480 100644
--- a/net-analyzer/httping/httping-1.2.1.ebuild
+++ b/net-analyzer/httping/httping-1.2.4.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-1.2.1.ebuild,v 1.5 2006/12/04 21:07:48 eroyf Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-1.2.4.ebuild,v 1.1 2007/07/11 10:51:20 hawking Exp $
inherit toolchain-funcs
@@ -10,24 +10,20 @@ SRC_URI="http://www.vanheusden.com/${PN}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~hppa mips ~ppc ppc64 x86"
+KEYWORDS="~amd64 ~hppa ~mips ~ppc ~ppc64 ~x86"
IUSE="ssl"
-DEPEND=">=sys-libs/ncurses-5"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-}
+DEPEND=">=sys-libs/ncurses-5
+ ssl? ( dev-libs/openssl )"
src_compile() {
local makefile
use ssl || makefile="-f Makefile.nossl"
- export CC="$(tc-getCC)"
- emake ${makefile} || die "make failed"
+ emake CC="$(tc-getCC)" ${makefile} || die "emake failed"
}
src_install() {
- dobin httping || die
- dodoc readme.txt
+ dobin httping || die "dobin failed"
+ doman httping.1 || die "doman failed"
+ dodoc readme.txt || die "dodoc failed"
}