Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 28 and Version 29 of dev/LinuxGentoo


Ignore:
Timestamp:
Feb 9, 2008, 1:43:28 PM (16 years ago)
Author:
nicolasc
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • dev/LinuxGentoo

    v28 v29  
    99Add USE-Flags
    1010{{{
    11 wraith root # echo "dev-games/cegui devil expat" >> /etc/portage/package.use
    12 wraith root # echo "dev-games/ogre cegui devil lua threads" >> /etc/portage/package.use
     11# echo "dev-games/cegui devil expat" >> /etc/portage/package.use
     12# echo "dev-games/ogre cegui devil lua threads" >> /etc/portage/package.use
    1313}}}
    1414some packages are unstable, for portage to use them
    1515{{{
    16 wraith root # echo "dev-games/ogre-1.4.5 ~x86" >> /etc/portage/package.keywords
    17 wraith root # echo "dev-games/ois-1.0 ~x86" >> /etc/portage/package.keywords
     16# echo "dev-games/ogre-1.4.5 ~x86" >> /etc/portage/package.keywords
     17# echo "dev-games/ois-1.0 ~x86" >> /etc/portage/package.keywords
    1818}}}
    1919emerge the packages. cegui and boost are dependencies of ogre, so they wont be installed explicitly.
    2020{{{
    21 wraith root # emerge cmake ogre ois
    22 wraith root # CFLAGS="-fPIC" emerge enet
     21# emerge cmake ogre ois
     22# CFLAGS="-fPIC" emerge enet
    2323}}}
    2424eNet need to be compile with -fPIC to be included as shared library ([wiki:NicolasSchlumberger nico]: Dec '07)
     
    3434now emerge subversion
    3535{{{
    36 wraith user # emerge subversion
     36# emerge subversion
    3737}}}
    3838Check out the source via anonymous subversion login. This will download the whole project to the directory orxonox-dir.
    3939{{{
    40 wraith user # svn co http://svn.orxonox.net/orxonox/trunk orxonox-trunk
     40$ svn co http://svn.orxonox.net/orxonox/trunk orxonox-trunk
    4141}}}
    4242You 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:
    4343{{{
    44 wraith user # svn co https://svn.orxonox.net/orxonox/trunk orxonox-trunk
     44$ svn co https://svn.orxonox.net/orxonox/trunk orxonox-trunk
    4545}}}
    4646You will be asked for your username and password, that you got from us.
     
    5050Just change into the trunk directory, then execute configure and make....
    5151{{{
    52 wraith user # cd orxonox-trunk
    53 wraith user # cmake .
     52$ cd orxonox-trunk
     53$ cmake .
    5454...
    55 wraith user # make
     55$ make
    5656...
    57 wraith user # cd bin
    58 wraith user # ./run-script
     57$ ./run --mode standalone
    5958}}}
    6059