b81eb4b2fa
2.1 (2009-12-14) ================ * Fix deprecation warnings about `object.__init__` taking no parameters. * Set the VALUE parameter correctly for date values. * Long binary data would be base64 encoded with newlines, which made the iCalendar files incorrect. (This still needs testing). * Correctly handle content lines which include newlines.
28 lines
697 B
Makefile
28 lines
697 B
Makefile
# $NetBSD: Makefile,v 1.3 2010/01/20 10:34:23 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= icalendar-2.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= time python
|
|
MASTER_SITES= http://pypi.python.org/packages/source/i/icalendar/
|
|
|
|
MAINTAINER= mj@turner.org.za
|
|
HOMEPAGE= http://codespeak.net/icalendar/
|
|
COMMENT= Python parser/generator for iCalendar files, as per RFC2445
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
PY_PATCHPLIST= yes
|
|
EGG_NAME= ${DISTNAME:S/C/c/}
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/${PKGNAME}
|
|
|
|
INSTALLATION_DIRS= ${DOCDIR}
|
|
|
|
# Install documentation manually
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/* ${DESTDIR}${DOCDIR}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|