Changes between Version 46 and Version 47 of dev/LinuxGentoo
- Timestamp:
- Oct 8, 2008, 6:53:45 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/LinuxGentoo
v46 v47 41 41 # emerge subversion 42 42 }}} 43 Now get a copy of the code by checking out the trunk via anonymous subversion login. This will download the latest stable version to the directory ''trunk''. If you have trouble using SVN, go [wiki:SVN here].44 {{{45 $ svn co http://svn.orxonox.net/orxonox/trunk trunk46 }}}47 You won't be able to contribute 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 the code out like this:48 {{{49 $ svn co https://svn.orxonox.net/orxonox/trunk trunk50 }}}51 You will then be asked for the username and password, that you got from us.52 43 53 Furthermore, you will need to check our data repository. This repository contains all the graphics, fonts and sounds and other third-party datafor Orxonox. To check it out use the command: 54 {{{ 55 $ svn co https://svn.orxonox.net/data/Media media 56 }}} 57 Now make sure, you have set the correct path to your media directory in the file ''bin/orxonox.ini''. 58 59 == Compiling == 60 Just cd to the trunk directory, then execute configure and make: 61 {{{ 62 $ cd orxonox-trunk 63 $ cmake . 64 ... 65 $ make -j4 // -j4 means 4 jobs concurrently (for those of you with multicore cpus) 66 ... 67 $ ./run 68 }}} 69 Additionally if you don't want to built into your source directories perform the following steps instead: 70 {{{ 71 $ cd orxonox-trunk 72 $ mkdir build 73 $ cd build 74 $ cmake .. 75 ... 76 $ make -j4 77 ... 78 $ cd .. 79 $ ./run 80 81 }}} 44 Now proceed by following the steps described on the [wiki:LinuxSource building] page. 82 45 83 46 == Development with KDevelop ==