Changes between Version 28 and Version 29 of dev/LinuxGentoo
- Timestamp:
- Feb 9, 2008, 1:43:28 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/LinuxGentoo
v28 v29 9 9 Add USE-Flags 10 10 {{{ 11 wraith root# echo "dev-games/cegui devil expat" >> /etc/portage/package.use12 wraith root# echo "dev-games/ogre cegui devil lua threads" >> /etc/portage/package.use11 # echo "dev-games/cegui devil expat" >> /etc/portage/package.use 12 # echo "dev-games/ogre cegui devil lua threads" >> /etc/portage/package.use 13 13 }}} 14 14 some packages are unstable, for portage to use them 15 15 {{{ 16 wraith root# echo "dev-games/ogre-1.4.5 ~x86" >> /etc/portage/package.keywords17 wraith root# echo "dev-games/ois-1.0 ~x86" >> /etc/portage/package.keywords16 # echo "dev-games/ogre-1.4.5 ~x86" >> /etc/portage/package.keywords 17 # echo "dev-games/ois-1.0 ~x86" >> /etc/portage/package.keywords 18 18 }}} 19 19 emerge the packages. cegui and boost are dependencies of ogre, so they wont be installed explicitly. 20 20 {{{ 21 wraith root# emerge cmake ogre ois22 wraith root# CFLAGS="-fPIC" emerge enet21 # emerge cmake ogre ois 22 # CFLAGS="-fPIC" emerge enet 23 23 }}} 24 24 eNet need to be compile with -fPIC to be included as shared library ([wiki:NicolasSchlumberger nico]: Dec '07) … … 34 34 now emerge subversion 35 35 {{{ 36 wraith user# emerge subversion36 # emerge subversion 37 37 }}} 38 38 Check out the source via anonymous subversion login. This will download the whole project to the directory orxonox-dir. 39 39 {{{ 40 wraith user #svn co http://svn.orxonox.net/orxonox/trunk orxonox-trunk40 $ svn co http://svn.orxonox.net/orxonox/trunk orxonox-trunk 41 41 }}} 42 42 You 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: 43 43 {{{ 44 wraith user #svn co https://svn.orxonox.net/orxonox/trunk orxonox-trunk44 $ svn co https://svn.orxonox.net/orxonox/trunk orxonox-trunk 45 45 }}} 46 46 You will be asked for your username and password, that you got from us. … … 50 50 Just change into the trunk directory, then execute configure and make.... 51 51 {{{ 52 wraith user #cd orxonox-trunk53 wraith user #cmake .52 $ cd orxonox-trunk 53 $ cmake . 54 54 ... 55 wraith user #make55 $ make 56 56 ... 57 wraith user # cd bin 58 wraith user # ./run-script 57 $ ./run --mode standalone 59 58 }}} 60 59