summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-analyzer/httping/httping-1.2.6.ebuild')
-rw-r--r--net-analyzer/httping/httping-1.2.6.ebuild29
1 files changed, 0 insertions, 29 deletions
diff --git a/net-analyzer/httping/httping-1.2.6.ebuild b/net-analyzer/httping/httping-1.2.6.ebuild
deleted file mode 100644
index 75e132a050e9..000000000000
--- a/net-analyzer/httping/httping-1.2.6.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/httping/httping-1.2.6.ebuild,v 1.4 2008/08/27 12:03:16 gentoofan23 Exp $
-
-inherit 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="ssl"
-
-DEPEND=">=sys-libs/ncurses-5
- ssl? ( dev-libs/openssl )"
-
-src_compile() {
- local makefile
- use ssl || makefile="-f Makefile.nossl"
- emake CC="$(tc-getCC)" ${makefile} || die "emake failed"
-}
-
-src_install() {
- dobin httping || die "dobin failed"
- doman httping.1 || die "doman failed"
- dodoc readme.txt || die "dodoc failed"
-}