1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/japanese/mhonarc/files/patch-aa
Seiichirou Hiraoka 0aea03c7c3 Submitted by: flathill@FreeBSD.ORG
WWW front end for mail archives.
1999-03-31 11:48:28 +00:00

33 lines
1.2 KiB
Plaintext

--- install.me.orig Sun Nov 8 21:01:53 1998
+++ install.me Tue Mar 2 12:02:55 1999
@@ -263,7 +263,7 @@
exit !$ret;
}
- my $cfg_prefix = $Config{'prefix'};
+ my $cfg_prefix = "/usr/local";
$DefValues{'binpath'} = $Config{'installbin'};
$DefValues{'libpath'} = $Config{'installsitelib'};
$DefValues{'manpath'} = $Config{'installman1dir'};
@@ -271,9 +271,9 @@
$DefValues{'binpath'} =~ s/^\Q$cfg_prefix/$OptValues{'prefix'}/o;
$DefValues{'libpath'} =~ s/^\Q$cfg_prefix/$OptValues{'prefix'}/o;
$DefValues{'manpath'} =~ s/^\Q$cfg_prefix/$OptValues{'prefix'}/o;
- $DefValues{'docpath'} = join($DIRSEP, $OptValues{'prefix'}, 'doc');
+ $DefValues{'docpath'} = join($DIRSEP, $OptValues{'prefix'}, 'share/doc');
} else {
- $DefValues{'docpath'} = join($DIRSEP, $cfg_prefix, 'doc');
+ $DefValues{'docpath'} = join($DIRSEP, $cfg_prefix, 'share/doc');
}
$DefValues{'manpath'} =~ s|(${DIRSEPRX}man)${DIRSEPRX}.*|$1|;
@@ -294,6 +294,8 @@
\%Files);
$DefValues{'docpath'} .= $DIRSEP . $Files{'name'}[0]
+ if $Files{'name'}[0];
+ $DefValues{'libpath'} .= $DIRSEP . $Files{'name'}[0]
if $Files{'name'}[0];
$dobin = defined($Files{'bin'}) && scalar(@{$Files{'bin'}}) &&
!$OptValues{'nobin'};