fdb426b516
- Add LICENSE (BSD) - Convert to optionsng - Trim Makefile's header Changes: http://icalendar.readthedocs.org/en/latest/changelog.html PR: ports/177679 Submitted by: Tobias Rehbein <tobias.rehbein@web.de> Approved by: Junji NAKANISHI <jun-g@daemonfreaks.com> (maintainer) Feature safe: yes
31 lines
726 B
Makefile
31 lines
726 B
Makefile
# Created by: Kevin Lo <kevlo@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= icalendar
|
|
PORTVERSION= 3.3
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= jun-g@daemonfreaks.com
|
|
COMMENT= Parser and generator of iCalender files for Python
|
|
|
|
LICENSE= BSD
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dateutil>0:${PORTSDIR}/devel/py-dateutil \
|
|
${PYTHON_PKGNAMEPREFIX}pytz>0:${PORTSDIR}/devel/py-pytz
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=easy_install
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.rst ${WRKSRC}/docs/changelog.rst ${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|