+ Reply to Thread
Page 6 of 6 FirstFirst ... 4 5 6
Results 51 to 57 of 57

Thread: Subversion

  1. #51
    Join Date
    Jul 2008
    Posts
    1

    Default

    Quote Originally Posted by OnDistantShores View Post
    Same error as the above two posters...any help?
    Finally got the latest version of Subversion (and dependencies) to work on HostMonster! Here's the secret sauce:

    Code:
    cd ~
    mkdir src
    cd src
    wget http://www.gtlib.gatech.edu/pub/apache/apr/apr-1.4.2.tar.gz
    wget http://www.gtlib.gatech.edu/pub/apache/apr/apr-util-1.3.9.tar.gz
    wget http://subversion.tigris.org/downloads/subversion-1.6.9.tar.gz
    wget http://www.webdav.org/neon/neon-0.29.3.tar.gz
    wget http://www.sqlite.org/sqlite-amalgamation-3.6.23.tar.gz
    wget http://ftp.gnu.org/gnu/libtool/libtool-2.2.6b.tar.gz
    
    
    tar -xzf apr-util-1.3.9.tar.gz
    tar -xzf apr-1.4.2.tar.gz
    tar -xzf subversion-1.6.9.tar.gz
    tar -xzf neon-0.29.3.tar.gz
    tar -xzvf sqlite-amalgamation-3.6.23.tar.gz
    tar -xzvf libtool-2.2.6b.tar.gz
    
    cd libtool-2.2.6b
    make clean
    ./configure --prefix=$HOME LDFLAGS="-L/lib64"
    make
    make install
    
    cd ../apr-1.4.2
    make clean
    ./configure --prefix=$HOME LDFLAGS="-L/lib64"
    make
    make install
    
    cd ../apr-util-1.3.9
    make clean
    ./configure --prefix=$HOME --with-apr=$HOME LDFLAGS="-L/lib64"
    make
    make install
    
    cd ../neon-0.29.3
    make clean
    EXTRA_CFLAGS="-L/lib64 -fPIC"
    CFLAGS="-L/lib64 -fPIC"
    ./configure --enable-shared --prefix=$HOME LDFLAGS="-L/lib64"
    make
    make install
    
    cd ../sqlite-3.6.23/
    make clean
    mkdir ~/src/subversion-1.6.9/sqlite-amalgamation
    cp sqlite3.c ~/src/subversion-1.6.9/sqlite-amalgamation/
    
    cd ../subversion-1.6.9
    make clean
    ./configure --with-apr=$HOME --prefix=$HOME --without-berkeley-db --with-zlib=/usr --with-ssl LDFLAGS="-L/lib64" --with-apr-util=$HOME --with-neon=$HOME -without-apxs --without-apache
    
    make
    make install

  2. #52
    Join Date
    Mar 2010
    Posts
    2

    Default

    Alternatively, you could grab the dependencies package that SVN provides. The following is a copy of a post I made in a similar thread:

    SVN includes a dependencies package, which should make everything easier. Bear in mind, these instructions are for 64-bit boxes, which I believe is the standard (but don't quote me).

    When downloading the package (wget), grab the SVN dependencies package, and export and install it.

    Here's the list of commands where X.Y.Z is the latest version:

    Code:
    mkdir src
    cd src
    
    wget http://subversion.tigris.org/downloads/subversion-X.Y.Z.tar.bz2
    wget http://subversion.tigris.org/downloads/subversion-deps-X.Y.Z.tar.bz2
    cd subversion-X.Y.Z
    
    tar -xjvf subversion-X.Y.Z.tar.bz2
    tar -xjvf subversion-deps-X.Y.Z.tar.bz2
    
    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-berkeley-db
    make
    make install
    
    cd ../neon
    ./configure --enable-shared --prefix=$HOME --with-libs=$HOME --with-ssl
    make 
    make install
    
    cd ../
    ./configure --prefix=$HOME --without-berkeley-db --with-apr=$HOME --with-apr-util=$HOME --with-neon=$HOME --without-apxs --without-apache
    make
    make install
    That should be it. You may need to add LDFLAGS="-L/lib64" to each configure line. If it complains, go back to your first configure steps with that added. I would tell you for sure, but I set it up last night and have since forgotten.

    To double-check that it's installed, simply run "svn --version".

    This was grabbed from http://joemaller.com/2008/01/29/how-...a-shared-host/

    Have fun

  3. #53
    Join Date
    Jun 2009
    Posts
    6

    Default

    Thank you marcjohnson... It works like a charm ...at last!

  4. #54
    Join Date
    Apr 2010
    Posts
    3

    Default

    Hi guys! Newbie here...

    I got some errors during the installation process, so how do I uninstall and start over?

    Thanks in advance!

  5. #55
    Join Date
    May 2010
    Posts
    1

    Default

    Wow 5 hours to figure it out, install, config and set up for multiple users. Thanks marcjohnson

  6. #56
    Join Date
    Jun 2010
    Posts
    2

    Default Checkout at windows

    Hi guys, thanks for all your advices. I installed SVN on server, created repository svn-repos/phonecalls in root of my domain and added a project to it. I added there files from one of my domains, I can SVN UP, etc.. but I am unable to checkout at my home PC.

    I am using tortoise SVN, but any address I try still ends with "Network connection closed unexpectedly". I am authorising myself with PPK key without a password, no problems in logging in with Putty, but I cannot get it to work with Tortoise.

    I have run "svnserve -d --listen-port 6666" on hostmonster, I have even tried logging under the name of my Putty session as it helped on other servers but no success.

    Please could you advice me how to check-out on my local machine ? I am getting a bit desperate of this..

    thanks in advance

  7. #57
    Join Date
    Jun 2010
    Posts
    2

    Default

    Noone knows ?

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts