py-Numeric doesn't seem to be needed for pyrex itself, only for a single example script that's used in the regress tests. Remove that example so we can drop the py-Numeric dependency. ok kmos@
38 lines
949 B
Makefile
38 lines
949 B
Makefile
# $OpenBSD: Makefile,v 1.20 2020/10/17 17:13:18 daniel Exp $
|
|
|
|
COMMENT= Python-alike language for writing Python extension modules
|
|
|
|
MODPY_EGG_VERSION= 0.9.9
|
|
DISTNAME= Pyrex-${MODPY_EGG_VERSION}
|
|
PKGNAME= ${DISTNAME:L}
|
|
REVISION = 2
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/
|
|
|
|
# Free, check README.txt for details
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
MASTER_SITES= https://distfiles.sigtrap.nl/ \
|
|
${HOMEPAGE}
|
|
|
|
MODULES= lang/python
|
|
|
|
pre-build:
|
|
@perl -pi -e "s,/usr/bin/env python,${MODPY_BIN}," \
|
|
${WRKSRC}/bin/pyrexc
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/pyrex
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/pyrex
|
|
@cd ${WRKSRC}/Demos && tar cvf - . | \
|
|
(cd ${PREFIX}/share/examples/pyrex && tar xf -)
|
|
@cd ${WRKSRC}/Doc && tar cvf - . | \
|
|
(cd ${PREFIX}/share/doc/pyrex && tar xf -)
|
|
|
|
do-test:
|
|
@cd ${WRKSRC}/Demos && \
|
|
make test PYTHON="PYTHONPATH=${WRKSRC} ${MODPY_BIN}"
|
|
|
|
.include <bsd.port.mk>
|