]> git.sur5r.net Git - glabels/blob - web/doc/install-src/index.php
2009-09-22 Jim Evins <evins@snaught.com>
[glabels] / web / doc / install-src / index.php
1 <?php include "../../common_php.inc"; ?>
2
3 <?php gLabelsHeader("docs"); ?>
4
5 <h1 class="doc">Installing gLabels from Source</h1>
6
7 <p>
8 The following outlines how to install glabels from source on various GNU/Linux distributions.
9 </p>
10
11
12 <h2>Prerequisites</h2>
13
14 <p>
15 Dependencies will need to be installed as root.
16 Although dependecies can be installed using your distribution's graphical package manager, the directions below use command line tools because it is easier to convey.
17 </p>
18
19 <h4>Fedora and similar distributions</h4>
20 <div class="codebox">$ su
21 Password:
22 # yum groupinstall "Development Tools"
23 # yum groupinstall "GNOME Software Development"
24 </div>
25
26 <h4>Ubuntu and similar distributions</h4>
27 <div class="codebox">$ sudo apt-get install libgtk2.0-dev libgnomeui-dev libxml2-dev libglade2-dev
28 $ sudo apt-get install libebook1.2-dev <i>(optional)</i>
29 </div>
30
31 <p>
32 The exact dependencies and their names may vary with different distributions and versions.  There may also be additional dependencies depending on the baseline configuation of your distribution.  If <tt>./configure</tt> in the following step complains, you may need to return to this step and install additional dependencies.
33 </p>
34
35
36 <h2>Unpack and Build</h2>
37
38 <p>This step should not vary with distribution.</p>
39
40 <div class="codebox">$ tar xvfz glabels-2.2.x.tar.gz
41 $ cd glabels-2.2.x
42 $ ./configure
43 $ make
44 </div>
45
46
47 <h2>Install</h2>
48
49 <p>
50 Installation will need to be done as root.
51 </p>
52
53 <h4>Fedora and similar distributions</h4>
54 <div class="codebox">$ su
55 Password:
56 # make install
57 </div>
58
59 <h4>Ubuntu and similar distributions</h4>
60 <div class="codebox">$ sudo make install
61 </div>
62
63
64 <?php gLabelsFooter(); ?>