HACKING, README, ANON-CVS: updates.
[bpt/guile.git] / ANON-CVS
index 0983712..cda3796 100644 (file)
--- a/ANON-CVS
+++ b/ANON-CVS
@@ -15,24 +15,43 @@ sources will be easier for us to evaluate and install, since the
 patch's original sources will be closer to what we're working with.
 And it allows us to start testing features earlier.
 
+Since the CVS tree is arranged for the convenience of the developers,
+it requires GCC and GNU Make, which together support automatic
+dependency management.  You will also need to install autoconf,
+automake, and libtool; the recommended versions are listed in HACKING.
+
 To check out a CVS working directory:
 
 1) Install CVS version 1.9 or later on your system.
+
 2) Log into the CVS server:
-     $ cvs -d :pserver:anoncvs@egcs.cygnus.com:/egcs/carton/cvsfiles login
-   At the prompt for `CVS password:', type `anoncvs'.
+    $ cvs -d :pserver:anoncvs@subversions.gnu.org:/cvs login
+
+   At the prompt for `CVS password:', simply press the enter key.
    Once you have logged in, your password is saved in ~/.cvspass, and you
    will not need to enter it again.
+
 3) Check out a module:
-     $ cvs -z 9 -d :pserver:anoncvs@egcs.cygnus.com:/egcs/carton/cvsfiles checkout guile-core
+
+    $ cvs -z 9 -d :pserver:anoncvs@subversions.gnu.org:/cvs checkout guile-core
+
    This should create a new directory `guile-core' in your current
    directory, and populate it with the current Guile sources.
 
-The modules available for checkout are:
+   To check out all modules use:
+
+    $ cvs -z 9 -d :pserver:anoncvs@subversions.gnu.org:/cvs checkout guile
+
+4) In the top directory of the source tree, run the command `./autogen.sh'.
+   This builds the configure script, Makefile.in, and other derived files
+   used by the build system.
+
+The modules available for checkout include:
+
   guile-core --- The scheme interpreter itself.
-  guile-doc --- Guile documentation-in-progress.
   guile-tcltk --- An interface between Guile and Tcl/Tk.
-  guile-scsh --- An incomplete port of SCSH 0.4.4 to Guile.
+  guile-scsh --- An incomplete port of scsh to Guile.
   guile-rgx-ctax --- This has been discontinued; use Andrew Archibald's
          distribution instead:
     ftp://ftp.red-bean.com/pub/guile/contrib/misc/guile-lang-allover-0.1.tar.gz
@@ -43,14 +62,21 @@ and efficiently:
 1) Go to the top directory of the source tree.  That is, your current
    directory should be the one containing `configure.in', `README',
    and so on.
+
 2) Do the update:
      $ cvs update
 
 This will incorporate any changes the developers have made to Guile
 since your last update into your source tree.
 
-The EGCS Project is kindly lending us space, time, and bandwidth on
-their CVS server.  Thanks, folks!
+
+Change Notification ==================================================
+
+If you would like to receive mail when people commit changes to the
+Guile CVS repository, you can subscribe to guile-cvs@gnu.org by using
+the Mailman mailing list interface at
+
+  <http://mail.gnu.org/mailman/listinfo/guile-cvs>
 
 
 Questions ============================================================
@@ -78,12 +104,3 @@ Questions ============================================================
   command will not overwrite them; instead, CVS will try to merge its
   changes with your changes, as if you had applied a patch.  Rejects are
   marked in the sources.
-
-- Why does the build process try to run autoconf, aclocal, or automake?
-
-  It shouldn't; if it does, that's a bug, I think.  Those are the
-  tools we use to generate `configure', `aclocal.m4', and the
-  `Makefile.in' files from their respective sources.  Ideally, you
-  shouldn't need to have them installed, if you don't want to change
-  those sources.  If you do, see the section in `README' called
-  `Hacking It Yourself'.