updates.
[silc.git] / README.CVS
index 4d534eb2e13f0f9f4090edea3c2cfd678b53159d..9db7980e332f52118d2fcc87bd76c793aa776d48 100644 (file)
@@ -3,25 +3,12 @@ Anonymous CVS Access
 
 Anonymous CVS access is now available to SILC CVS repository. The
 repository includes everything related to SILC project; source codes,
-documentation and even these web pages. The CVS access and hosting for the
-public SILC CVS mirror is kindly provided by SourceForge.  The actual CVS
-repository that is used in the development resides in silc.pspt.fi and is
-mirrored by SourceForge.
+documentation and web pages.
 
 Also note that this is the closest to real time development you can get
 thus you cannot expect that the source tree would work or even compile.
 While it is our intention that the trunk would always at least compile
-there might be situations when it will not. The CVS repository is mirrored
-hourly by the SourceForge.
-
-
-Browsing the Source Tree
-========================
-
-If you want to browse the source tree using web browser before checking
-out the tree with CVS use following link:
-
-http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/?cvsroot=silc
+there might be situations when it will not.
 
 
 Howto Checkout The Source Tree
@@ -32,34 +19,34 @@ There are no password restrictions in the SILC anonymous CVS repository.
 
 For those who are using sh/ksh/bash the check out is done as follows:
 
-export CVSROOT=:pserver:anonymous@cvs.silc.sourceforge.net:/cvsroot/silc
+export CVSROOT=:pserver:silc@silc.pspt.fi:/storage/silc/CVS
 cvs login
 cvs co silc
 
 For those who are using csh/tcsh the check out is done as follows:
 
-setenv CVSROOT :pserver:anonymous@cvs.silc.sourceforge.net:/cvsroot/silc
+setenv CVSROOT :pserver:silc@silc.pspt.fi:/storage/silc/CVS
 cvs login
 cvs co silc
 
 If you don't want to set $CVSROOT environment variable you can set the
 path to the cvs as command line options:
 
-cvs -d:pserver:anonymous@cvs.silc.sourceforge.net:/cvsroot/silc login
-cvs -d:pserver:anonymous@cvs.silc.sourceforge.net:/cvsroot/silc co silc
+cvs -d:pserver:silc@silc.pspt.fi:/storage/silc/CVS login
+cvs -d:pserver:silc@silc.pspt.fi:/storage/silc/CVS co silc
 
 What ever method you decide to use, after you have done cvs login you will
 be prompted for password:
 
-       CVS password:
+       CVS password: silc
 
-There is no password so you can press enter when prompted.
+Type the password "silc" and press Enter.
 
 The actual SILC source tree is checked out using the cvs co silc command,
 described above. This command will fetch the source tree and save it into
 directory named silc. SILC CVS repository currently does not have any
 branches thus this will check out the trunk. The size of the trunk is
-currently about 1.5 Mb but will grow in the future.
+currently about 8 Mb but will grow in the future.
 
 
 What SILC Source Tree Includes
@@ -107,7 +94,7 @@ Howto Compile SILC Source Tree
 ==============================
 
 After checkout from CVS the SILC source tree must be prepared for 
-configuration and compilation.  To compile the source three, give,
+configuration and compilation.  To compile the source tree, give,
 
        ./prepare
        ./configure --enable-debug
@@ -127,8 +114,10 @@ SILC_LOG_DEBUG* scripts.  Warning is due here:  The debugging produced
 by both cilent and server is very heavy, thus it is common to test
 the programs as follows:
 
-       ./silc -f configfile 2>log
-       ./silcd -f configfile 2>log
+       ./silc -d -f configfile 2>log
+       ./silcd -d -f configfile 2>log
+
+Do not give the -d options if you do not want to dump the debugging.
 
 
 Howto Clean SILC Source Tree