diff options
author | Anton Berezin <tobez@FreeBSD.org> | 2004-05-30 23:13:56 +0000 |
---|---|---|
committer | Anton Berezin <tobez@FreeBSD.org> | 2004-05-30 23:13:56 +0000 |
commit | ceb8fe7d89a842322c1416e9d2061e2b941392ac (patch) | |
tree | 9aaf272e194634a97e5b14ebd1d21cc812e29f26 /lang/perl5.12/files/use.perl | |
parent | Update to 0.78. The list of changes can be found at: (diff) |
1. Update to 5.8.4.
2. Make this port respect Makefile.local.
3. Transfer manpages to Makefile.man.
4. Move manpages for modules, included into distribution, into
lib/perl5/PERL_VER/perl/man/man3, to eliminate file conflicts
with p5 ports for modules included with perl.
5. Use PREFIX/SITE_PERL_REL instead of SITE_PERL in the Makefile.
6. Switch to bzipped sources.
7. Other small adjustments.
PR: 65925, 66096, 67205
Submitted by: foxfair (1), Charles Swiger <chuck@pkix.net> (1), krion (3)
Reported by: Roy Badami <roy@gnomon.org.uk> (2)
Notes
Notes:
svn path=/head/; revision=110433
Diffstat (limited to 'lang/perl5.12/files/use.perl')
-rw-r--r-- | lang/perl5.12/files/use.perl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lang/perl5.12/files/use.perl b/lang/perl5.12/files/use.perl index 354c8e1e59cc..ba6057f1c5db 100644 --- a/lang/perl5.12/files/use.perl +++ b/lang/perl5.12/files/use.perl @@ -69,6 +69,7 @@ EOF while (<MPOLD>) { next if m|use.perl generated line|; next if m|^\s*OPTIONAL_MANPATH\s+\S+/lib/perl5/%%PERL_VERSION%%/man\s*$|; + next if m|^\s*OPTIONAL_MANPATH\s+\S+/lib/perl5/%%PERL_VERSION%%/perl/man\s*$|; print MPNEW; } close MPNEW; @@ -112,6 +113,7 @@ EOF my $perl_port_manpath = <<EOF; # -- use.perl generated line -- # OPTIONAL_MANPATH %%PREFIX%%/lib/perl5/%%PERL_VERSION%%/man +OPTIONAL_MANPATH %%PREFIX%%/lib/perl5/%%PERL_VERSION%%/perl/man EOF open MPOLD, "< /etc/manpath.config" or die "/etc/manpath.config: $!"; |