9c59afb5ae
v0.11.2: 2016.08.31 - Extended the photo parsing workaround from khard version 0.11.1 to all base64 encoded vcard attributes (#86 and #87) - Show additional/middle names in name column of contact table (#89) - Added khard-runner.py helper script to simplify source code launching v0.11.3: 2016.09.20 - Pinned version of vcard library vobject to version 0.9.2 due to bug https://github.com/eventable/vobject/issues/39 - Added some new action aliases - Fix for birthday date processing (#95)
29 lines
1.1 KiB
Makefile
29 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.11 2016/10/31 16:29:50 wiz Exp $
|
|
|
|
DISTNAME= khard-0.11.3
|
|
CATEGORIES= misc net
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=k/khard/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/scheibler/khard
|
|
COMMENT= CLI contacts application built around CardDAV
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-atomicwrites-[0-9]*:../../devel/py-atomicwrites
|
|
DEPENDS+= ${PYPKGPREFIX}-configobj-[0-9]*:../../devel/py-configobj
|
|
DEPENDS+= ${PYPKGPREFIX}-vobject>=0.9<0.9.3:../../textproc/py-vobject
|
|
DEPENDS+= ${PYPKGPREFIX}-argparse-[0-9]*:../../devel/py-argparse
|
|
DEPENDS+= ${PYPKGPREFIX}-yaml-[0-9]*:../../textproc/py-yaml
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27 # does not support python-2.x any longer
|
|
|
|
INSTALLATION_DIRS= share/examples/khard
|
|
REPLACE_PYTHON+= */*.py
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/misc/khard/khard.conf.example ${DESTDIR}${PREFIX}/share/examples/khard
|
|
cd ${DESTDIR}${PREFIX}/bin && ${MV} khard khard-${PYVERSSUFFIX}
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|