In Memoriam: Tai'lahr
OpenUru.org, along with the rest of the Mystonline community, is mourning the loss of Tai'lahr on October 16th, 2019.
Rest in Peace, friend.
Difference between revisions of "Install Repository"
(Install a repository) |
m |
||
Line 18: | Line 18: | ||
They are based upon a more general article at: | They are based upon a more general article at: | ||
http://joemaller.com/2008/01/29/how-to-install-subversion-on-a-shared-host/ | http://joemaller.com/2008/01/29/how-to-install-subversion-on-a-shared-host/ | ||
+ | |||
+ | Unconfirmed alternative: | ||
+ | http://www.bluehostforum.com/showthread.php?t=12099&page=3 (last post) | ||
Revision as of 20:59, 31 March 2010
This page intentionally orphaned for now.
Install Repository
Here's how if you want to grow your own repository.
Repositories
Subversion
Install
These instructions were originally found at: http://www.bluehostforum.com/showpost.php?p=51455&postcount=19
They are based upon a more general article at: http://joemaller.com/2008/01/29/how-to-install-subversion-on-a-shared-host/
Unconfirmed alternative: http://www.bluehostforum.com/showthread.php?t=12099&page=3 (last post)
Connect to your account with ssh
Replace zzzzz with your username in these commands:
mkdir _src cd _src wget http://subversion.tigris.org/downloads/subversion-1.4.6.tar.gz wget http://subversion.tigris.org/downloads/subversion-deps-1.4.6.tar.gz tar -xzvf subversion-1.4.6.tar.gz tar -xzvf subversion-deps-1.4.6.tar.gz cd subversion-1.4.6 cd apr ./configure --enable-shared --prefix=$HOME make && make install cd ../apr-util ./configure --enable-shared --prefix=$HOME \ --with-expat=builtin --with-apr=$HOME \ --without-berlekey-db make && make install cd ../neon EXTRA_CFLAGS="-L/usr/lib64 -fPIC" CFLAGS="-L/usr/lib64 -fPIC" ./configure --prefix=/home/zzzzz/system --enable-shared make && make install cd .. ./configure --prefix=/home/zzzzz/system --with-expat=builtin make && make install
Then you need to edit .bash_profile to add /system/bin to your path. From your home folder:
nano -w .bash_profile
Replace:
PATH=$PATH:$HOME/bin
With:
PATH=$PATH:$HOME/bin:$HOME/system/bin
You will need to logout of your session, and then log in again. Subversion should now be working.