diff options
author | seb <seb@pkgsrc.org> | 2003-12-27 16:54:06 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2003-12-27 16:54:06 +0000 |
commit | 588134cf911c2acc136c91bab8b707b8c7cbfda5 (patch) | |
tree | a5602f8f1d94b52f6668365fed1f001e291d0786 /mail/isync/Makefile | |
parent | d99a6e4327d1b7c54625261ef55818311ae29bdb (diff) | |
download | pkgsrc-588134cf911c2acc136c91bab8b707b8c7cbfda5.tar.gz |
Update to version 0.9.2.
Changes in version 0.9
Added Tunnel directive to allow the user to specify a shell command to run
to set up an IMAP connection in place of a TCP socket (eg., to run over
an SSH session).
Added PREAUTH support (useful mostly in conjunction with Tunnel).
Messages marked deleted are not uploaded when we are going to expunge.
Locally generated messages are not re-fetched after uploading even if the
UIDPLUS extension is not supported by the server.
Added `OneToOne' configuration option: ignore any Mailbox specifications
and instead pick up all mailboxes from the local MailDir and remote Folder
and map them 1:1 onto each other according to their names.
-C now creates both local and remote boxes; -L and -R create only local/remote.
--quiet is now really quiet.
Diffstat (limited to 'mail/isync/Makefile')
-rw-r--r-- | mail/isync/Makefile | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/mail/isync/Makefile b/mail/isync/Makefile index e378a491a00..921f700b145 100644 --- a/mail/isync/Makefile +++ b/mail/isync/Makefile @@ -1,17 +1,23 @@ -# $NetBSD: Makefile,v 1.2 2003/11/12 03:39:40 jschauma Exp $ +# $NetBSD: Makefile,v 1.3 2003/12/27 16:54:06 seb Exp $ # -DISTNAME= isync-0.8 -PKGREVISION= 1 +DISTNAME= isync-0.9.2 CATEGORIES= mail net -MASTER_SITES= http://www.cs.hmc.edu/~me/isync/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=isync/} MAINTAINER= cez+misc.pkgsrc@compsoc.man.ac.uk -HOMEPAGE= http://www.cs.hmc.edu/~me/isync/ +HOMEPAGE= http://isync.sourceforge.net/ COMMENT= Syncronize a maildir with an imap server USE_BUILDLINK2= YES GNU_CONFIGURE= YES +CONFIGURE_ARGS+= --with-ssl=${BUILDLINK_PREFIX.openssl} +LDFLAGS+= -lcrypto + +post-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/isync + ${INSTALL_DATA} ${WRKSRC}/isyncrc.sample ${PREFIX}/share/examples/isync/isyncrc.sample + .include "../../security/openssl/buildlink2.mk" .include "../../mk/bsd.pkg.mk" |