blob: 3681f47aaa736f6d9ebb8431afaf3538cace302b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Ports collection makefile for: py-icalendar
# Date created: May 17, 2005
# Whom: Kevin Lo <kevlo@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= icalendar
PORTVERSION= 0.11
CATEGORIES= devel python
MASTER_SITES= http://codespeak.net/icalendar/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= iCalendar-${PORTVERSION}
EXTRACT_SUFX= .tgz
MAINTAINER= kevlo@FreeBSD.org
COMMENT= Parser and generator of iCalender files for Python
USE_PYTHON= yes
USE_PYDISTUTILS= yes
WRKSRC= ${WRKDIR}/iCalendar
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${CP} -R ${WRKSRC}/doc/* ${DOCSDIR}
.endif
.include <bsd.port.mk>
|