390ea93e76
- don't crash if neither host nor tunnel are specified - give the implicitly created imap account config the name of the store - handle failure to store messages - don't hang after failed start_tls - deal with UIDVALIDITY of 0 properly - fix memory access error (used memcpy for overlapping regions) While here, GROFF is not needed and the patch was applyed upstream. Ok giovanni@
32 lines
756 B
Makefile
32 lines
756 B
Makefile
# $OpenBSD: Makefile,v 1.23 2012/10/12 13:43:00 gonzalo Exp $
|
|
|
|
COMMENT= synchronize IMAP4 and maildir mailboxes
|
|
|
|
DISTNAME= isync-1.0.5
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=isync/}
|
|
|
|
HOMEPAGE= http://isync.sourceforge.net/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= c crypto ssl lib/db4/db>=4
|
|
|
|
LIB_DEPENDS= databases/db/v4
|
|
|
|
SEPARATE_BUILD= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ENV+= CFLAGS="${CFLAGS} -I${LOCALBASE}/include/db4" \
|
|
LDFLAGS=-L${LOCALBASE}/lib/db4 \
|
|
LDADD=-ldb
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/isync
|
|
${INSTALL_DATA} ${WRKSRC}/src/mbsyncrc.sample ${PREFIX}/share/examples/isync
|
|
|
|
.include <bsd.port.mk>
|