summaryrefslogtreecommitdiff
path: root/mail/Pantomime/Makefile
diff options
context:
space:
mode:
authorrh <rh@pkgsrc.org>2004-04-10 23:52:37 +0000
committerrh <rh@pkgsrc.org>2004-04-10 23:52:37 +0000
commitac094880da6b3d5c3575c13887ce15b2f8fd0d0b (patch)
treee5c81c9121e8cd852642cd84cdc32cb38d67f9f5 /mail/Pantomime/Makefile
parenta8cfd42809faef3a9d6e24a8ce65be721ba4d72c (diff)
downloadpkgsrc-ac094880da6b3d5c3575c13887ce15b2f8fd0d0b.tar.gz
Update Pantomime to 1.1.2. Noteable changes are:
* Added an improvement in the IMAP parsing code (_parseFetch:) so it works better with lame servers like Exchange. * Added Folder: -setFlags: messages: and implemented a version in IMAPFolder to optimize deletion of messages. Modified IMAPMessage: -setFlags: to use that new method. * We now correctly decode/encode the Organization header using quoted-printable. * Removed Testing/*. The tests were old and broken and the small test framework should be replaced by a real framework, like OCUnit. * Added some notes (in the README) to properly compile and install Pantomime on RedHat 9 / Fedora. * Permuted the RETAIN/RELEASE calls in Message: -setFlags:. Bug reported by Alexandre Carlhian <alex@mosx.net>. * Fixed a bug in Parser: +_parameterValueUsingLine: range:. * Finally commited a fix for the reply bork when a attachment is put between to text/plain parts in a multipart/mixed message (only the first part was used in the reply). * Modified MimeUtility to add support on OS X for Hebrew, Arabic, BalticRim and Vietnamese encodings using the CoreFoundation. * Fixed a small issue in POP3Folder: -lengthOfMessageAtIndex: Bug reported by Alexandre Carlhian <alex@mosx.net>. * Modified NSData+Extensions: -dataFromQuotedData to be sure that our initial data length has length of at least 2 (since if we had only '"' we would get an range exception). * Modified MimeUtility: -stringEncodingForPart: so that if we get _at best_ NSASCIIStringEncoding from the part, we use NSISOLatin1StringEncoding instead in order to give us more success when decoding things. * Added POP3Folder: -prefetchMessageAtIndex: numberOfLines: and added a small cache for the message sizes. * Renamed -authenticateWithUsername: ... to -authenticate: password: mechanism: and implemented in the SMTP, POP3Store and IMAPStore classes. * Added -supportedMechanisms to the Service protocol and implemented in all the classes above. * Removed POP3Store: -setUseAPOP: / -useAPOP and -setTimestamp: * Added LOGIN and CRAM-MD5 SASL authentication mechanisms support in the IMAP code. * Added -DBIG_ENDIAN to the list of compiler flags on OS X so that the CRAM-MD5 code works. * Updated the OS X project to set the version number to 1.1.2. * Moved -isConnected from Connection to Store. Implemented in IMAPStore and provided a dumb implementations for LocalStore and POP3Store. Refactored all the code to use the Store's method instead of the TCPConnection's implementation. Much of the code in GNUMail will have to be retested wrt the handling of being disconnected from the IMAP server. * Added a hack so things work well with header prefetching when we are using a Novell IMAP server (which is utterly broken). * Added and implemented IMAPStore: -capabilities to return an array of the server's capabilities (result of the CAPABILITY command). * Added a "contents" parameter to Store: -createFolderWithName: type: so we are now able to create a folder with an initial content. Implemented in all Store subclasses but the only implementation that works right now is the LocalStore one using the standard mailbox format (maildir won't work).
Diffstat (limited to 'mail/Pantomime/Makefile')
-rw-r--r--mail/Pantomime/Makefile20
1 files changed, 8 insertions, 12 deletions
diff --git a/mail/Pantomime/Makefile b/mail/Pantomime/Makefile
index 6c143b49205..06f25918f11 100644
--- a/mail/Pantomime/Makefile
+++ b/mail/Pantomime/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.10 2004/03/26 02:27:43 wiz Exp $
+# $NetBSD: Makefile,v 1.11 2004/04/10 23:52:37 rh Exp $
#
-DISTNAME= Pantomime-1.1.1
-PKGREVISION= 3
+DISTNAME= Pantomime-1.1.2
CATEGORIES= mail gnustep
MASTER_SITES= http://debian.uni-essen.de/misc/GNUstep/Apps/GNUMail/
@@ -10,14 +9,11 @@ MAINTAINER= rh@NetBSD.org
HOMEPAGE= http://www.collaboration-world.com/pantomime/
COMMENT= Objective-C mail system class library
-WRKSRC= ${WRKDIR}/Pantomime
-NO_CONFIGURE= YES
-USE_BUILDLINK2= YES
-USE_GNU_TOOLS+= make
-USE_X11= YES
-MAKEFILE= GNUmakefile
-MAKE_ENV+= ADDITIONAL_CPPFLAGS=-DMKDIR
+WRKSRC= ${WRKDIR}/Pantomime
+NO_CONFIGURE= yes
+USE_BUILDLINK3= yes
+MAKE_ENV+= ADDITIONAL_CPPFLAGS=-DMKDIR
-.include "../../x11/gnustep-back/buildlink2.mk"
-.include "../../mk/pthread.buildlink2.mk"
+.include "../../devel/gnustep-base/buildlink3.mk"
+.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"