For those of us that like to stay on the "bleeding edge" there's an easy way to keep a local copy of the KDE sources up-to-date. No more trying to log on to ftp.kde.org to get the latest snapshot. No more wandering aimlessly through mirrors looking for one that's up to date. Just a simple command line operation to get up-to-the-minute source updates. Just use anonymous SVN.
Using anonymous SVN is simple:
svn co svn://anonsvn.kde.org/home/kde/trunk/KDE/kdelibs svn co svn://anonsvn.kde.org/home/kde/trunk/KDE/kdebase
NOTE: Only use "co" for the initial checkout. please update your local sources afterwards by using "svn up modulename".
NOTE: If your firewall doesn't allow access to arbitrary ports, you want to substitute svn://anonsvn.kde.org/ with svn://anonsvn.kde.org:443/ above.
svn co svn://anonsvn.kde.org/home/kde/tags/KDE/3.4.0/kdelibs/
If you then want to update to KDE 3.4.1, use this command:
svn switch svn://anonsvn.kde.org/home/kde/tags/KDE/3.4.1/kdelibs
If you used a /branch/ or /trunk/ path, then there is no need to switch, just run svn update.
svn co svn://anonsvn.kde.org/home/kde/branches/arts/1.5/arts svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kdelibs svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kdebase ...
svn co svn://anonsvn.kde.org/home/kde/trunk/KDE
If you want additional sources, you can check out the following modules instead of KDE:
koffice extragear kdenonbeta playground kdereview
For example if you want to check out koffice trunk, you can use
svn co svn://anonsvn.kde.org/home/kde/trunk/koffice
If you're looking for the internationalisation, check out the l10n module (Warning: HUGE!).
QTDIR=/your/dir/to/qt-copy (use the full path to the qt-copy you got in the previous step) and remember to do this again before you do configure in the next step.
After that use these options for configure (as stated in README.qt-copy) and then do a make.
make -f Makefile.cvs ./configure make make install
Also of interest:
svn switch --relocate svn://anonsvn.kde.org/ svn://kde.mneisen.org/
If you're interested in setting up a svn mirror, please contact Dirk Mueller.