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 | f64762f8952381dc77caf67bf0340f0da7c98e6f (patch) | |
tree | 7e94b3c2025e93536415d1c8b3e15171fd48e96c /net-analyzer/echoping/echoping-6.0.2-r1.ebuild | |
parent | Enable nextinfo not nextinf (bug #281623) (diff) | |
download | gentoo-2-f64762f8952381dc77caf67bf0340f0da7c98e6f.tar.gz gentoo-2-f64762f8952381dc77caf67bf0340f0da7c98e6f.tar.bz2 gentoo-2-f64762f8952381dc77caf67bf0340f0da7c98e6f.zip |
Fix building with >=sys-devel/libtool-2 (bug #279589).
(Portage version: 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 } |