diff options
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/echoping/ChangeLog | 7 | ||||
-rw-r--r-- | net-analyzer/echoping/echoping-6.0.1.ebuild | 52 | ||||
-rw-r--r-- | net-analyzer/echoping/files/digest-echoping-6.0.1 | 3 |
3 files changed, 61 insertions, 1 deletions
diff --git a/net-analyzer/echoping/ChangeLog b/net-analyzer/echoping/ChangeLog index ca4bd7d3e91a..6930f00f2d40 100644 --- a/net-analyzer/echoping/ChangeLog +++ b/net-analyzer/echoping/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-analyzer/echoping # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/ChangeLog,v 1.8 2007/02/01 21:44:37 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/ChangeLog,v 1.9 2007/04/12 19:32:37 jokey Exp $ + +*echoping-6.0.1 (12 Apr 2007) + + 12 Apr 2007; Markus Ullmann <jokey@gentoo.org> +echoping-6.0.1.ebuild: + Version bump wrt bug #172453 thanks to Stephane Bortzmeyer 01 Feb 2007; Markus Ullmann <jokey@gentoo.org> echoping-5.2.0.ebuild: emake > make diff --git a/net-analyzer/echoping/echoping-6.0.1.ebuild b/net-analyzer/echoping/echoping-6.0.1.ebuild new file mode 100644 index 000000000000..076e5aa8b1f5 --- /dev/null +++ b/net-analyzer/echoping/echoping-6.0.1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/echoping-6.0.1.ebuild,v 1.1 2007/04/12 19:32:37 jokey 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" + +DEPEND="gnutls? ( >=net-libs/gnutls-1.0.17 ) + ssl? ( >=dev-libs/openssl-0.9.7d ) + idn? ( net-dns/libidn ) + postgres? ( dev-db/postgresql ) + ldap? ( net-nds/openldap )" + +pkg_setup() { + # bug 141782 - conflicting USE flags - ssl and gnutls + if use ssl && use gnutls ; then + eerror "You cannot emerge net-analyzer/echoping with both" + eerror "ssl and gnutls USE flags set. Please choose one." + die "echoping cannot use both ssl and gnutls at once" + fi +} + +src_compile() { + econf \ + --config-cache \ + --disable-ttcp \ + $(use_with gnutls) \ + $(use_enable http) \ + $(use_enable icp) \ + $(use_with idn libidn) \ + $(use_enable smtp) \ + $(use_enable tos) \ + $(use_enable priority) \ + $(use_with ssl) || 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 +} diff --git a/net-analyzer/echoping/files/digest-echoping-6.0.1 b/net-analyzer/echoping/files/digest-echoping-6.0.1 new file mode 100644 index 000000000000..7093df24d0c7 --- /dev/null +++ b/net-analyzer/echoping/files/digest-echoping-6.0.1 @@ -0,0 +1,3 @@ +MD5 eb1da53df8e632446c805ad5962be13d echoping-6.0.1.tar.gz 1814035 +RMD160 28413bb966d0fdee3db4a249543061dc7beeab4c echoping-6.0.1.tar.gz 1814035 +SHA256 b23b7ad6669dc825f830659968591e7c199b9f09862802e94ac564628fad82a4 echoping-6.0.1.tar.gz 1814035 |