summaryrefslogtreecommitdiff
path: root/devel/cvsweb3/files/patch-cvsweb.conf
diff options
context:
space:
mode:
Diffstat (limited to 'devel/cvsweb3/files/patch-cvsweb.conf')
-rw-r--r--devel/cvsweb3/files/patch-cvsweb.conf52
1 files changed, 0 insertions, 52 deletions
diff --git a/devel/cvsweb3/files/patch-cvsweb.conf b/devel/cvsweb3/files/patch-cvsweb.conf
deleted file mode 100644
index c5716494a73e..000000000000
--- a/devel/cvsweb3/files/patch-cvsweb.conf
+++ /dev/null
@@ -1,52 +0,0 @@
-Index: cvsweb.conf
-===================================================================
-RCS file: /home/ncvs/projects/cvsweb/cvsweb.conf,v
-retrieving revision 1.36
-diff -a -u -r1.36 cvsweb.conf
---- cvsweb.conf 10 Jul 2002 15:30:56 -0000 1.36
-+++ cvsweb.conf 23 Jul 2002 14:15:23 -0000
-@@ -18,7 +18,7 @@
- # uname, cvs, rlog, rcsdiff
- # gzip (if you enable $allow_compress)
- # tar, rm, zip (if you enable $allow_tar)
--$command_path = '/bin:/usr/bin:/usr/local/bin';
-+$command_path = '/bin:/usr/bin:!!PREFIX!!/bin';
-
- # Search the above directories for each command
- for (qw(uname cvs rlog rcsdiff gzip tar rm zip)) {
-@@ -43,7 +43,7 @@
- # 'symbolic_name' => ['name_to_display', 'path_to_the_actual_repository']
- # Listed in the order specified:
- @CVSrepositories = (
-- 'local' => ['Local Repository', '/home/cvs'],
-+ 'local' => ['!!TITLE!!', '!!CVSROOT!!'],
- # 'freebsd' => ['FreeBSD', '/home/ncvs'],
- # 'openbsd' => ['OpenBSD', '/home/ncvs'],
- # 'netbsd' => ['NetBSD', '/home/ncvs'],
-@@ -200,7 +200,7 @@
- # These default icons are coming with apache.
- # If these icons are too large, check out the miniicons in the
- # icons/ directory; they have a width/height of 16/16
--my $iconsdir = "/icons";
-+my $iconsdir = "/icons/cvsweb";
-
- # format: TEXT ICON-URL width height
- %ICONS = (
-@@ -335,7 +335,7 @@
- # cvsweb to guess the correct mime-type on
- # checkout; you can use the mime.types from
- # apache here:
--$mime_types = '/usr/local/etc/apache/mime.types';
-+$mime_types = '!!PREFIX!!/etc/apache/mime.types';
-
- # quick mime-type lookup; maps file-suffices to
- # mime-types for displaying checkouts in the browser.
-@@ -472,7 +472,7 @@
- $allow_tar = '';
-
- # Options to pass to tar(1).
--@tar_options = qw();
-+@tar_options = qw(--ignore-failed-read);
-
- # e.g. @tar_options = qw(--ignore-failed-read);
- # GNU tar has some useful options against unexpected errors.