mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
901c87bcbb
pyCardDAV is a simple to use CardDAV CLI client. It has built in support for mutt's query_command but also works very well solo (and with other MUAs). pyCardDAV consists of pycardsyncer, a program for syncing your CardDAV resource into a local database and of pc_query, a program for querying the local database. Features: * Tested against davical, owncloud and sabredav * Import the sender's address directly from mutt * Add email addresses directly from mutt * Backup and import to and from .vcf files WWW: http://lostpackets.de/pycarddav PR: 189098 (with changes) Submitted by: Samir Noir <samir noir im>
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= pycarddav
|
|
PORTVERSION= 0.7.0
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= pyCardDAV-${PORTVERSION}
|
|
|
|
MAINTAINER= samir@noir.im
|
|
COMMENT= Simple to use CardDAV CLI client
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>0:${PORTSDIR}/www/py-requests \
|
|
${PYTHON_PKGNAMEPREFIX}vobject>0:${PORTSDIR}/deskutils/py-vobject \
|
|
${PYTHON_PKGNAMEPREFIX}urwid>0:${PORTSDIR}/devel/py-urwid \
|
|
${PYTHON_PKGNAMEPREFIX}xdg>0:${PORTSDIR}/devel/py-xdg \
|
|
${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml \
|
|
${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3
|
|
|
|
USES= python:2
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
PLIST_FILES+= man/man1/pc_query.1.gz \
|
|
man/man1/pycard-import.1.gz \
|
|
man/man1/pycardsyncer.1.gz
|
|
|
|
PORTEXAMPLES= pycard.conf.sample
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/pycard.conf.sample ${STAGEDIR}${EXAMPLESDIR}/pycard.conf.sample
|
|
${INSTALL_MAN} ${WRKSRC}/doc/man/*.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|