comparison docs/gftp-faq.sgml @ 891:f7a06eea66ce

2007-3-15 Brian Masney <masneyb@gftp.org> * docs/gftp-faq.sgml - updated FAQ entry about how to check the latest code out of SVN.
author masneyb
date Fri, 16 Mar 2007 00:35:47 +0000
parents e30271d47353
children
comparison
equal deleted inserted replaced
890:eb1b26c0b42a 891:f7a06eea66ce
134 </sect1> 134 </sect1>
135 135
136 <!-- ----------------------------------------------------------------- --> 136 <!-- ----------------------------------------------------------------- -->
137 137
138 <sect1> 138 <sect1>
139 <title>Does gFTP have a CVS repository?</title> 139 <title>Does gFTP have a SVN repository?</title>
140 140
141 <para>gFTP is stored in GNOME's CVS repository. For instructions on how to 141 <para>gFTP is stored in GNOME's SVN repository. For instructions on how to
142 setup your CVS client, you can visit the webpage 142 setup your subversion client, visit the website
143 <ulink url="http://developer.gnome.org/tools/cvs.html">http://developer.gnome.org/tools/cvs.html</ulink> for instructions. In a nutshell, you will need to run 143 <ulink url="http://developer.gnome.org/tools/svn.html">http://developer.gnome.org/tools/svn.html</ulink>.
144 the following commands (this assumes you are using the <emphasis>bash</emphasis> 144 In a nutshell, you will need to run the following command to download the latest code:
145 shell):</para> 145 </para>
146 146
147 <para> 147 <para>
148 148
149 <literallayout> 149 <literallayout>
150 <literal>export CVSROOT=":pserver:anonymous@anoncvs.gnome.org:/cvs/gnome"</literal> 150 <literal>svn co http://svn.gnome.org/svn/gftp/trunk gftp</literal>
151 <literal>cvs login</literal>
152 </literallayout> 151 </literallayout>
153 152
154 Just hit enter at the password prompt since there is no password. 153 </para>
155 154
156 <literallayout> 155 <para>
157 <literal>cvs co gftp</literal> 156 To compile the SVN code, you will need <emphasis>autoconf</emphasis>,
158 </literallayout> 157 <emphasis>automake</emphasis> and <emphasis>gettext</emphasis>
159 158 installed on your system. Once you have those packages installed, run
160 </para> 159 the following series of commands:
161 160 </para>
162 <para> 161
163 To compile the CVS code, you will need <emphasis>autoconf</emphasis>, 162 <itemizedlist>
164 <emphasis>automake 1.4</emphasis> and <emphasis>gettext</emphasis> 163 <listitem><simpara>Run <emphasis>./autogen.sh</emphasis> to generate the configure scripts.</simpara></listitem>
165 installed on your system. To generate a configure script, you will 164 <listitem><simpara>If that is successful, run <emphasis>./configure</emphasis> to generate the Makefiles. By default, the binaries will be installed in /usr/local/bin. You can change the install location by passing the <emphasis>--prefix</emphasis> argument to configure. For example, let's say you want to install the binaries in /usr/bin. Run <emphasis>configure --prefix=/usr</emphasis>.</simpara></listitem>
166 need to run <emphasis>autogen.sh</emphasis>. Once this script is 165 <listitem><simpara>If that is successful, run <emphasis>make</emphasis> to build the source.</simpara></listitem>
167 generated, you can follow the normal installation instructions. 166 <listitem><simpara>Optional: If that is successful, run <emphasis>make install</emphasis> to install the binary on your computer.</simpara></listitem>
167 </itemizedlist>
168 168
169 </sect1> 169 </sect1>
170 170
171 <!-- ----------------------------------------------------------------- --> 171 <!-- ----------------------------------------------------------------- -->
172 172
407 <listitem><simpara>Password</simpara></listitem> 407 <listitem><simpara>Password</simpara></listitem>
408 <listitem><simpara>password</simpara></listitem> 408 <listitem><simpara>password</simpara></listitem>
409 </itemizedlist> 409 </itemizedlist>
410 410
411 <para> 411 <para>
412 Please upload the changes to the PO file to GNOME's CVS or email me the 412 Please upload the changes to the PO file to GNOME's SVN or email me the
413 updated PO file. If you email me the updates, please make sure that you 413 updated PO file. If you email me the updates, please make sure that you
414 grab the latest PO file from CVS. 414 grab the latest PO file from SVN.
415 </para> 415 </para>
416 416
417 </sect1> 417 </sect1>
418 418
419 <!-- ----------------------------------------------------------------- --> 419 <!-- ----------------------------------------------------------------- -->