diff options
author | heinz <heinz@pkgsrc.org> | 2007-04-21 14:30:23 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2007-04-21 14:30:23 +0000 |
commit | a686bda5ead4606836082e6f985bbd9098a2cda1 (patch) | |
tree | f576d3dc8841c26bc9fd1012af54463192060e5d /mail/p5-Email-Simple/Makefile | |
parent | b2d49fdea7b46a8c82a3d9875cd06f48b2dc5372 (diff) | |
download | pkgsrc-a686bda5ead4606836082e6f985bbd9098a2cda1.tar.gz |
Updated to version 1.999.
Pkgsrc changes:
- DESTDIR support
- Added CONFLICTS line to follow the comments in Makefile.PL (see 1.998 below)
Changes since version 1.995:
============================
1.999 2007-03-20
fix bug 25496: deletion of headers affected the wrong range,
sometimes deleting too many headers -- thanks, Nicholas Oxhoej!
fix bug 24922: errant space in last header of CRLF-delim email
thanks, Barry Downes and Alex Vandiver
1.998 2007-02-07
MAJOR REFACTORING OF GUTS
If you run Email::MIME, you MUST be running Email::MIME 1.857 or
better.
require Email::MIME 1.857 in Makefile.PL only if an older
version is already installed
boldly moving forward with refactored headers and
Email::Simple:::Header
greatly reduce memory footprint
add crlf method to allow other modules to avoid ->{mycrlf}
fix broken header-junk test
1.996 2006-11-27
- do not wrap Content-Type field; it can cause Outlook to go nuts
while this is a special case, it does not make E::S incorrect, as folding
long headers is allowed (for aesthetics) and not mandated
Diffstat (limited to 'mail/p5-Email-Simple/Makefile')
-rw-r--r-- | mail/p5-Email-Simple/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/mail/p5-Email-Simple/Makefile b/mail/p5-Email-Simple/Makefile index 134a9f70002..6bae016c30a 100644 --- a/mail/p5-Email-Simple/Makefile +++ b/mail/p5-Email-Simple/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2006/10/26 14:31:48 obache Exp $ +# $NetBSD: Makefile,v 1.6 2007/04/21 14:30:23 heinz Exp $ -DISTNAME= Email-Simple-1.995 +DISTNAME= Email-Simple-1.999 PKGNAME= p5-${DISTNAME} SVR4_PKGNAME= p5ems CATEGORIES= mail perl5 @@ -10,6 +10,11 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://search.cpan.org/dist/Email-Simple/ COMMENT= Perl5 module for simple parsing of RFC2822 message format and headers +PKG_DESTDIR_SUPPORT= user-destdir + +# versions before 1.857 meddled in the guts of Email::Simple +CONFLICTS= p5-Email-MIME<1.857 + PERL5_PACKLIST= auto/Email/Simple/.packlist .include "../../lang/perl5/module.mk" |