ecc1fd1b4f
* Fix IDLE mode regression (it didn't worked) introduced after v6.5.5 (pointy hat goes to Eygene Ryabinkin, kudos -- to Tomasz Żok) * Add knob to invoke folderfilter dynamically on each sync (GitHub#73) * Add knob to apply compression to IMAP connections (Abdó Roig-Maranges) * Add knob to filter some headers before uploading message to IMAP server (Abdó Roig-Maranges) * Allow to sync GMail labels and implement GmailMaildir repository that adds mechanics to change message labels (Abdó Roig-Maranges) * Allow to migrate status data across differend backends (Abdó Roig-Maranges) * Support XDG Base Directory Specification (if $XDG_CONFIG_HOME/offlineimap/config exists, use it as the default configuration path; ~/.offlineimaprc is still tried after XDG location) (GitHub#32) * Allow multiple certificate fingerprints to be specified inside 'cert_fingerprint'
31 lines
1 KiB
Makefile
31 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.27 2014/05/30 15:28:06 schmonz Exp $
|
|
|
|
|
|
DISTNAME= offlineimap-6.5.6
|
|
DISTFILES= v6.5.6.tar.gz
|
|
CATEGORIES= mail
|
|
MASTER_SITES= https://github.com/OfflineIMAP/offlineimap/archive/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://offlineimap.org/
|
|
COMMENT= Powerful IMAP/Maildir synchronization and reader support
|
|
LICENSE= python-software-foundation AND gnu-gpl-v2 # or later
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-curses-[0-9]*:../../devel/py-curses
|
|
DEPENDS+= ${PYPKGPREFIX}-cursespanel-[0-9]*:../../devel/py-cursespanel
|
|
DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
|
|
|
|
INSTALLATION_DIRS= share/examples/offlineimap
|
|
|
|
EGG_NAME= ${PKGNAME_NOREV}
|
|
REPLACE_PYTHON= offlineimap/imaplib2.py
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # not yet ported as of 6.5.5
|
|
|
|
post-install:
|
|
.for f in offlineimap.conf offlineimap.conf.minimal
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DESTDIR}${PREFIX}/share/examples/offlineimap/${f}
|
|
.endfor
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|