aboutsummaryrefslogtreecommitdiff
path: root/mail/p5-Mail-IMAPTalk
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2012-07-10 06:46:35 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2012-07-10 06:46:35 +0000
commita74ec268e7dcfbdfc3b2bf4f4f655547cb319f86 (patch)
treefa92eaed64547f1a168dcdf1091367053a44b8b0 /mail/p5-Mail-IMAPTalk
parentdcd9a8bee0d31bf1e195fbf05703ff78e6dd8099 (diff)
downloadports-a74ec268e7dcfbdfc3b2bf4f4f655547cb319f86.tar.gz
ports-a74ec268e7dcfbdfc3b2bf4f4f655547cb319f86.zip
Notes
Diffstat (limited to 'mail/p5-Mail-IMAPTalk')
-rw-r--r--mail/p5-Mail-IMAPTalk/Makefile10
-rw-r--r--mail/p5-Mail-IMAPTalk/distinfo4
-rw-r--r--mail/p5-Mail-IMAPTalk/pkg-descr46
3 files changed, 28 insertions, 32 deletions
diff --git a/mail/p5-Mail-IMAPTalk/Makefile b/mail/p5-Mail-IMAPTalk/Makefile
index 8cd81b30579b..a6e0bc673913 100644
--- a/mail/p5-Mail-IMAPTalk/Makefile
+++ b/mail/p5-Mail-IMAPTalk/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= Mail-IMAPTalk
-PORTVERSION= 2.01
+PORTVERSION= 3.01
CATEGORIES= mail perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@@ -14,10 +14,12 @@ PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= IMAP client interface with lots of features
-MAKE_JOBS_SAFE= yes
-
-MAN3= Mail::IMAPTalk.3
+LICENSE= ART10 GPLv1
+LICENSE_COMB= dual
+MAKE_JOBS_SAFE= yes
PERL_CONFIGURE= yes
+MAN3= Mail::IMAPTalk.3
+
.include <bsd.port.mk>
diff --git a/mail/p5-Mail-IMAPTalk/distinfo b/mail/p5-Mail-IMAPTalk/distinfo
index 13f2b76cc4f3..48288df510c7 100644
--- a/mail/p5-Mail-IMAPTalk/distinfo
+++ b/mail/p5-Mail-IMAPTalk/distinfo
@@ -1,2 +1,2 @@
-SHA256 (Mail-IMAPTalk-2.01.tar.gz) = dc4c95bf82709a20771b0ee3efcd802d08724586efc9dd61be397920b2efeac1
-SIZE (Mail-IMAPTalk-2.01.tar.gz) = 37448
+SHA256 (Mail-IMAPTalk-3.01.tar.gz) = 269a16bf2e699c69310eb0640222af580ff554109714006c21d688058eb1984e
+SIZE (Mail-IMAPTalk-3.01.tar.gz) = 41066
diff --git a/mail/p5-Mail-IMAPTalk/pkg-descr b/mail/p5-Mail-IMAPTalk/pkg-descr
index 79e70a42f057..0d56d6d84fea 100644
--- a/mail/p5-Mail-IMAPTalk/pkg-descr
+++ b/mail/p5-Mail-IMAPTalk/pkg-descr
@@ -1,29 +1,23 @@
-This module communicates with an IMAP server. Each IMAP server command is
-mapped to a method of this object.
+This module communicates with an IMAP server. Each IMAP server command is mapped
+to a method of this object. Although other IMAP modules exist on CPAN, this has
+several advantages over other modules:
+- It parses the more complex IMAP structures like envelopes and body structures
+ into nice Perl data structures.
+- It correctly supports atoms, quoted strings and literals at any point. Some
+ parsers in other modules aren't fully IMAP compatiable and may break at odd
+ times with certain messages on some servers.
+- It allows large return values (eg. attachments on a message) to be read
+ directly into a file, rather than into memory.
+- It includes some helper functions to find the actual text/plain or text/html
+ part of a message out of a complex MIME structure. It also can find a list of
+ attachements, and CID links for HTML messages with attached images.
+- It supports decoding of MIME headers to Perl utf-8 strings automatically, so
+ you don't have to deal with MIME encoded headers (enabled optionally).
-Although other IMAP modules exist on CPAN, this has several advantages
-over other modules.
+While the IMAP protocol does allow for asynchronous running of commands, this
+module is designed to be used in a synchronous manner. That is, you issue a
+command by calling a method, and the command will block until the appropriate
+response is returned. The method will then return the parsed results from the
+given command.
- * It parses the more complex IMAP structures like envelopes and body
-structures into nice Perl data structures.
- * It correctly supports atoms, quoted strings and literals at any
-point. Some parsers in other modules aren't fully IMAP compatiable and may
-break at odd times with certain messages on some servers.
- * It allows large return values (eg. attachments on a message) to be
-read directly into a file, rather than into memory.
- * It includes some helper functions to find the actual text/plain or
-text/html part of a message out of a complex MIME structure. It also can
-find a list of attachements, and CID links for HTML messages with attached
-images.
- * It supports decoding of MIME headers to Perl utf-8 strings
-automatically, so you don't have to deal with MIME encoded headers
-(enabled optionally).
-
-While the IMAP protocol does allow for asynchronous running of commands,
-this module is designed to be used in a synchronous manner. That is, you
-issue a command by calling a method, and the command will block until the
-appropriate response is returned. The method will then return the parsed
-results from the given command.
-
-Author: Rob Mueller <cpan@robm.fastmail.fm>
WWW: http://search.cpan.org/dist/Mail-IMAPTalk/