freebsd-ports/math/py-scientific/Makefile

43 lines
1.1 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: py-scientific
# Date created: 29 July 1999
# Whom: Thomas Gellekum <tg@FreeBSD.org>
#
1999-08-25 09:23:21 +02:00
# $FreeBSD$
#
2000-04-14 09:20:58 +02:00
PORTNAME= scientific
PORTVERSION= 2.8
CATEGORIES= math python
MASTER_SITES= http://sourcesup.cru.fr/frs/download.php/2309/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
2000-04-14 09:20:58 +02:00
DISTNAME= ScientificPython-${PORTVERSION}
MAINTAINER= fmysh@iijmio-mail.jp
COMMENT= Collection of Python modules for scientific computing
BUILD_DEPENDS= ${PYNUMPY}
LIB_DEPENDS= netcdf.4:${PORTSDIR}/science/netcdf
RUN_DEPENDS= ${PYNUMPY}
USE_PYTHON= yes
2002-04-17 13:35:55 +02:00
USE_PYDISTUTILS=yes
PYDISTUTILS_PKGNAME= ScientificPython
DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/LICENSE ${DOCSDIR}
cd ${WRKDIR}/${DISTNAME}/Doc; ${TAR} -c --exclude='*~' -f - . | \
(cd ${DOCSDIR}; ${TAR} -xf -)
.endif
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
cd ${WRKDIR}/${DISTNAME}/Examples; ${TAR} -c --exclude='*~' -f - . | \
(cd ${EXAMPLESDIR}; ${TAR} -xf -)
.endif
.include <bsd.port.mk>