diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-09-21 23:19:08 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-09-21 23:19:08 +0000 |
commit | af08ab16c480c72f29327de35179fcdf3c77a6d0 (patch) | |
tree | 870087dd96eceb0c22278dde81b61a2c669ca3bd /eclass/cvs.eclass | |
parent | Putting under cpp herd, adding Flameeyes as primary maintainer (diff) | |
download | gentoo-2-af08ab16c480c72f29327de35179fcdf3c77a6d0.tar.gz gentoo-2-af08ab16c480c72f29327de35179fcdf3c77a6d0.tar.bz2 gentoo-2-af08ab16c480c72f29327de35179fcdf3c77a6d0.zip |
use epatch #42060
Diffstat (limited to 'eclass/cvs.eclass')
-rw-r--r-- | eclass/cvs.eclass | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/eclass/cvs.eclass b/eclass/cvs.eclass index 1ebd12349025..911b974de058 100644 --- a/eclass/cvs.eclass +++ b/eclass/cvs.eclass @@ -1,15 +1,8 @@ # 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.59 2005/08/13 08:10:53 phreak Exp $ - -# Current Maintainer: Tal Peer <coredumb@gentoo.org> -# Original Author: Dan Armak <danarmak@gentoo.org> - -# SSH auth code by Danny <danny.milo@gmx.net> - -# SSH password authentication support and host key verification -# support by Jeremy Maitin-Shepard <jbms@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.60 2005/09/21 23:19:08 vapier Exp $ +inherit eutils # This eclass provides the generic cvs fetching functions. To use # this from an ebuild, set the `ebuild-configurable settings' as @@ -535,10 +528,7 @@ cvs_src_unpack() { if [ -n "$PATCHES" ]; then debug-print "$FUNCNAME: PATCHES=$PATCHES, S=$S, autopatching" cd "$S" - for x in $PATCHES; do - debug-print "patching from $x" - patch -p0 < "$x" - done + epatch ${PATCHES} # Make sure we don't try to apply patches more than once, # since cvs_src_unpack is usually called several times from # e.g. kde-source_src_unpack |