david: doc/kde-client/svn-instructions checkout_kde_i18n_proko2.sh, NONE, 1.1

cvs at intevation.de cvs at intevation.de
Fri May 13 19:24:47 CEST 2005


Author: david

Update of /kolabrepository/doc/kde-client/svn-instructions
In directory doto:/tmp/cvs-serv4842

Added Files:
	checkout_kde_i18n_proko2.sh 
Log Message:
How to check out kde-i18n proko2 from SVN


--- NEW FILE: checkout_kde_i18n_proko2.sh ---
# Run this script from the *PARENT* directory of kde-i18n
# The script will check out the german kdepim-related parts of kde-i18n the first time.

# NOTE: this script relies on "svn co -N + svn up" to work
# It does for me with svn-1.2-rc2, but if you have an older version of
# the svn client, it might not work (tell me if that's the case, so that
# I can at least adjust this comment to specify the required svn version).
#
# David Faure <faure at kde.org>, LGPL v2.

# Edit those lines or set the env vars out of the script.
# SVNPROTOCOL can be either svn+ssh or https.
#
#SVNPROTOCOL=https
#SVNUSER=

if test -z "$SVNUSER"; then
    echo "You must set SVNUSER!"
    exit 1
fi

if test -z "$SVNPROTOCOL"; then
    echo "You must set SVNPROTOCOL!"
    exit 1
fi

SVN=svn
CDPATH=

if ! test -d kde-i18n; then
    echo "kde-i18n not found. Press ENTER to check it out from SVN."
    read && \
    $SVN --username $SVNUSER checkout $SVNPROTOCOL://$SVNUSER@svn.kde.org/home/kde/branches/kdepim/proko2/kde-i18n  || exit 1
fi

cd kde-i18n
svn up

# This was the old idea, partial 3.3-branch with proko2 updates on top.
# But it's much simpler to just have a standalone proko2 branch.
#svn up -N templates
#svn up templates/kdepim
#svn up -N templates/docs
#svn up templates/docs/kdepim
#svn up -N de
#svn up -N de/messages
#svn up -N de/docs
#svn up de/messages/kdepim
#svn up de/docs/kdepim
#svn up -N de/messages/docs
#svn up de/messages/docs/kdepim
#svn up de/messages/docs/language
#echo de > subdirs
# to get the admin dir
#svn up





More information about the commits mailing list