developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
34 lines
1,021 B
Makefile
34 lines
1,021 B
Makefile
# $NetBSD: Makefile,v 1.12 2006/03/04 21:30:01 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= offlineimap_${_OFFLINEIMAP_VER}
|
|
PKGNAME= offlineimap-${_OFFLINEIMAP_VER}
|
|
PKGREVISION= 1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://gopher.quux.org:70/devel/offlineimap/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://gopher.quux.org:70/devel/offlineimap/
|
|
COMMENT= Powerful IMAP/Maildir synchronization and reader support
|
|
|
|
WRKSRC= ${WRKDIR}/offlineimap
|
|
|
|
# This is only to placate pkglint
|
|
_OFFLINEIMAP_VER= 4.0.6
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 22 23
|
|
PYDISTUTILSPKG= yes
|
|
PYTHON_PATCH_SCRIPTS= bin/offlineimap
|
|
PLIST_SUBST+= PYSITELIB=${PYSITELIB:Q}
|
|
|
|
INSTALLATION_DIRS= man/man1 share/examples/offlineimap
|
|
|
|
post-install:
|
|
.for _f_ in offlineimap.conf offlineimap.conf.minimal
|
|
${INSTALL_DATA} ${WRKSRC}/${_f_} ${PREFIX}/share/examples/offlineimap/${_f_}
|
|
.endfor
|
|
${INSTALL_MAN} ${WRKSRC}/offlineimap.1 ${PREFIX}/man/man1/offlineimap.1
|
|
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|