6b3d713587
The aim of the decorator module it to simplify the usage of decorators for the average programmer, and to popularize decorators by showing various non-trivial examples martynas@ ok.
33 lines
678 B
Makefile
33 lines
678 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/03/27 23:12:07 fgsch Exp $
|
|
|
|
COMMENT = simplify usage of decorators
|
|
|
|
MODPY_EGG_VERSION = 3.0.1
|
|
DISTNAME = decorator-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = http://pypi.python.org/pypi/decorator
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${MASTER_SITE_PYPI:=d/decorator/}
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-decorator
|
|
${INSTALL_DATA} ${WRKSRC}/documentation.html \
|
|
${PREFIX}/share/doc/py-decorator
|
|
|
|
.include <bsd.port.mk>
|