From 6cfb66f63bed2c2270cecb56daf90a5d1117f4d6 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 21 Sep 2005 23:22:56 +0000 Subject: only DEPEND on sudo if we use it #79196 by Emil Beinroth --- eclass/cvs.eclass | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'eclass/cvs.eclass') diff --git a/eclass/cvs.eclass b/eclass/cvs.eclass index 911b974de058..8a952564f26d 100644 --- a/eclass/cvs.eclass +++ b/eclass/cvs.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.60 2005/09/21 23:19:08 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.61 2005/09/21 23:22:56 vapier Exp $ inherit eutils @@ -150,7 +150,9 @@ inherit eutils # add cvs to deps # ssh is used for ext auth # sudo is used to run as a specified user -DEPEND="dev-util/cvs app-admin/sudo" +DEPEND="dev-util/cvs" + +[ -n "$ECVS_RUNAS" ] && DEPEND="$DEPEND app-admin/sudo" if [ "$ECVS_AUTH" == "ext" ]; then #default to ssh -- cgit v1.2.3-65-gdbad