1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-16 03:24:07 +00:00
freebsd-ports/math/py-bottleneck/Makefile
Torsten Zuehlsdorff 8b62234838 Change all occurrences of xmj@chaot.net to johannes@perceivon.net as the owner requested.
This only affects "Created by" lines with one exception: devel/uclcmd. There the maintainer is changed. This was overlooked in r416918.

Approved by: junovitch (mentor)
2016-06-23 09:48:53 +00:00

37 lines
891 B
Makefile

# Created by: Johannes Meixner <johannes@perceivon.net>
# $FreeBSD$
PORTNAME= bottleneck
PORTVERSION= 1.0.0
CATEGORIES= math python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= Bottleneck-${PORTVERSION}
MAINTAINER= johannes@perceivon.net
COMMENT= Collection of fast NumPy array functions written in Cython
LICENSE= BSD2CLAUSE
BUILD_DEPENDS= ${PYNUMPY} \
cython:lang/cython
RUN_DEPENDS= ${PYNUMPY}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose
USES= python
USE_PYTHON= distutils autoplist
OPTIONS_DEFINE= DOCS
DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME}
PORTDOCS= *
regression-test: build
@cd ${WRKSRC} && nosetests
post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README.rst ${WRKSRC}/RELEASE.rst ${STAGEDIR}${DOCSDIR}
cd ${WRKSRC}/doc/source/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>