summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorabs <abs>2008-09-08 22:11:05 +0000
committerabs <abs>2008-09-08 22:11:05 +0000
commitb0a153a678e3bd8373f7641487a21f3753249b24 (patch)
tree6b50308944b2c3033a692b285c7b34f163ade278 /mail
parent283c810432e67e628383f516c47625c83de3ec36 (diff)
downloadpkgsrc-b0a153a678e3bd8373f7641487a21f3753249b24.tar.gz
Added mail/p5-Mail-IMAPClient2 version 2.2.9 - This version is required by
mail/imapsync due to regressions in 3.x Mail::IMAPClient module provides perl routines that simplify a sockets connection to and an IMAP conversation with an IMAP server. This module was developed on Solaris 2.5.1 and 2.6 against Netscape IMAP servers versions 3.6 and 4.1. However, since it is written in perl and designed for flexibility, it should run on any OS with a TCP/IP stack and a version of perl that includes Socket.pm and IO::Socket.pm. It also should be able to talk to any IMAP server, even those that have, um, proprietary features (assuming that the programmer knows what those features are). To date, the test suite runs successfully with the following IMAP servers: -Netscape Messenger v3.6 -Netscape Messenger v4.1 -UW-IMAP (I think it was 4.5) -Cyrus IMAP4 v1.5.19 -Mirapoint Message Server Appliances (OS versions 1.6.1 and 1.7.1)
Diffstat (limited to 'mail')
-rw-r--r--mail/p5-Mail-IMAPClient2/DESCR19
-rw-r--r--mail/p5-Mail-IMAPClient2/Makefile72
-rw-r--r--mail/p5-Mail-IMAPClient2/distinfo5
3 files changed, 96 insertions, 0 deletions
diff --git a/mail/p5-Mail-IMAPClient2/DESCR b/mail/p5-Mail-IMAPClient2/DESCR
new file mode 100644
index 00000000000..05df6fcf0fc
--- /dev/null
+++ b/mail/p5-Mail-IMAPClient2/DESCR
@@ -0,0 +1,19 @@
+ Mail::IMAPClient module provides perl routines that simplify a
+sockets connection to and an IMAP conversation with an IMAP server.
+
+ This module was developed on Solaris 2.5.1 and 2.6 against Netscape
+IMAP servers versions 3.6 and 4.1. However, since it is written in
+perl and designed for flexibility, it should run on any OS with a
+TCP/IP stack and a version of perl that includes Socket.pm and
+IO::Socket.pm. It also should be able to talk to any IMAP server,
+even those that have, um, proprietary features (assuming that the
+programmer knows what those features are).
+
+ To date, the test suite runs successfully with the following IMAP
+servers:
+
+-Netscape Messenger v3.6
+-Netscape Messenger v4.1
+-UW-IMAP (I think it was 4.5)
+-Cyrus IMAP4 v1.5.19
+-Mirapoint Message Server Appliances (OS versions 1.6.1 and 1.7.1)
diff --git a/mail/p5-Mail-IMAPClient2/Makefile b/mail/p5-Mail-IMAPClient2/Makefile
new file mode 100644
index 00000000000..a70c25a6465
--- /dev/null
+++ b/mail/p5-Mail-IMAPClient2/Makefile
@@ -0,0 +1,72 @@
+# $NetBSD: Makefile,v 1.1.1.1 2008/09/08 22:11:05 abs Exp $
+#
+
+DISTNAME= Mail-IMAPClient-2.2.9
+PKGNAME= p5-${DISTNAME:C:-2:2-2:}
+SVR4_PKGNAME= p5mic
+CATEGORIES= mail perl5
+MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Mail/}
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://search.cpan.org/~markov/Mail-IMAPClient/
+COMMENT= Perl5 module for talking to RFC-2060 IMAP servers
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+DEPENDS+= p5-Digest-HMAC-[0-9]*:../../security/p5-Digest-HMAC
+DEPENDS+= p5-File-Temp>=0.18:../../devel/p5-File-Temp
+DEPENDS+= p5-Parse-RecDescent>=1.94:../../devel/p5-Parse-RecDescent
+DEPENDS+= p5-Test-Pod-[0-9]*:../../devel/p5-Test-Pod
+
+PERL5_PACKLIST= auto/Mail/IMAPClient2/.packlist
+
+SUBST_CLASSES+= conf
+SUBST_STAGE.conf= pre-configure
+SUBST_FILES.conf= BodyStructure/BodyStructure.pm \
+ BodyStructure/Makefile.PL \
+ BodyStructure/Parse/Makefile.PL \
+ BodyStructure/Parse/Parse.grammar_new \
+ BodyStructure/Parse/Parse.grammar_old \
+ BodyStructure/Parse/Parse.pod \
+ BodyStructure/Parse/t/parse.t \
+ BodyStructure/t/bodystructure.t \
+ Changes \
+ IMAPClient.pm \
+ IMAPClient.pod \
+ INSTALL \
+ INSTALL_perl5.80 \
+ MANIFEST \
+ Makefile.PL \
+ MessageSet/Makefile.PL \
+ MessageSet/MessageSet.pm \
+ MessageSet/t/range.t \
+ README \
+ Thread/Makefile.PL \
+ Thread/Thread.pod \
+ Thread/t/thread.t \
+ Todo \
+ examples/build_dist.pl \
+ examples/build_ldif.pl \
+ examples/cleanTest.pl \
+ examples/copy_folder.pl \
+ examples/cyrus_expire.pl \
+ examples/cyrus_expunge.pl \
+ examples/find_dup_msgs.pl \
+ examples/imap_to_mbox.pl \
+ examples/imtestExample.pl \
+ examples/migrate_mail2.pl \
+ examples/migrate_mbox.pl \
+ examples/populate_mailbox.pl \
+ examples/sharedFolder.pl \
+ t/basic.t \
+ t/cram-md5.t
+SUBST_SED.conf= -e "s:IMAPClient:IMAPClient2:g"
+SUBST_MESSAGE.conf= Replacing IMAPClient with IMAPClient2
+
+pre-configure:
+ mv ${WRKSRC}/IMAPClient.pm ${WRKSRC}/IMAPClient2.pm
+ mv ${WRKSRC}/IMAPClient.pod ${WRKSRC}/IMAPClient2.pod
+ cd ${WRKSRC} && ${TOUCH} ${TOUCH_FLAGS} test.txt
+
+.include "../../lang/perl5/module.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/mail/p5-Mail-IMAPClient2/distinfo b/mail/p5-Mail-IMAPClient2/distinfo
new file mode 100644
index 00000000000..5ca8a5b0b4a
--- /dev/null
+++ b/mail/p5-Mail-IMAPClient2/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2008/09/08 22:11:05 abs Exp $
+
+SHA1 (Mail-IMAPClient-2.2.9.tar.gz) = 00d23579dfce7999c3c53e27a8cc186430d28609
+RMD160 (Mail-IMAPClient-2.2.9.tar.gz) = 3980d5227dc0342f5ba7cfd4dfbfce5fb8c10b7c
+Size (Mail-IMAPClient-2.2.9.tar.gz) = 376791 bytes