~ubuntu-branches/debian/squeeze/galeon/squeeze

« back to all changes in this revision

Viewing changes to doc/C/apx-compiling.xml

  • Committer: Bazaar Package Importer
  • Author(s): Mark Howard
  • Date: 2004-06-06 09:02:01 UTC
  • Revision ID: james.westby@ubuntu.com-20040606090201-yhx6ruhq8um7ggs2
Tags: upstream-1.3.15
ImportĀ upstreamĀ versionĀ 1.3.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!-- <!DOCTYPE Chapter PUBLIC "-//GNOME//DTD DocBook PNG Variant V1.1//EN"> -->
 
2
<appendix id="compiling-from-source">
 
3
 
 
4
<title>Compiling Galeon From Source Code</title>
 
5
 
 
6
  <para>
 
7
    You can download a tarball of the source code from
 
8
    <application>Galeon</application>'s SourceForge
 
9
    <ulink url="http://sourceforge.net/projects/galeon">download page</ulink> 
 
10
  </para>
 
11
  <para>
 
12
    You also can checkout the most recent <application>Galeon</application>
 
13
    sources from the GNOME CVS server.
 
14
    Here are the commands you need to enter in a terminal:
 
15
    <screen>
 
16
      <prompt>[bash]$ </prompt><userinput>export CVSROOT=':pserver:anonymous@anoncvs.gnome.org:/cvs/gnome'</userinput>
 
17
      <prompt>[bash]$ </prompt><userinput>cvs login</userinput>
 
18
      (Logging in to anonymous@anoncvs.gnome.org)
 
19
      CVS password:
 
20
    </screen>
 
21
  </para>
 
22
 
 
23
  <para>Just hit enter here, there is no password.</para>
 
24
 
 
25
  <screen>
 
26
    <prompt>[bash]$ </prompt><userinput>cvs -z3 checkout galeon</userinput>
 
27
  </screen>
 
28
 
 
29
  <para>
 
30
    The <application>Galeon</application> source will be downloaded to a
 
31
    'galeon' subdirectory.  To compile, change to the 'galeon' subdirectory
 
32
    and type the following commands:
 
33
  </para>
 
34
 
 
35
  <screen>
 
36
    <prompt>[bash]$ </prompt><userinput>./autogen.sh</userinput>
 
37
    <prompt>[bash]$ </prompt><userinput>make</userinput>
 
38
  </screen>
 
39
 
 
40
  <para>If all goes well, su to root and type:</para>
 
41
 
 
42
  <screen>
 
43
    <prompt>[bash]# </prompt><userinput>make install</userinput>
 
44
  </screen>
 
45
 
 
46
  <para>
 
47
        For more detailed instructions, read the INSTALL and FAQ text files.
 
48
  </para>
 
49
</appendix>
 
50