Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 46 and Version 47 of dev/LinuxGentoo


Ignore:
Timestamp:
Oct 8, 2008, 6:53:45 PM (16 years ago)
Author:
scheusso
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • dev/LinuxGentoo

    v46 v47  
    4141# emerge subversion
    4242}}}
    43 Now get a copy of the code by checking out the trunk via anonymous subversion login. This will download the latest stable version to the directory ''trunk''. If you have trouble using SVN, go [wiki:SVN here].
    44 {{{
    45 $ svn co http://svn.orxonox.net/orxonox/trunk trunk
    46 }}}
    47 You won't be able to contribute your own code (check in) with the anonymous subversion repository. You have to ask us for a username/password combination. If you already have an account, check the code out like this:
    48 {{{
    49 $ svn co https://svn.orxonox.net/orxonox/trunk trunk
    50 }}}
    51 You will then be asked for the username and password, that you got from us.
    5243
    53 Furthermore, you will need to check our data repository. This repository contains all the graphics, fonts and sounds and other third-party datafor Orxonox. To check it out use the command:
    54 {{{
    55 $ svn co https://svn.orxonox.net/data/Media media
    56 }}}
    57 Now make sure, you have set the correct path to your media directory in the file ''bin/orxonox.ini''.
    58 
    59 == Compiling ==
    60 Just cd to the trunk directory, then execute configure and make:
    61 {{{
    62 $ cd orxonox-trunk
    63 $ cmake .
    64 ...
    65 $ make -j4 // -j4 means 4 jobs concurrently (for those of you with multicore cpus)
    66 ...
    67 $ ./run
    68 }}}
    69 Additionally if you don't want to built into your source directories perform the following steps instead:
    70 {{{
    71 $ cd orxonox-trunk
    72 $ mkdir build
    73 $ cd build
    74 $ cmake ..
    75 ...
    76 $ make -j4
    77 ...
    78 $ cd ..
    79 $ ./run
    80 
    81 }}}
     44Now proceed by following the steps described on the [wiki:LinuxSource building] page.
    8245
    8346== Development with KDevelop ==