summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcelo Góes <vanquirius@gentoo.org>2006-02-25 23:50:20 +0000
committerMarcelo Góes <vanquirius@gentoo.org>2006-02-25 23:50:20 +0000
commitd3d93d32e9096cd8879b98af03c5312a7339310f (patch)
tree14a09ee2ca4cd49b4ba55f8a8cb5e759e5a68da0 /net-analyzer/echoping/echoping-5.2.0.ebuild
parentRemove old ebuild. Do patching work in src_unpack, do not install COPYING/INS... (diff)
downloadgentoo-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/echoping-5.2.0.ebuild')
-rw-r--r--net-analyzer/echoping/echoping-5.2.0.ebuild14
1 files changed, 7 insertions, 7 deletions
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
}