Changes between Version 20 and Version 21 of dev/LinuxGentoo
- Timestamp:
- Nov 1, 2007, 9:54:24 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/LinuxGentoo
v20 v21 3 3 === Preparation (required libs) === 4 4 5 Orxonox used Ogre with CEGUI for rendering, OIS for input handling and eNet for network support. Every needed package is in portage.5 Orxonox 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. 6 6 Add USE-Flags 7 7 {{{ … … 14 14 wraith root # echo "dev-games/ois-1.0 ~x86" >> /etc/portage/package.keywords 15 15 }}} 16 emerge the packages ,cegui is a dependency of ogre, so it wont be installed explicitly.16 emerge the packages. cegui is a dependency of ogre, so it wont be installed explicitly. 17 17 {{{ 18 wraith root # emerge ogre ois enet18 wraith root # emerge cmake ogre ois enet 19 19 }}} 20 === Getting the Source Code === 21 First 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 }}} 28 now emerge subversion 29 {{{ 30 wraith user # emerge subversion 31 }}} 32 Check out the source via anonymous subversion login. This will download the whole project to the directory orxonox-dir. 33 {{{ 34 wraith user # svn co http://svn.orxonox.net/orxonox/trunk orxonox-trunk 35 }}} 36 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: 37 {{{ 38 wraith user # svn co https://svn.orxonox.net/orxonox/trunk orxonox-trunk 39 }}} 40 You will be asked for your username and password, that you got from us. 20 41 42 43 === Compiling === 44 Just change into the trunk directory, then execute configure and make.... 45 {{{ 46 wraith user # cd orxonox-trunk 47 wraith user # cmake . 48 ... 49 wraith user # make 50 ... 51 wraith user # cd bin 52 wraith user # ./run-script 53 }}} 54 [[OutdatedPage]] 21 55 [[TracNav(TracNav/TOC)]] 22 [[OutdatedPage]]23 56 1. Get the ebuild: source:/trunk/scripts/gentoo#HEAD (download newest ebuild) 24 57 1. Change to root user