1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
freebsd-ports/math/py-scientific/Makefile

41 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 07:23:21 +00:00
# $FreeBSD$
#
2000-04-14 07:20:58 +00:00
PORTNAME= scientific
2003-07-07 09:32:39 +00:00
PORTVERSION= 2.4.3
CATEGORIES= math python
MASTER_SITES= http://starship.python.net/crew/hinsen/ScientificPython/ \
http://dirac.cnrs-orleans.fr/programs/ScientificPython/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
2000-04-14 07:20:58 +00:00
DISTNAME= ScientificPython-${PORTVERSION}
MAINTAINER= tg@FreeBSD.org
COMMENT= Collection of Python modules for scientific computing
2002-07-15 11:37:35 +00:00
BUILD_DEPENDS= ${PYNUMERIC}
LIB_DEPENDS= netcdf.1:${PORTSDIR}/math/netcdf
2002-07-15 11:37:35 +00:00
RUN_DEPENDS= ${PYNUMERIC}
USE_PYTHON= yes
2002-04-17 11:35:55 +00:00
USE_PYDISTUTILS=yes
DOCDIR= ${PREFIX}/share/doc/py-scientific
EXAMPLEDIR= ${PREFIX}/share/examples/py-scientific
post-install:
@${MKDIR} ${DOCDIR}
2002-07-05 10:18:55 +00:00
${INSTALL_DATA} ${WRKSRC}/LICENSE ${DOCDIR}
2001-04-03 11:35:20 +00:00
.if !defined(NOPORTDOCS)
2001-04-26 11:55:11 +00:00
cd ${WRKDIR}/${DISTNAME}/Doc; tar -c --exclude='*~' -f - . | \
(cd ${DOCDIR}; tar -xf -)
2001-04-03 11:35:20 +00:00
@${MKDIR} ${EXAMPLEDIR}
2002-07-05 10:18:55 +00:00
cd ${WRKDIR}/${DISTNAME}/Examples; tar -c --exclude='*~' -f - . | \
(cd ${EXAMPLEDIR}; tar -xf -)
.endif
.include <bsd.port.mk>