Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 20 and Version 21 of dev/LinuxGentoo


Ignore:
Timestamp:
Nov 1, 2007, 9:54:24 PM (16 years ago)
Author:
nicolasc
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • dev/LinuxGentoo

    v20 v21  
    33=== Preparation (required libs) ===
    44
    5 Orxonox used Ogre with CEGUI for rendering, OIS for input handling and eNet for network support. Every needed package is in portage.
     5Orxonox used Ogre with CEGUI for rendering, OIS for input handling, eNet for network support and cMake as build-system. Every needed package is in portage.
    66Add USE-Flags
    77{{{
     
    1414wraith root # echo "dev-games/ois-1.0 ~x86" >> /etc/portage/package.keywords
    1515}}}
    16 emerge the packages, cegui is a dependency of ogre, so it wont be installed explicitly.
     16emerge the packages. cegui is a dependency of ogre, so it wont be installed explicitly.
    1717{{{
    18 wraith root # emerge ogre ois enet
     18wraith root # emerge cmake ogre ois enet
    1919}}}
     20=== Getting the Source Code ===
     21First of all you have to install subversion on your system: Make sure, that you have '''ssl''' included in your ''make.conf'' file:[[br]]
     22'''/etc/make.conf'''
     23{{{
     24 ...
     25 USE="..., ssl, ..."
     26 ...
     27}}}
     28now emerge subversion
     29{{{
     30wraith user # emerge subversion
     31}}}
     32Check out the source via anonymous subversion login. This will download the whole project to the directory orxonox-dir.
     33{{{
     34wraith user # svn co http://svn.orxonox.net/orxonox/trunk orxonox-trunk
     35}}}
     36You won't be able to commit 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 it out like this:
     37{{{
     38wraith user # svn co https://svn.orxonox.net/orxonox/trunk orxonox-trunk
     39}}}
     40You will be asked for your username and password, that you got from us.
    2041
     42
     43=== Compiling ===
     44Just change into the trunk directory, then execute configure and make....
     45{{{
     46wraith user # cd orxonox-trunk
     47wraith user # cmake .
     48...
     49wraith user # make
     50...
     51wraith user # cd bin
     52wraith user # ./run-script
     53}}}
     54[[OutdatedPage]]
    2155[[TracNav(TracNav/TOC)]]
    22 [[OutdatedPage]]
    2356  1. Get the ebuild: source:/trunk/scripts/gentoo#HEAD (download newest ebuild)
    2457  1. Change to root user