Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 6 and Version 7 of dev/LinuxDebian


Ignore:
Timestamp:
Aug 15, 2006, 6:40:16 PM (18 years ago)
Author:
wenners
Comment:

complete rewrite

Legend:

Unmodified
Added
Removed
Modified
  • dev/LinuxDebian

    v6 v7  
    11= Get it Running =
    22[[TracNav(TracNav/TOC)]]
    3 == Debian Linux ==
     3== Debian GNU/Linux ==
     4
     5=== Debian Sarge ===
     6Orxonox does not run on the official version of Debian Sarge because libqt4 is missing. Maybe using a backport of QT4 from http://backports.org/ could solve this problem. (not tested yet)
     7
     8=== Debian Etch (Testing) ===
     9Installing Orxonox on Debian Etch (aka Testing). Installing on Debian SID (aka Unstable) should work too (not tested).
    410
    511=== Installing the Libraries ===
    6 Install the following libraries:
    7  * SDL main library, libsdl1.2-dev, web: [http://www.libsdl.org/index.php link]
    8  * SDL image library, libsdl-image1.2-dev, web: [http://www.libsdl.org/index.php link]
    9  * SDL true type fonts, libsdl-ttf2.0-dev, web: [http://www.libsdl.org/index.php link]
    10  * SDL mixer, libsdl-mixer1.2-dev, web: [http://www.libsdl.org/index.php link]
    11 
    12 You can also get these libraries from Debian packages: (Note: "libsdl-ttf2.0-dev" is only available for Debian "Sarge" (testing) and Debian SID (unstable)!)
    1312
    1413{{{
    15 wraith root # apt-get install libsdl1.2-dev libsdl-image1.2-dev libsdl-ttf2.0-dev libsdl-mixer1.2-dev
     14wraith root # apt-get install libsdl1.2-dev libsdl-image1.2-dev libsdl-ttf2.0-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libqt4-dev libglut3-dev libglew-dev libopenal-dev libvorbis-dev libavformat-dev libcurl3-dev liblualib50-dev
    1615...
    1716}}}
    1817
     18=== Installing developer tools ===
    1919
    20 === Getting the Source ===
    21 First you will have to install the subversion program, make sure, that the ssl support is enabled
    2220{{{
    23 wraith root # apt-get install subversion
     21wraith root # apt-get install subversion automake g++
    2422}}}
    25 Check out the source via svn anonymous, this will download the hole project to the directory orxonox-dir
     23
     24=== Getting the Source & Data ===
     25
     26Check out the source and Data via svn anonymous, this will download the hole project to the directory orxonox-dir
    2627{{{
    27 wraith user # svn co http://svn.orxonox.net/orxonox orxonox-dir
     28wraith user $ svn co http://svn.orxonox.net/orxonox orxonox-dir
     29wraith user $ svn co http://svn.orxonox.net/data orxonox-dir/data
    2830}}}
    2931You won't be able to commit (check in) anything with the anonymous repository. You have to ask us for user/pass combination. If you have already an account check it out like this:
    3032{{{
    31 wraith user # svn co https://svn.orxonox.net/orxonox orxonox-dir
     33wraith user $ svn co https://svn.orxonox.net/orxonox orxonox-dir
     34wraith user $ svn co https://svn.orxonox.net/data orxonox-dir/data
    3235}}}
    3336You will be asked for user name and password, that you have from us.
     
    3740Just change into the trunk directory, execute configure and make....
    3841{{{
    39 wraith user # cd ./orxonox/trunk/
    40 wraith user # ./autogen.sh
    41 wraith user # ./configure
     42wraith user $ cd ./orxonox/trunk/
     43wraith user $ ./autogen.sh
     44wraith user $ ./configure
    4245...
    43 wraith user # make
    44 ...
    45 wraith user # cd src
    46 wraith user # ./orxonox
     46wraith user $ make
    4747}}}
    4848
     49=== Playing ===
     50{{{
     51wraith user $ cd ./orxonox/trunk/src
     52wraith user $ ./orxonox
     53}}}
     54Select the Data File orxonox/data/trunk/data.oxd in the menu and play!
     55
    4956=== Profiling ===
    50 If you want to profile (performance measureing) orxonox you will probably want to view the statistics in a special program like kprof. On Gentoo systems you can just emerge it:
     57If you want to profile (performance measureing) orxonox you will probably want to view the statistics in a special program like kprof.
    5158{{{
    5259wraith root # apt-get install kprof