diff options
author | 2006-02-25 23:50:20 +0000 | |
---|---|---|
committer | 2006-02-25 23:50:20 +0000 | |
commit | d3d93d32e9096cd8879b98af03c5312a7339310f (patch) | |
tree | 14a09ee2ca4cd49b4ba55f8a8cb5e759e5a68da0 /net-analyzer/echoping | |
parent | Remove old ebuild. Do patching work in src_unpack, do not install COPYING/INS... (diff) | |
download | gentoo-2-d3d93d32e9096cd8879b98af03c5312a7339310f.tar.gz gentoo-2-d3d93d32e9096cd8879b98af03c5312a7339310f.tar.bz2 gentoo-2-d3d93d32e9096cd8879b98af03c5312a7339310f.zip |
Add quotes to S, FILESDIR and D, use make install instead of emake install, do not install COPYING.
(Portage version: 2.1_pre4-r1 vanquishing potions will fly)
Diffstat (limited to 'net-analyzer/echoping')
-rw-r--r-- | net-analyzer/echoping/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/echoping/echoping-5.2.0.ebuild | 14 |
2 files changed, 13 insertions, 9 deletions
diff --git a/net-analyzer/echoping/ChangeLog b/net-analyzer/echoping/ChangeLog index 50d3a8a63157..33a0f6ad3229 100644 --- a/net-analyzer/echoping/ChangeLog +++ b/net-analyzer/echoping/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/echoping -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/ChangeLog,v 1.4 2005/05/27 19:03:15 angusyoung Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/ChangeLog,v 1.5 2006/02/25 23:50:20 vanquirius Exp $ + + 26 Feb 2006; Marcelo Goes <vanquirius@gentoo.org> echoping-5.2.0.ebuild: + Add quotes to S, FILESDIR and D, use make install instead of emake install, + do not install COPYING. 27 May 2005; Otavio Piske <angusyoung@gentoo.org> echoping-5.2.0.ebuild: Marked as x86. diff --git a/net-analyzer/echoping/echoping-5.2.0.ebuild b/net-analyzer/echoping/echoping-5.2.0.ebuild index 81b52fe4e620..98bc07ff999e 100644 --- a/net-analyzer/echoping/echoping-5.2.0.ebuild +++ b/net-analyzer/echoping/echoping-5.2.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/echoping-5.2.0.ebuild,v 1.4 2005/05/27 19:03:15 angusyoung Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/echoping/echoping-5.2.0.ebuild,v 1.5 2006/02/25 23:50:20 vanquirius Exp $ inherit eutils @@ -20,12 +20,12 @@ DEPEND="gnutls? ( >=net-libs/gnutls-1.0.17 ) src_unpack() { unpack ${A} - cd ${S} + cd "${S}" if ! use http ; then # This patch defines maxtoread eventhough http is not # enabled. This avoids an error in readline.c:56. - epatch ${FILESDIR}/maxtoread-${PV}.patch + epatch "${FILESDIR}"/maxtoread-${PV}.patch fi } @@ -45,8 +45,8 @@ src_compile() { } src_install() { - emake install DESTDIR=${D} || die + make install DESTDIR="${D}" || die - # They are not installed by emake install - dodoc README AUTHORS ChangeLog COPYING DETAILS NEWS TODO + # They are not installed by make install + dodoc README AUTHORS ChangeLog DETAILS NEWS TODO } |