summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--converters/p5-Convert-Bencode/Makefile14
-rw-r--r--converters/p5-Convert-Bencode/files/extrapatch-lib-Convert-Bencode.pm25
-rw-r--r--databases/p5-Class-DBI-AsForm/Makefile10
-rw-r--r--databases/p5-Class-DBI-AsForm/files/500503-AsForm.pm25
4 files changed, 2 insertions, 72 deletions
diff --git a/converters/p5-Convert-Bencode/Makefile b/converters/p5-Convert-Bencode/Makefile
index 147002be4505..6715041a4a32 100644
--- a/converters/p5-Convert-Bencode/Makefile
+++ b/converters/p5-Convert-Bencode/Makefile
@@ -22,16 +22,4 @@ PERL_CONFIGURE= yes
MAN3= Convert::Bencode.3
-.include <bsd.port.pre.mk>
-
-.if ${PERL_LEVEL} < 500600
-EXTRA_PATCHES= ${PATCHDIR}/extrapatch-lib-Convert-Bencode.pm
-
-post-patch:
- ${FIND} ${WRKSRC} -name "*.orig" -delete
-
-post-configure:
- ${PERL} -pi -e 's/-I\S+PERL\S+ //g if m{PERL_DL_NONLAZY}' ${WRKSRC}/Makefile
-.endif
-
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
diff --git a/converters/p5-Convert-Bencode/files/extrapatch-lib-Convert-Bencode.pm b/converters/p5-Convert-Bencode/files/extrapatch-lib-Convert-Bencode.pm
deleted file mode 100644
index febea4742d9e..000000000000
--- a/converters/p5-Convert-Bencode/files/extrapatch-lib-Convert-Bencode.pm
+++ /dev/null
@@ -1,25 +0,0 @@
---- lib/Convert/Bencode.pm.orig Tue Oct 7 05:07:53 2003
-+++ lib/Convert/Bencode.pm Mon Feb 20 01:00:56 2006
-@@ -64,12 +64,10 @@
- =cut
-
- use strict;
--use warnings;
--use bytes;
-
- BEGIN {
- use Exporter ();
-- our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, @EXPORT_FAIL, %EXPORT_TAGS);
-+ use vars qw($VERSION @ISA @EXPORT @EXPORT_OK @EXPORT_FAIL %EXPORT_TAGS);
-
- $VERSION = 1.03;
- @ISA = qw(Exporter);
-@@ -77,7 +75,7 @@
- @EXPORT_FAIL = qw(&_dechunk);
- %EXPORT_TAGS = (all => [qw(&bencode &bdecode)]);
- }
--our @EXPORT_OK;
-+use vars @EXPORT_OK;
-
- END { }
-
diff --git a/databases/p5-Class-DBI-AsForm/Makefile b/databases/p5-Class-DBI-AsForm/Makefile
index b78649295a20..ae9d51d67d29 100644
--- a/databases/p5-Class-DBI-AsForm/Makefile
+++ b/databases/p5-Class-DBI-AsForm/Makefile
@@ -23,12 +23,4 @@ PERL_CONFIGURE= yes
MAN3= Class::DBI::AsForm.3
-.include <bsd.port.pre.mk>
-
-.if ${PERL_LEVEL} < 500600
-EXTRA_PATCHES= ${PATCHDIR}/500503-AsForm.pm
-post-patch:
- @${RM} ${WRKSRC}/lib/Class/DBI/AsForm.pm.orig
-.endif
-
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
diff --git a/databases/p5-Class-DBI-AsForm/files/500503-AsForm.pm b/databases/p5-Class-DBI-AsForm/files/500503-AsForm.pm
deleted file mode 100644
index 3f84859e4e74..000000000000
--- a/databases/p5-Class-DBI-AsForm/files/500503-AsForm.pm
+++ /dev/null
@@ -1,25 +0,0 @@
---- lib/Class/DBI/AsForm.pm.orig Wed Sep 7 11:53:35 2005
-+++ lib/Class/DBI/AsForm.pm Wed Sep 7 11:55:48 2005
-@@ -1,18 +1,17 @@
- package Class::DBI::AsForm;
-
--use 5.006;
--our $VERSION = '2.42';
-+use vars qw($VERSION $OLD_STYLE @EXPORT);
-+$VERSION = '2.42';
-
- use strict;
--use warnings;
-
- use base 'Exporter';
-
- use Class::DBI::Plugin::Type ();
- use HTML::Element;
-
--our $OLD_STYLE = 0;
--our @EXPORT = qw( to_cgi to_field _to_textarea _to_textfield _to_select
-+$OLD_STYLE = 0;
-+@EXPORT = qw( to_cgi to_field _to_textarea _to_textfield _to_select
- type_of );
-
- =head1 NAME