Calypso is a CalDAV/CardDAV server on Linux. Calypso works with evolution, iceowl and the Android CalDAV/CardDAV plugins. It does not yet work with aCal; for some reason aCal cannot find any calendars on the server. Calypso also supports importing calendar changes from the command line, allowing you to integrate support into a text-based email application like notmuch or mutt.
32 lines
834 B
Makefile
32 lines
834 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2012/01/08 15:11:37 wiz Exp $
|
|
|
|
DISTNAME= calypso-1.0
|
|
CATEGORIES= net time
|
|
MASTER_SITES= http://keithp.com/calypso/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://keithp.com/blogs/calypso/
|
|
COMMENT= CardDAV/CalDAV server
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-vobject>=0.8.1c:../../textproc/py-vobject
|
|
DEPENDS+= scmgit-base-[0-9]*:../../devel/scmgit-base
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
#WRKSRC= ${WRKDIR}/calypso
|
|
|
|
PYDISTUTILSPKG= yes
|
|
PYTHON_VERSIONS_INCLUDE_3X= yes
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 24 25
|
|
|
|
INSTALLATION_DIRS= share/examples/calypso
|
|
|
|
REPLACE_PYTHON= calypso.py
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/config ${DESTDIR}${PREFIX}/share/examples/calypso/
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|