summaryrefslogtreecommitdiff
path: root/converters
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2006-01-01 22:11:09 +0000
committerwiz <wiz@pkgsrc.org>2006-01-01 22:11:09 +0000
commit85066fb1147d391de0f11a412cef2b16ee8ef2bb (patch)
treed6c4e644df03705037b0e1027ea9d5a5c3902125 /converters
parentbc5fc19c6fff2a28d72885a0f5cfac3625e52685 (diff)
downloadpkgsrc-85066fb1147d391de0f11a412cef2b16ee8ef2bb.tar.gz
Update to 3.07:
2005-11-30 Gisle Aas Release 3.07 Use a Makefile.PL that is also suitable for core perl. 2005-11-26 Gisle Aas Release 3.06 Documentation tweaks. use XSLoader; perl-5.6 now required. Some consting from bleadperl. Unbundled the {en,de}code-{base64,qp} utility scripts. These are now found in the MIME-Base64-Scripts package.
Diffstat (limited to 'converters')
-rw-r--r--converters/p5-MIME-Base64/Makefile5
-rw-r--r--converters/p5-MIME-Base64/distinfo10
-rw-r--r--converters/p5-MIME-Base64/patches/patch-aa21
3 files changed, 19 insertions, 17 deletions
diff --git a/converters/p5-MIME-Base64/Makefile b/converters/p5-MIME-Base64/Makefile
index 9d4f7d66d2b..d43a7618daa 100644
--- a/converters/p5-MIME-Base64/Makefile
+++ b/converters/p5-MIME-Base64/Makefile
@@ -1,11 +1,10 @@
-# $NetBSD: Makefile,v 1.34 2005/08/06 06:19:05 jlam Exp $
+# $NetBSD: Makefile,v 1.35 2006/01/01 22:11:09 wiz Exp $
#
-VERS= 3.05
+VERS= 3.07
DISTNAME= MIME-Base64-${VERS}
PKGNAME= p5-MIME-Base64-${VERS}
SVR4_PKGNAME= p5mba
-PKGREVISION= 2
CATEGORIES= converters perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=MIME/}
diff --git a/converters/p5-MIME-Base64/distinfo b/converters/p5-MIME-Base64/distinfo
index a09bb3dd83f..03c4fe2dc1c 100644
--- a/converters/p5-MIME-Base64/distinfo
+++ b/converters/p5-MIME-Base64/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.11 2005/02/23 16:12:34 agc Exp $
+$NetBSD: distinfo,v 1.12 2006/01/01 22:11:09 wiz Exp $
-SHA1 (MIME-Base64-3.05.tar.gz) = 018c775fca027ce88d695261b40c0428586595ed
-RMD160 (MIME-Base64-3.05.tar.gz) = 1e51e7943fef0401161d8c1d65b15dc2e46f9ed1
-Size (MIME-Base64-3.05.tar.gz) = 15643 bytes
-SHA1 (patch-aa) = 7cb2e7cf5a2b0d9e16729a9c975ac5e4adb22c95
+SHA1 (MIME-Base64-3.07.tar.gz) = e79af66afe029c89ea366425d4e0067b018c84a2
+RMD160 (MIME-Base64-3.07.tar.gz) = ce55c0451dda754aab364cd04e34d7bef0c4442f
+Size (MIME-Base64-3.07.tar.gz) = 15548 bytes
+SHA1 (patch-aa) = 97b091be689d6277bbb7652a35c0d235f25f502c
diff --git a/converters/p5-MIME-Base64/patches/patch-aa b/converters/p5-MIME-Base64/patches/patch-aa
index e38876bf555..d45f2532f32 100644
--- a/converters/p5-MIME-Base64/patches/patch-aa
+++ b/converters/p5-MIME-Base64/patches/patch-aa
@@ -1,11 +1,14 @@
-$NetBSD: patch-aa,v 1.1 2003/04/15 03:25:44 taca Exp $
+$NetBSD: patch-aa,v 1.2 2006/01/01 22:11:09 wiz Exp $
---- Makefile.PL.orig 2003-03-10 00:07:50.000000000 +0900
+--- Makefile.PL.orig 2005-11-29 21:42:40.000000000 +0100
+++ Makefile.PL
-@@ -6,6 +6,4 @@ WriteMakefile(
- VERSION_FROM => 'Base64.pm',
- EXE_FILES => [qw(encode-base64 decode-base64 encode-qp decode-qp)],
- dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
-- ($] >= 5.008) ?
-- (INSTALLDIRS => 'perl') : (),
- );
+@@ -5,9 +5,6 @@ my @makefileopts;
+ if (grep { $_ eq 'PERL_CORE=1' } @ARGV) {
+ push @makefileopts, MAN3PODS => {};
+ }
+-if ($] >= 5.008) {
+- push @makefileopts, INSTALLDIRS => 'perl';
+-}
+
+ WriteMakefile(
+ NAME => 'MIME::Base64',