1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-10 07:04:03 +00:00
freebsd-ports/www/p5-HTTP-Proxy/files/5.005-Makefile.PL
2004-03-23 17:02:07 +00:00

25 lines
579 B
Perl

--- Makefile.PL~ Tue Mar 23 17:31:09 2004
+++ Makefile.PL Tue Mar 23 17:31:28 2004
@@ -1,5 +1,21 @@
use ExtUtils::MakeMaker;
+if ($] < 5.006) {
+ for my $f (<lib/HTTP/Proxy/*/*.pm>) {
+ open F,$f;
+ my @f = <F>;
+ close F;
+ for (@f) {
+ if (/^use base qw\( (.*) \);/o) {
+ $_ = "use $1;\nuse vars '\@ISA';\n\@ISA = qw( $1 );\n";
+ }
+ }
+ open F, ">$f";
+ print F @f;
+ close F;
+ }
+}
+
WriteMakefile(
NAME => 'HTTP::Proxy',
VERSION_FROM => 'lib/HTTP/Proxy.pm',