diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-03-23 16:26:58 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-03-23 16:26:58 +0000 |
commit | 327807e868aaa7187c27bca3911444b2840e2784 (patch) | |
tree | f733ee65216884d5b066dc2c14f25762e52d33c9 /net-analyzer/httping | |
parent | Version bump (diff) | |
download | gentoo-2-327807e868aaa7187c27bca3911444b2840e2784.tar.gz gentoo-2-327807e868aaa7187c27bca3911444b2840e2784.tar.bz2 gentoo-2-327807e868aaa7187c27bca3911444b2840e2784.zip |
Version bump.
(Portage version: 2.2.0_alpha169/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-analyzer/httping')
-rw-r--r-- | net-analyzer/httping/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/httping/httping-2.1.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/net-analyzer/httping/ChangeLog b/net-analyzer/httping/ChangeLog index 7e6f26a6b2cd..4fac75bf35c2 100644 --- a/net-analyzer/httping/ChangeLog +++ b/net-analyzer/httping/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/httping # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.96 2013/03/20 18:20:56 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.97 2013/03/23 16:26:58 jer Exp $ + +*httping-2.1 (23 Mar 2013) + + 23 Mar 2013; Jeroen Roovers <jer@gentoo.org> +httping-2.1.ebuild: + Version bump. 20 Mar 2013; Jeroen Roovers <jer@gentoo.org> -httping-1.5.3.ebuild, -httping-1.5.5-r1.ebuild, -files/httping-1.5.5-help.patch, diff --git a/net-analyzer/httping/httping-2.1.ebuild b/net-analyzer/httping/httping-2.1.ebuild new file mode 100644 index 000000000000..e3975380f38f --- /dev/null +++ b/net-analyzer/httping/httping-2.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-2.1.ebuild,v 1.1 2013/03/23 16:26:58 jer Exp $ + +EAPI=5 +inherit eutils toolchain-funcs + +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="~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="debug ssl tfo" + +RDEPEND=" + >=sys-libs/ncurses-5 + ssl? ( dev-libs/openssl ) +" +DEPEND="${RDEPEND}" + +# This would bring in test? ( dev-util/cppcheck ) but unlike +# upstream we should only care about compile/run time testing +RESTRICT="test" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-2.0-flags.patch +} + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + SSL=$(usex ssl) \ + TFO=$(usex tfo) \ + DEBUG=$(usex debug) +} + +src_install() { + dobin httping + doman httping.1 + dodoc readme.txt +} |