summaryrefslogtreecommitdiff
path: root/sysutils/p5-Mac-AppleScript-Glue/patches/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/p5-Mac-AppleScript-Glue/patches/patch-ac')
-rw-r--r--sysutils/p5-Mac-AppleScript-Glue/patches/patch-ac32
1 files changed, 32 insertions, 0 deletions
diff --git a/sysutils/p5-Mac-AppleScript-Glue/patches/patch-ac b/sysutils/p5-Mac-AppleScript-Glue/patches/patch-ac
new file mode 100644
index 00000000000..987080dbed2
--- /dev/null
+++ b/sysutils/p5-Mac-AppleScript-Glue/patches/patch-ac
@@ -0,0 +1,32 @@
+$NetBSD: patch-ac,v 1.1.1.1 2010/02/18 02:56:35 seb Exp $
+
+Modernize POP tests.
+
+--- t/pod.t.orig 2002-09-08 05:18:03.000000000 +0200
++++ t/pod.t
+@@ -7,21 +7,7 @@
+
+ use strict;
+
+-my %pods;
+-
+-BEGIN {
+- use Pod::Find qw(pod_find);
+-
+- %pods = pod_find(
+- {
+- -verbose => 1,
+- },
+- 'blib'
+- );
+-}
+-
+-use Test::Pod tests => scalar keys %pods;
+-
+-for my $pod (keys %pods) {
+- pod_ok($pod);
+-}
++use Test::More;
++eval "use Test::Pod 1.00";
++plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
++all_pod_files_ok();