summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Popov <pinkbyte@gentoo.org>2012-10-26 08:43:21 +0000
committerSergey Popov <pinkbyte@gentoo.org>2012-10-26 08:43:21 +0000
commitdf009c70a24225d56d05cf0a63c9d8adaf9a837d (patch)
treee5f51fa1cf6af34e5aaeac57f894ad3f5d2ba626 /net-analyzer
parent0.9.4 version bump. (diff)
downloadgentoo-2-df009c70a24225d56d05cf0a63c9d8adaf9a837d.tar.gz
gentoo-2-df009c70a24225d56d05cf0a63c9d8adaf9a837d.tar.bz2
gentoo-2-df009c70a24225d56d05cf0a63c9d8adaf9a837d.zip
Drop old revision
(Portage version: 2.2.0_alpha141/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/echoping/ChangeLog7
-rw-r--r--net-analyzer/echoping/echoping-6.0.2.ebuild55
2 files changed, 5 insertions, 57 deletions
diff --git a/net-analyzer/echoping/ChangeLog b/net-analyzer/echoping/ChangeLog
index 24ebc4fb1c55..975dd5dfca43 100644
--- a/net-analyzer/echoping/ChangeLog
+++ b/net-analyzer/echoping/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-analyzer/echoping
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/ChangeLog,v 1.23 2010/06/17 20:28:33 patrick Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/ChangeLog,v 1.24 2012/10/26 08:43:21 pinkbyte Exp $
+
+ 26 Oct 2012; Sergey Popov <pinkbyte@gentoo.org> -echoping-6.0.2.ebuild:
+ Drop old revision
17 Jun 2010; Patrick Lauer <patrick@gentoo.org> echoping-6.0.2.ebuild,
echoping-6.0.2-r1.ebuild:
diff --git a/net-analyzer/echoping/echoping-6.0.2.ebuild b/net-analyzer/echoping/echoping-6.0.2.ebuild
deleted file mode 100644
index 3fcbf544029b..000000000000
--- a/net-analyzer/echoping/echoping-6.0.2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/echoping-6.0.2.ebuild,v 1.7 2010/06/17 20:28:33 patrick Exp $
-
-inherit eutils
-
-DESCRIPTION="echoping is a small program to test performances of remote servers"
-HOMEPAGE="http://echoping.sourceforge.net/"
-SRC_URI="mirror://sourceforge/echoping/${P}.tar.gz"
-LICENSE="GPL-2"
-
-SLOT="0"
-KEYWORDS="~amd64 x86"
-IUSE="gnutls http icp idn priority smtp ssl tos postgres ldap"
-RESTRICT="test"
-
-DEPEND="gnutls? ( >=net-libs/gnutls-1.0.17 )
- ssl? ( >=dev-libs/openssl-0.9.7d )
- idn? ( net-dns/libidn )
- postgres? ( dev-db/postgresql-base )
- ldap? ( net-nds/openldap )"
-
-src_compile() {
- local my_ssl_conf
- if use gnutls; then
- if use ssl; then
- ewarn "You've enabled both ssl and gnutls USE flags but ${PN} can"
- ewarn "not be built with both, see bug #141782. Using gnutls only."
- fi
- my_ssl_conf="${myconf} $(use_with gnutls)"
- elif use ssl; then
- my_ssl_conf="${myconf} $(use_with ssl)"
- fi
-
- econf \
- --config-cache \
- --disable-ttcp \
- ${my_ssl_conf} \
- $(use_enable http) \
- $(use_enable icp) \
- $(use_with idn libidn) \
- $(use_enable smtp) \
- $(use_enable tos) \
- $(use_enable priority) \
- || die "econf failed"
-
- emake || die "emake failed"
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die "emake install failed"
-
- # They are not installed by make install
- dodoc README AUTHORS ChangeLog DETAILS NEWS TODO
-}