aboutsummaryrefslogtreecommitdiff
path: root/www/p5-WWW-Mechanize
diff options
context:
space:
mode:
authorAnton Berezin <tobez@FreeBSD.org>2004-07-07 07:16:28 +0000
committerAnton Berezin <tobez@FreeBSD.org>2004-07-07 07:16:28 +0000
commit1fe492e7a67b6eb27a2a0161bb14ff68c4048aae (patch)
tree3b9c23145674b9c8b9baf5a4ae9acbff9f00b36e /www/p5-WWW-Mechanize
parent3bffad346459b35f0ef392d703c6e62715aa0b46 (diff)
downloadports-1fe492e7a67b6eb27a2a0161bb14ff68c4048aae.tar.gz
ports-1fe492e7a67b6eb27a2a0161bb14ff68c4048aae.zip
In last update I forgot to commit this patch. Fix the build.
Reported by: Mike Harding <mvh@ix.netcom.com>
Notes
Notes: svn path=/head/; revision=113114
Diffstat (limited to 'www/p5-WWW-Mechanize')
-rw-r--r--www/p5-WWW-Mechanize/files/patch-Makefile.PL62
1 files changed, 11 insertions, 51 deletions
diff --git a/www/p5-WWW-Mechanize/files/patch-Makefile.PL b/www/p5-WWW-Mechanize/files/patch-Makefile.PL
index 74315e8146d0..ec2af4376db2 100644
--- a/www/p5-WWW-Mechanize/files/patch-Makefile.PL
+++ b/www/p5-WWW-Mechanize/files/patch-Makefile.PL
@@ -1,56 +1,16 @@
---- Makefile.PL.orig Mon Aug 18 03:35:42 2003
-+++ Makefile.PL Fri Oct 3 11:47:30 2003
-@@ -5,28 +5,7 @@
- use constant FLAG_SKIPMECHDUMP => "t/SKIP-MECH-FORMS";
-
- # Much logic stolen fromm libwww-perl's Makefile.PL
--my $skiplive = 0;
--
--require IO::Socket;
--my $s = IO::Socket::INET->new(PeerAddr => "www.google.com:80",
-- Timeout => 10,
-- );
--if ($s) {
-- close($s);
-- $skiplive = 0;
--} else {
-- print <<EOT;
--
--It seems that you are not directly connected to the Internet. Some
--of the WWW::Mechanize tests interact with websites such as Google,
--in addition to its own internal tests.
--
--EOT
--
-- if ( prompt("Do you want to skip these tests?", "y") =~ /^y/i ) {
-- $skiplive = 1;
-- }
--} # failed connect
-+my $skiplive = 1;
-
- my $tests = 't/*.t';
- $tests .= ' t/live/*.t' unless $skiplive;
-@@ -53,17 +32,17 @@
- 'test' => { TESTS => $tests },
+--- Makefile.PL.orig Sun Mar 28 06:06:04 2004
++++ Makefile.PL Fri May 21 13:02:17 2004
+@@ -1,4 +1,3 @@
+-require 5.6.1;
+ use ExtUtils::MakeMaker qw( WriteMakefile prompt );
+ use ExtUtils::Command qw( touch rm_f );
+ use File::Spec;
+@@ -63,7 +62,7 @@
+ clean => { FILES => join( " ", FLAG_SKIPMECHDUMP, 'WWW-Mechanize-0*' ) },
};
-if ( prompt( "Do you want to install the mech-dump utility?", "y" ) =~ /^y/i ) {
-+#if ( prompt( "Do you want to install the mech-dump utility?", "y" ) =~ /^y/i ) {
- $parms->{EXE_FILES} = [ 'script/mech-dump' ];
++if (1 or prompt( "Do you want to install the mech-dump utility?", "y" ) =~ /^y/i ) {
+ $parms->{EXE_FILES} = [ 'bin/mech-dump' ];
$parms->{PREREQ_PM}->{'Getopt::Long'} = 0;
$parms->{PREREQ_PM}->{'Pod::Usage'} = 0;
-
-- local @ARGV = FLAG_SKIPMECHDUMP;
-+ local @ARGV = (@ARGV, FLAG_SKIPMECHDUMP);
- rm_f();
--} else {
-- local @ARGV = FLAG_SKIPMECHDUMP;
-- touch();
--}
-+#} else {
-+# local @ARGV = FLAG_SKIPMECHDUMP;
-+# touch();
-+#}
-
-
- eval { require IO::Socket::SSL };