33 lines
747 B
Makefile
33 lines
747 B
Makefile
# $OpenBSD: Makefile,v 1.6 2010/08/30 22:24:15 jasper Exp $
|
|
|
|
COMMENT = distributed object middleware for Python
|
|
|
|
MODPY_EGG_VERSION = 3.10
|
|
DISTNAME = Pyro-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME:L}
|
|
REVISION = 1
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = http://www.xs4all.nl/~irmen/pyro3/
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
MASTER_SITES = ${HOMEPAGE}/download/
|
|
|
|
MODULES = lang/python
|
|
|
|
NO_REGRESS = Yes
|
|
|
|
post-install:
|
|
$(INSTALL_DATA_DIR) ${PREFIX}/share/doc/py-pyro
|
|
$(INSTALL_DATA_DIR) ${PREFIX}/share/examples/py-pyro
|
|
cd ${WRKSRC}/docs && pax -rw * ${PREFIX}/share/doc/py-pyro
|
|
cd ${WRKSRC}/examples && pax -rw * ${PREFIX}/share/examples/py-pyro
|
|
|
|
.include <bsd.port.mk>
|