summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2013-05-13 19:05:12 +0000
committerJeroen Roovers <jer@gentoo.org>2013-05-13 19:05:12 +0000
commite2412e902d9c72bc33466a7206ecd5f9193677c4 (patch)
tree627e0a56bb1a06a6633ed209ea672e7fb1fc7678 /net-analyzer
parentVersion bump, drop old (diff)
downloadgentoo-2-e2412e902d9c72bc33466a7206ecd5f9193677c4.tar.gz
gentoo-2-e2412e902d9c72bc33466a7206ecd5f9193677c4.tar.bz2
gentoo-2-e2412e902d9c72bc33466a7206ecd5f9193677c4.zip
Obsolete.
(Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/httping/ChangeLog5
-rw-r--r--net-analyzer/httping/httping-2.3.ebuild50
2 files changed, 4 insertions, 51 deletions
diff --git a/net-analyzer/httping/ChangeLog b/net-analyzer/httping/ChangeLog
index 1e6775554e66..4fb52a9393ce 100644
--- a/net-analyzer/httping/ChangeLog
+++ b/net-analyzer/httping/ChangeLog
@@ -1,6 +1,9 @@
# 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.102 2013/05/09 17:39:49 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/ChangeLog,v 1.103 2013/05/13 19:05:12 jer Exp $
+
+ 13 May 2013; Jeroen Roovers <jer@gentoo.org> -httping-2.3.ebuild:
+ Obsolete.
*httping-2.3.1 (09 May 2013)
diff --git a/net-analyzer/httping/httping-2.3.ebuild b/net-analyzer/httping/httping-2.3.ebuild
deleted file mode 100644
index 25867e06e7c2..000000000000
--- a/net-analyzer/httping/httping-2.3.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.3.ebuild,v 1.1 2013/05/07 14:45:54 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 fftw ncurses ssl tfo"
-
-RDEPEND="
- fftw? ( sci-libs/fftw:3.0 )
- ncurses? ( >=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.2.1-flags.patch
-}
-
-src_configure() {
- # not an autotools script
- echo > makefile.inc || die
-}
-
-src_compile() {
- emake \
- CC="$(tc-getCC)" \
- FW=$(usex fftw) \
- DEBUG=$(usex debug) \
- NC=$(usex ncurses) \
- SSL=$(usex ssl) \
- TFO=$(usex tfo)
-}
-
-src_install() {
- dobin httping
- doman httping.1
-}