- remove patch-af, as it is already in the release - take maintainership. Changelog: * src/compat/main.c: fix 'isync -w' writing .mbsyncrc to a wrong directory * src/sync.c: less confusing uid ranges in debug * src/sync.c: - sanitize flag handling of expired messages - don't record we synced flags if we didn't - remove now superfluous temporary rflags * src/drv_maildir.c: less confusing error message on invalid mailbox. * src/drv_imap.c: revert 1.8 - what was i smoking?! the CREATE argument is already quoted; we just extracted it from the previous command. ( that was patch-af ) * src/drv_maildir.c: make flag changes unset "new" status - unless a ghost is acting in the background, a flag change indicates that the message was at least noticed.
29 lines
810 B
Makefile
29 lines
810 B
Makefile
# $NetBSD: Makefile,v 1.18 2006/03/07 20:20:26 tonio Exp $
|
|
#
|
|
|
|
DISTNAME= isync-1.0.2
|
|
CATEGORIES= mail net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=isync/}
|
|
|
|
MAINTAINER= tonio@NetBSD.org
|
|
HOMEPAGE= http://isync.sourceforge.net/
|
|
COMMENT= Synchronize a maildir with an imap server
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
GNU_CONFIGURE= YES
|
|
|
|
CONFIGURE_ARGS+= --with-ssl=${BUILDLINK_PREFIX.openssl}
|
|
LDFLAGS+= -lcrypto
|
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../databases/db4/buildlink3.mk"
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/isync
|
|
${INSTALL_DATA} ${WRKSRC}/src/mbsyncrc.sample \
|
|
${PREFIX}/share/examples/isync/mbsyncrc.sample
|
|
${INSTALL_DATA} ${WRKSRC}/src/compat/isyncrc.sample \
|
|
${PREFIX}/share/examples/isync/isyncrc.sample
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|