mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
63db1f2c92
- Do not use setuptools Changes: http://code.google.com/p/numexpr/wiki/ReleaseNotes
23 lines
513 B
Makefile
23 lines
513 B
Makefile
# Created by: Ju Pengfei <ju.pengfei@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= numexpr
|
|
PORTVERSION= 2.2
|
|
CATEGORIES= math python
|
|
MASTER_SITES= GOOGLE_CODE
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Fast numerical array expression evaluator for Python and NumPy
|
|
|
|
BUILD_DEPENDS= ${PYNUMPY}
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|\(import\) \(setuptools\)|\1 do_not_use_\2|' ${WRKSRC}/${PYSETUP}
|
|
|
|
.include <bsd.port.mk>
|