=================================================================== RCS file: /cvs/cvsweb/Attic/cvsweb.conf-freebsd,v retrieving revision 3.1 retrieving revision 3.3 diff -u -p -r3.1 -r3.3 --- cvsweb/Attic/cvsweb.conf-freebsd 2001/01/01 23:15:03 3.1 +++ cvsweb/Attic/cvsweb.conf-freebsd 2001/01/11 23:42:01 3.3 @@ -2,10 +2,14 @@ # # Set up for FreeBSD repo options. # -# $Id: cvsweb.conf-freebsd,v 3.1 2001/01/01 23:15:03 knu Exp $ +# $Id: cvsweb.conf-freebsd,v 3.3 2001/01/11 23:42:01 knu Exp $ -$ENV{'RCSLOCALID'} = 'FreeBSD=CVSHeader'; -$ENV{'RCSINCEXC'} = 'iFreeBSD'; +if ($uname eq 'FreeBSD') { + $ENV{'RCSLOCALID'} = 'FreeBSD=CVSHeader'; + $ENV{'RCSINCEXC'} = 'iFreeBSD'; +} else { + $ENV{'RCSLOCALID'} = 'FreeBSD'; +} @prcategories = qw( advocacy @@ -27,5 +31,8 @@ $prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi?pr=% $prkeyword = "PR"; $mancgi = "http://www.FreeBSD.org/cgi/man.cgi?apropos=0&sektion=%s&query=%s&manpath=FreeBSD+5.0-current&format=html"; + +# Allow downloading a tarball of a port +$allow_tar = ($where =~ m,^ports/[^/]+/[^/]+/,); 1;