diff --git a/en/cgi/pds.cgi b/en/cgi/pds.cgi
index 9b0f0358d4..01c11ee0ca 100755
--- a/en/cgi/pds.cgi
+++ b/en/cgi/pds.cgi
@@ -26,7 +26,7 @@
 # pds.cgi - FreeBSD Ports download sources cgi script
 #	    print a list of source files for a port
 #
-# $FreeBSD: www/en/cgi/pds.cgi,v 1.8 2002/04/17 05:03:38 kuriyama Exp $
+# $FreeBSD: www/en/cgi/pds.cgi,v 1.9 2002/04/17 08:15:39 kuriyama Exp $
 
 sub escape($) { $_ = $_[0]; s/&/&amp;/g; s/</&lt;/g; s/>/&gt;/g; $_; }
 
@@ -39,7 +39,7 @@ require "./cgi-style.pl";
 $file = escape($ENV{'QUERY_STRING'});
 $file_rcs = "$file/Makefile,v";
 
-$cvsroot = "/home/ncvs";
+$cvsroot = "/usr/local/www/cvsroot/FreeBSD";
 $co = '/usr/bin/co';
 $make = '/usr/bin/make';
 $pds = '/usr/local/www/bin/pds';
diff --git a/en/cgi/ports.cgi b/en/cgi/ports.cgi
index b76d0bd4e4..498c96e28c 100755
--- a/en/cgi/ports.cgi
+++ b/en/cgi/ports.cgi
@@ -24,7 +24,7 @@
 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 # SUCH DAMAGE.
 #
-# $FreeBSD: www/en/cgi/ports.cgi,v 1.60 2002/02/12 10:48:04 wosch Exp $
+# $FreeBSD: www/en/cgi/ports.cgi,v 1.61 2002/04/18 18:04:27 phantom Exp $
 #
 # ports.cgi - search engine for FreeBSD ports
 #             	o search for a port by name or description
@@ -36,7 +36,7 @@
 
 
 sub init_variables {
-    $cvsroot = '/home/ncvs';	# $CVSROOT
+    $cvsroot = '/usr/local/www/cvsroot/FreeBSD';	# $CVSROOT
     $localPrefix = '/usr/ports';	# ports prefix
     $ports_database = 'ports/INDEX';
     # unset $ENV{'CVSROOT'};
@@ -557,7 +557,7 @@ sub footer {
 <img ALIGN="RIGHT" src="/gifs/powerlogo.gif">
 &copy; 1996-2001 by Wolfram Schneider. All rights reserved.<br>
 };
-    #print q{$FreeBSD: www/en/cgi/ports.cgi,v 1.60 2002/02/12 10:48:04 wosch Exp $} . "<br>\n";
+    #print q{$FreeBSD: www/en/cgi/ports.cgi,v 1.61 2002/04/18 18:04:27 phantom Exp $} . "<br>\n";
     print qq{Please direct questions about this service to
 <I><A HREF="$mailtoURL">$mailto</A></I><br>\n};
     print qq{General questions about FreeBSD ports should be sent to } .
diff --git a/en/cgi/url.cgi b/en/cgi/url.cgi
index 2e4d69f751..cb6e1c5b4f 100755
--- a/en/cgi/url.cgi
+++ b/en/cgi/url.cgi
@@ -26,7 +26,7 @@
 #
 # url.cgi - make plain text URLs clickable
 #
-# $FreeBSD: www/en/cgi/url.cgi,v 1.29 2001/03/11 20:45:45 wosch Exp $
+# $FreeBSD: www/en/cgi/url.cgi,v 1.30 2001/12/11 21:37:30 wosch Exp $
 
 use strict;
 
@@ -70,7 +70,7 @@ if ($file =~ m%^ports/([\w-]+)/(\w[\w-+.]+)/pkg-descr%) {
 }
 
 # do cvs checkout 
-my($cvsroot) = '/home/ncvs';
+my($cvsroot) = '/usr/local/www/cvsroot/FreeBSD';
 if ($file =~ m%^ports/[\w-]+/\w[\w-+.]*/pkg-descr% && -f "$cvsroot/$file,v") {
     open(CO, "-|") || 
 	exec ('/usr/bin/co', '-p', '-q', "$cvsroot/$file,v") ||