diff options
author | tv <tv> | 2001-07-09 17:10:25 +0000 |
---|---|---|
committer | tv <tv> | 2001-07-09 17:10:25 +0000 |
commit | bebb9fe5f795da977105f7a9549bca25e2eab850 (patch) | |
tree | 508d438c82508885c51b0541a22e4a250e9bd0a9 /lang/perl5 | |
parent | 4e013ba220aece4989919d4993cd6063c808dddf (diff) | |
download | pkgsrc-bebb9fe5f795da977105f7a9549bca25e2eab850.tar.gz |
* Make perl stop installing anything in the man3 directory. It's starting
to install things like "open.3" and "lib.3" which confuse users. Perl
ships with a documentation tool, "perldoc", for this purpose; create a
MESSAGE indicating that it should be used instead. (Perl still installs
command line program manual pages in man1.)
* Integrate bsd.perl.mk into the perl5-base build where it should have been
from the beginning. The separate perl-mk pkg makes binary packages of
perl-mk completely useless[*]. Older perl builders will not break, since
<bsd.pkg.mk> contains fallback definitions that are evaluated at pkg
build time.
=====
[*] bsd.perl.mk is tightly bound to the version of perl that is installed.
The version name "perl-mk-1.1" is completely useless as a binary pkg,
since keeping multiple binary versions of perl on a FTP server means
that one of the perl-mk's will get clobbered.
However, putting the current pkgsrc PERL5_DIST_VERS in the perl-mk pkg
is also a problem, because that doesn't necessarily reflect the
installed version of perl. Snarfing the installed version at perl-mk
build time would be even uglier, since you could not then walk the tree
without perl being installed.
The cleanest solution is to integrate bsd.perl.mk into the perl5-base
pkg, and let those who have not upgraded perl yet use the runtime
definitions in <bsd.pkg.mk>.
Diffstat (limited to 'lang/perl5')
-rw-r--r-- | lang/perl5/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lang/perl5/Makefile b/lang/perl5/Makefile index f7b47011cf6..f173534d858 100644 --- a/lang/perl5/Makefile +++ b/lang/perl5/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2001/06/07 04:25:33 jlam Exp $ +# $NetBSD: Makefile,v 1.38 2001/07/09 17:10:27 tv Exp $ .include "../../lang/perl5/Makefile.common" @@ -12,7 +12,6 @@ COMMENT= Practical Extraction and Report Language DEPENDS+= perl-base>=${PERL5_DIST_VERS}:../../lang/perl5-base DEPENDS+= p5-CGI>=2.75.2:../../www/p5-CGI -DEPENDS+= perl-mk-1.1:../../pkgtools/perl-mk EXTRACT_ONLY= # empty NO_CHECKSUM= # defined |