openbsd-ports/shells/perlsh/patches/patch-Makefile_PL
alek ef747cfccc Import perlsh 1.8
The Perl Shell is a shell that combines the interactive nature of a Unix
shell with the power of Perl. The goal is to have a full featured shell
that behaves as expected for normal shell activity.

From Jasper Lievisse Adriaanse <jasper@nedbsd.nl>
2005-10-23 10:29:21 +00:00

31 lines
814 B
Plaintext

$OpenBSD: patch-Makefile_PL,v 1.1.1.1 2005/10/23 10:29:21 alek Exp $
--- Makefile.PL.orig Thu Jan 16 20:11:38 2003
+++ Makefile.PL Sun Oct 23 11:59:18 2005
@@ -4,6 +4,7 @@ my $pms= {};
my $pods= {};
my $sb_depends='';
my $sb_files='';
+my $man_files='lib/Psh/StrategyBunch.tail';
my $sb_winfiles='';
my @sb_winfiles=();
@@ -21,10 +22,7 @@ sub MY::postamble {
# to copy share files after installation
my $tmp="
-install ::
- \$(PERL) postinstall.pl \$(SITEPREFIX) \$(PREFIX)
-
lib/Psh/StrategyBunch.pm : $sb_depends
";
if ($^O eq 'MSWin32') {
@@ -34,6 +32,7 @@ lib/Psh/StrategyBunch.pm : $sb_depends
} else {
$tmp.=" echo \"## do not modify - autogenerated ##\" > lib/Psh/StrategyBunch.pm
cat $sb_files >> lib/Psh/StrategyBunch.pm
+ cat $man_files >> lib/Psh/StrategyBunch.pm
";
}