1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
The Osirion Project - INSTALL
These are the installation instructions for the Osirion Project.
A description of theproject and general usage information can be
found in the README file.
Installation
To build the Osirion Project from source code you will need
the SDL and OpenGL library and header files.
In theory, it should compile on any POSIX-compatible platform
supported by SDL, but at the time of writing only linux is
supported.
I have succesfully compiled it on the following platforms:
linux-x86_64, gcc 4.1.2, SDL 1.2.11
Obtaining the source code
Get the latest version of the source code from svn:
svn checkout svn://intranifty.no-ip.org/osirion
This command will create a new subdirectory 'osirion'
and download the source code into it.
Compiling the source code
Enter the new directory and compile the source code:
cd osirion/
autoreconf -fi
./configure
make
At present, 'make install' is neither tested nor supported.
Installing game data
The game data should be located in the 'data'
subdirectory of the main distribution.
Get the latest version of the game data from svn:
Run the following command from within the main
distribution directory:
svn checkout svn://intranifty.no-ip.org/osirion-data data
Installing gtkradiant 1.5.0 support files (optional)
You only need to install these files if you want to create models
with gtkradiant. Note that these files where made for
gtkradiant 1.5.0, I have not tested the with any other version.
You can find precompiled gtkradiant 1.5.0 binaries for linux at
http://ingar.soliter.org.
These instructions assume gtkradiant is installed in the directory
'/usr/local/games/gtkradiant-1.5.0'. If it is installed in a different
directory on your system, edit these instructions accordingly.
Copy the support files to the gtkradiant folder:
cd data
cd gtkradiant
cp -vr * /usr/local/games/gtkradiant-1.5.0
Open the file '/usr/local/games/gtkradiant-1.5.0/games/osirion.game' in
your favourite editor. Look for a line that begins with:
enginepath_linux="
Make sure it points to your osirion data directory. For example,
if you checked out the source code in '/home/user/games/osirion',
then the data will be in '/home/user/games/osirion/data' and
the line should look like this:
enginepath_linux="/home/user/games/osirion/data"
Save the changes.
Executing
To run the client program, execute:
src/osirion
To run the dedicated server, execute:
src/osiriond
Updating
If you downloaded and compiled the game before,
there is no need to re-download the entire distribution.
Update the game source code with the following commands:
cd osirion/
make distclean
svn update
Rebuild the game:
autoreconf -fi
./configure
make
Update the game data:
cd data/
svn update
cd ..
|