diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-09-14 22:26:17 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-09-14 22:26:17 +0000 |
commit | 76052b36a7b77bf6beba0f19593645cd2cbe37a9 (patch) | |
tree | 29588acc3b0d62f44d4de42ae5cb20add3aff054 /net-analyzer/echoping/echoping-6.0.2-r1.ebuild | |
parent | Enable nextinfo not nextinf (bug #281623) (diff) | |
download | historical-76052b36a7b77bf6beba0f19593645cd2cbe37a9.tar.gz historical-76052b36a7b77bf6beba0f19593645cd2cbe37a9.tar.bz2 historical-76052b36a7b77bf6beba0f19593645cd2cbe37a9.zip |
Fix building with >=sys-devel/libtool-2 (bug #279589).
Package-Manager: portage-14273-svn/cvs/Linux x86_64
Diffstat (limited to 'net-analyzer/echoping/echoping-6.0.2-r1.ebuild')
-rw-r--r-- | net-analyzer/echoping/echoping-6.0.2-r1.ebuild | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/net-analyzer/echoping/echoping-6.0.2-r1.ebuild b/net-analyzer/echoping/echoping-6.0.2-r1.ebuild index cee8ea8a6cc1..13a239334e07 100644 --- a/net-analyzer/echoping/echoping-6.0.2-r1.ebuild +++ b/net-analyzer/echoping/echoping-6.0.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 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-r1.ebuild,v 1.2 2009/07/29 03:23:02 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/echoping-6.0.2-r1.ebuild,v 1.3 2009/09/14 22:26:17 arfrever Exp $ EAPI="2" @@ -16,20 +16,25 @@ KEYWORDS="~amd64 ~x86" IUSE="gnutls http icp idn priority smtp ssl tos postgres ldap" RESTRICT="test" -DEPEND="gnutls? ( >=net-libs/gnutls-1.0.17 ) +RDEPEND="gnutls? ( >=net-libs/gnutls-1.0.17 ) ssl? ( >=dev-libs/openssl-0.9.7d ) idn? ( net-dns/libidn ) postgres? ( virtual/postgresql-base ) ldap? ( net-nds/openldap )" +DEPEND="${RDEPEND} + >=sys-devel/libtool-2" src_prepare() { # bug 279525: epatch "${FILESDIR}/${P}-gnutls.patch" + + rm -f ltmain.sh + cp /usr/share/libtool/config/ltmain.sh . local i for i in . plugins/ plugins/*/; do - cd "${i}" + pushd "${i}" > /dev/null eautoreconf - cd "${S}" + popd > /dev/null done } |