aboutsummaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorLars Thegler <lth@FreeBSD.org>2010-09-21 08:09:53 +0000
committerLars Thegler <lth@FreeBSD.org>2010-09-21 08:09:53 +0000
commitd2e872f445b1d75fdd522d5670a02d98f99b69b6 (patch)
tree75db57f7fb52753af3f0641a96900e71e31497ac /mail
parent8e7bfe2e007798ccf17fcb39b2234adb81f51d96 (diff)
downloadports-d2e872f445b1d75fdd522d5670a02d98f99b69b6.tar.gz
ports-d2e872f445b1d75fdd522d5670a02d98f99b69b6.zip
Notes
Diffstat (limited to 'mail')
-rw-r--r--mail/p5-Net-IMAP-Simple/Makefile1
-rw-r--r--mail/p5-Net-IMAP-Simple/files/patch-Makefile.PL12
2 files changed, 13 insertions, 0 deletions
diff --git a/mail/p5-Net-IMAP-Simple/Makefile b/mail/p5-Net-IMAP-Simple/Makefile
index cd21147ce959..837314d70da2 100644
--- a/mail/p5-Net-IMAP-Simple/Makefile
+++ b/mail/p5-Net-IMAP-Simple/Makefile
@@ -7,6 +7,7 @@
PORTNAME= Net-IMAP-Simple
PORTVERSION= 1.2017
+PORTREVISION= 1
CATEGORIES= mail perl5
MASTER_SITES= CPAN/../by-authors/id/J/JE/JETTERO
PKGNAMEPREFIX= p5-
diff --git a/mail/p5-Net-IMAP-Simple/files/patch-Makefile.PL b/mail/p5-Net-IMAP-Simple/files/patch-Makefile.PL
new file mode 100644
index 000000000000..398073e409bf
--- /dev/null
+++ b/mail/p5-Net-IMAP-Simple/files/patch-Makefile.PL
@@ -0,0 +1,12 @@
+--- ./Makefile.PL.orig 2010-08-09 15:49:20.000000000 +0200
++++ ./Makefile.PL 2010-09-18 18:17:48.000000000 +0200
+@@ -1,8 +1,7 @@
+ use ExtUtils::MakeMaker;
+ use ExtUtils::Command qw(cp);
+
+-my $build_simplex = prompt("Do you wish to include some simple protocol extensions (pulls in Parse::RecDescent)? ",
+- $ENV{OVERRIDE_DEFAULT_SX} ? $ENV{OVERRIDE_DEFAULT_SX} : "y");
++my $build_simplex = $ENV{WITH_SX} ? 'Y' : '';
+
+ if( $build_simplex =~ m/[Yy]/ ) {
+ local @ARGV = qw(contrib/SimpleX.pod contrib/SimpleX.pm .);