mirror of
https://git.freebsd.org/ports.git
synced 2025-06-20 12:10:31 -04:00
been returning to life and committing acts of murder." -- Night of the Living Dead (1968) Update to new layout. Update master sites. Update link to home page. Fix path to perl5 (fixes a bug reported in PR 14353). Use system rcs by default (same fix as in PR 14353). Correct several instances of doubled word "the the" in man page. Take over maintainership. Missing repository files replaced by: joe Permissions problem fixed by: the unknown cvsmeister PR: 14353, 34530, and 34702
32 lines
1,010 B
Text
32 lines
1,010 B
Text
--- CONFIG.old Wed May 21 11:39:38 1997
|
|
+++ CONFIG Fri Feb 1 04:43:42 2002
|
|
@@ -14,17 +14,17 @@
|
|
# The absolute path to the perl interpreter to use.
|
|
# INSTALL will substitute this into the #!... line.
|
|
#
|
|
-if (! defined($PERL5)) { $PERL5 = "/usr/local/bin/perl5"; } # cfg
|
|
+if (! defined($PERL5)) { $PERL5 = "$ENV{'PERL5'}"; } # cfg
|
|
|
|
# Where to install the cvslines scripts...
|
|
# (Absolute path)
|
|
#
|
|
-if (! defined($BINDIR)) { $BINDIR = "/usr/local/bin"; } # cfg
|
|
+if (! defined($BINDIR)) { $BINDIR = "$ENV{'PREFIX'}/bin"; } # cfg
|
|
|
|
# Where to install the cvslines man page...
|
|
# (Absolute path)
|
|
#
|
|
-if (! defined($MANDIR)) { $MAN1DIR = "/usr/local/man/man1"; } # cfg
|
|
+if (! defined($MANDIR)) { $MAN1DIR = "$ENV{'PREFIX'}/man/man1"; } # cfg
|
|
|
|
######################################################################
|
|
#
|
|
@@ -52,7 +52,7 @@
|
|
|
|
# Where the RCS to use with cvslines is kept.
|
|
#
|
|
-\$RCSBIN = "$BINDIR"; # cfg
|
|
+\$RCSBIN = "/usr/bin/"; # cfg
|
|
|
|
1;
|
|
|