# HG changeset patch # User masneyb # Date 1174005347 0 # Node ID f7a06eea66ce71c5cac132301d8dcea6d2ee6074 # Parent eb1b26c0b42a75e1168b40872d4d0170d30e4b4e 2007-3-15 Brian Masney * docs/gftp-faq.sgml - updated FAQ entry about how to check the latest code out of SVN. diff -r eb1b26c0b42a -r f7a06eea66ce ChangeLog --- a/ChangeLog Wed Mar 14 07:00:11 2007 +0000 +++ b/ChangeLog Fri Mar 16 00:35:47 2007 +0000 @@ -1,3 +1,7 @@ +2007-3-15 Brian Masney + * docs/gftp-faq.sgml - updated FAQ entry about how to check the + latest code out of SVN. + 2007-3-12 Brian Masney * configure.in - removed call to AC_CONFIG_HEADERS macro diff -r eb1b26c0b42a -r f7a06eea66ce docs/gftp-faq.sgml --- a/docs/gftp-faq.sgml Wed Mar 14 07:00:11 2007 +0000 +++ b/docs/gftp-faq.sgml Fri Mar 16 00:35:47 2007 +0000 @@ -136,35 +136,35 @@ -Does gFTP have a CVS repository? +Does gFTP have a SVN repository? -gFTP is stored in GNOME's CVS repository. For instructions on how to -setup your CVS client, you can visit the webpage -http://developer.gnome.org/tools/cvs.html for instructions. In a nutshell, you will need to run -the following commands (this assumes you are using the bash -shell): +gFTP is stored in GNOME's SVN repository. For instructions on how to +setup your subversion client, visit the website +http://developer.gnome.org/tools/svn.html. +In a nutshell, you will need to run the following command to download the latest code: + -export CVSROOT=":pserver:anonymous@anoncvs.gnome.org:/cvs/gnome" -cvs login - - -Just hit enter at the password prompt since there is no password. - - -cvs co gftp +svn co http://svn.gnome.org/svn/gftp/trunk gftp -To compile the CVS code, you will need autoconf, -automake 1.4 and gettext -installed on your system. To generate a configure script, you will -need to run autogen.sh. Once this script is -generated, you can follow the normal installation instructions. +To compile the SVN code, you will need autoconf, +automake and gettext +installed on your system. Once you have those packages installed, run +the following series of commands: + + + +Run ./autogen.sh to generate the configure scripts. +If that is successful, run ./configure to generate the Makefiles. By default, the binaries will be installed in /usr/local/bin. You can change the install location by passing the --prefix argument to configure. For example, let's say you want to install the binaries in /usr/bin. Run configure --prefix=/usr. +If that is successful, run make to build the source. +Optional: If that is successful, run make install to install the binary on your computer. + @@ -409,9 +409,9 @@ -Please upload the changes to the PO file to GNOME's CVS or email me the +Please upload the changes to the PO file to GNOME's SVN or email me the updated PO file. If you email me the updates, please make sure that you -grab the latest PO file from CVS. +grab the latest PO file from SVN.