Install Subversion (svn) From Source in Debian8

sudo apt-get update
sudo apt-get upgrade

#apt-get install -y build-dep libc6-dev g++ gcc libapr1 libapr1-dev libaprutil1 
libaprutil1-dev libneon27 libneon27-dev 
Download file 
https://subversion.apache.org/download.cgi

#cd subversion-1.7.7

#./get-deps.sh
#cd apr/; ./buildconf; cd ..
#cd apr-util/; ./buildconf; cd ..
#cd apr-util/xml/expat/; ./buildconf.sh; cd ../../..
#./autogen.sh

#./configure
#make
#make check
#make install
 
Configuration:
 
#mkdir -p /home/samnang/svn/data
#cd /home/samnang/svn/data/
#svnadmin create projectname
 
start svn
#svnserve -d -r /home/svn/data/
 
SVN Client:
 
+window:
 
Download and setup http://tortoisesvn.net/downloads.html 

then create folder with projectname
-right on folder name =>SVN Check out:
-fill with this: svn://server-svn-ip/projectname  =>ok
===========================
Reference:
http://jamesconstable.co.uk/linux/installing-subversion-1-6-6-from-source-on-ubuntu-8-04/ http://blog.ashodnakashian.com/2012/11/building-subversion-on-ubuntu-12-10/