mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
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>
|