Installing SSH on Bluehost
I found this very useful forum post on setting up subversion on Bluehost: http://www.bluehostforum.com/showthread.php?t=12099
But, I wasn't able to get it to work either with the original version numbers and dependencies, or with the most up to date. After a little monkeying about, here are the commands which worked for me. Of course, YMMV. You should probably start with the latest, and use this as a fallback.
cd ~
mkdir src
cd ~/src
wget http://www.gtlib.gatech.edu/pub/apache/apr/apr-util-1.3.9.tar.gz
wget http://www.gtlib.gatech.edu/pub/apache/apr/apr-1.3.9.tar.gz
wget http://subversion.tigris.org/downloads/subversion-1.4.6.tar.gz
wget http://www.webdav.org/neon/neon-0.28.0.tar.gz
tar -xzf apr-util-1.3.9.tar.gz
tar -xzf apr-1.3.9.tar.gz
tar -xzf subversion-1.4.6.tar.gz
tar -xzf neon-0.28.0.tar.gz
cd ~/src/apr-1.3.9
./configure --prefix=$HOME LDFLAGS="-L/lib64"
make
make install
cd ~/src/apr-util-1.3.9
./configure --prefix=$HOME --with-apr=$HOME LDFLAGS="-L/lib64"
make
make install
cd ~/src/neon-0.28.0
./configure --enable-shared --prefix=$HOME LDFLAGS="-L/lib64"
make
make install
cd ~/src/subversion-1.4.6
./configure --prefix=$HOME --without-berkeley-db --with-zlib --with-ssl LDFLAGS="-L/lib64"
make
make install
