e4000a8de2
* bump bundled imaplib2 library 2.29 --> 2.33 * Actually perform the SSL fingerprint check * Curses UI, don't use colors after we shut down curses already * Document that '%' needs encoding as '%%' in *.conf * Fix crash when IMAP.quickchanged() led to an Error * Implement the createfolders setting to disable folder propagation Ok pea@ (maintainer) gsoares@
40 lines
978 B
Makefile
40 lines
978 B
Makefile
# $OpenBSD: Makefile,v 1.25 2012/08/15 13:09:58 gonzalo Exp $
|
|
|
|
COMMENT= powerful IMAP/Maildir synchronization and reader support
|
|
|
|
MODPY_EGG_VERSION= 6.5.4
|
|
DISTNAME= offlineimap-${MODPY_EGG_VERSION}
|
|
CATEGORIES= mail
|
|
|
|
HOMEPAGE= http://offlineimap.org/
|
|
|
|
MAINTAINER= Pierre-Emmanuel Andre <pea@openbsd.org>
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= https://github.com/spaetz/offlineimap/tarball/v${MODPY_EGG_VERSION}/
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
MODULES= lang/python
|
|
|
|
BUILD_DEPENDS= textproc/py-docutils
|
|
|
|
WRKDIST= ${WRKDIR}/spaetz-offlineimap-c9e9690
|
|
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/offlineimap
|
|
|
|
post-build:
|
|
@cd ${WRKSRC}/docs && ${LOCALBASE}/bin/rst2man MANUAL.rst ${WRKBUILD}/offlineimap.1
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/offlineimap.conf{,.minimal} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/offlineimap.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|