
To install DCVS....

1.  Unpack dcvs.tar.gz to a directory NOT published
    by your web server.
   
2.  Run checksetup.pl and see it complain about the other
    components you need to install.

    This link might be useful...
    ftp://ftp.redhat.com/pub/redhat/linux/7.1/en/powertools/i386/RedHat/RPMS/perl-TimeDate-1.10-1.i386.rpm

    It will create tables and instruct you on configuring the
    database if needed.

3.  Configure your web server to see the dcvs.cgi script.

    This is most easily done with a ScriptAlias statement.
       ScriptAlias /dcvs /path/to/dcvs/dcvs.cgi
    It can go inside of a <VirtualHost> if you like. For example...
       <VirtualHost dcvs.fdd.com>
           ScriptAlias /   /path/to/dcvs/dcvs.cgi
       </VirtualHost>
    Don't forget to "apachectl graceful"

    Otherwise, if your apache does symbolic links and
    a cgi-bin directory..
       ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
       <Directory "/var/www/cgi-bin">
           Options FollowSymLinks
       </Directory>
    then add a symbolic link....
        cd /var/www/cgi-bin
        ln -s /path/to/dcvs.cgi .	

    If you set "Options +ExecCGI +FollowSymLinks", you will probably 
    need a statement like...
       AddHandler cgi-script .cgi

4.  Use the loadrcs.pl script to load any existing repositories.
    (use rm-dcvs.pl if you make a mistake.)

5.  Run dcvsd.pl daemon if you wish to support pserver protocol.

6.  Create user accounts using the web pages if needed.




