summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2002-10-24 18:38:39 +0000
committerDan Armak <danarmak@gentoo.org>2002-10-24 18:38:39 +0000
commit2b1dafe9c0ec0018e9e2b4e8674269784235399f (patch)
tree63667b72f05bf61dfac01b9566f81c43d644ad9d /eclass/kde-patch.eclass
parentadded dependency on kde-base, fixes #9402 (diff)
downloadhistorical-2b1dafe9c0ec0018e9e2b4e8674269784235399f.tar.gz
historical-2b1dafe9c0ec0018e9e2b4e8674269784235399f.tar.bz2
historical-2b1dafe9c0ec0018e9e2b4e8674269784235399f.zip
fix identation (proper tabs everywhere, alignment) in my eclasses
Diffstat (limited to 'eclass/kde-patch.eclass')
-rw-r--r--eclass/kde-patch.eclass10
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/kde-patch.eclass b/eclass/kde-patch.eclass
index 0b2124dee19e..5b92d9ca3a3c 100644
--- a/eclass/kde-patch.eclass
+++ b/eclass/kde-patch.eclass
@@ -1,7 +1,7 @@
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Dan Armak <danarmak@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/eclass/kde-patch.eclass,v 1.2 2002/07/12 15:24:36 danarmak Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/kde-patch.eclass,v 1.3 2002/10/24 18:38:39 danarmak Exp $
# This applies homemade patches from the tarball to the date specified.
ECLASS=kde-patch
INHERITED="$INHERITED $ECLASS"
@@ -15,14 +15,14 @@ debug-print "Entering eclass $ECLASS"
# I'm not that good at regexps etc., so I emulate std coding practices
OLDIFS="$IFS" # backup so that we don't distort future loops
-IFS="." # separator string that determines the breakup of a string by bash's "for x in; do; done"
+IFS="." # separator string that determines the breakup of a string by bash's "for x in; do; done"
for DATE in $PV
do
- # if not last component of separated $PV
- if [ ! "${ORIGPV}.${DATE}" == "${PV}" ]; then
+ # if not last component of separated $PV
+ if [ ! "${ORIGPV}.${DATE}" == "${PV}" ]; then
[ -n "$ORIGPV" ] && ORIGPV="${ORIGPV}.${DATE}" || ORIGPV="$DATE" # don't add a leading dot
- fi
+ fi
done
IFS="$OLDIFS" #restore