summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-09-21 23:19:08 +0000
committerMike Frysinger <vapier@gentoo.org>2005-09-21 23:19:08 +0000
commit7a75a85b5bb7e8ae0c29e6049e30c09600d34268 (patch)
tree7949cbd14dd4e3fe546b3295ae12d7952e19cd75 /eclass/cvs.eclass
parentPutting under cpp herd, adding Flameeyes as primary maintainer (diff)
downloadhistorical-7a75a85b5bb7e8ae0c29e6049e30c09600d34268.tar.gz
historical-7a75a85b5bb7e8ae0c29e6049e30c09600d34268.tar.bz2
historical-7a75a85b5bb7e8ae0c29e6049e30c09600d34268.zip
use epatch #42060
Diffstat (limited to 'eclass/cvs.eclass')
-rw-r--r--eclass/cvs.eclass16
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