# Copyright 1999-2008 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.3 2008/01/26 10:36:52 pva 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 )" 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} could" 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 }