File: cvsweb.conf-freebsd

package info (click to toggle)
cvsweb 3%3A3.0.6-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,092 kB
  • sloc: perl: 3,398; sh: 44; makefile: 10
file content (46 lines) | stat: -rw-r--r-- 910 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*-perl-*-
#
# Set up for FreeBSD repo options.
#
# $FreeBSD: projects/cvsweb/cvsweb.conf-freebsd,v 1.10 2004/06/07 19:33:11 knu Exp $
# $Idaemons: /home/cvs/cvsweb/cvsweb.conf-freebsd,v 1.5 2001/08/01 09:32:22 knu Exp $

if ($^O eq 'freebsd') {
	$ENV{'RCSLOCALID'} = 'FreeBSD=CVSHeader';
	$ENV{'RCSINCEXC'}  = 'iFreeBSD';
} else {
	$ENV{'RCSLOCALID'} = 'FreeBSD';
}

@prcategories = qw(
    advocacy
    alpha
    amd64
    bin
    conf
    docs
    gnu
    i386
    ia64
    java
    kern
    misc
    pending
    ports
    powerpc
    sparc64
    standards
    www
);

$prcgi = "http://www.FreeBSD.org/cgi/query-pr.cgi?pr=%s";

$prkeyword = "PR";

$mancgi =
    "http://www.FreeBSD.org/cgi/man.cgi?apropos=0&sektion=%s&query=%s&manpath=FreeBSD+5.2-current&format=html";

# Allow downloading a tarball of a port or a project directory
$allow_tar = ($where =~ m,^(ports/[^/]+/[^/]+/|projects/[^/]+/),);

1;