mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
d63371c9f6
which has been deprecated by upstream vendor:see note on http://numpy.scipy.org - Development for Numeric has ceased, and users should transisition to NumPy as quickly as possible. - DEPRECIATE and set removal date in 3 months PR: ports/107355 Submitted by: Diane Bruce
48 lines
1013 B
Makefile
48 lines
1013 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: f2py
|
|
# Date created: Jun 12, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= f2py
|
|
PORTVERSION= 2.45.241.1926
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang python
|
|
MASTER_SITES= http://cens.ioc.ee/projects/f2py2e/2.x/
|
|
DISTNAME= ${PORTNAME:U}-${PORTVERSION:R}_${PORTVERSION:E}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Fortran to Python Interface Generator
|
|
|
|
RUN_DEPENDS= ${PYNUMERIC}
|
|
|
|
CONFLICTS= py*-numpy-1.*
|
|
|
|
DEPRECATED= Replaced by py-numpy
|
|
EXPIRATION_DATE= 2007-04-01
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
PLIST_FILES= bin/f2py
|
|
MAN1= f2py.1
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= *
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/f2py.1 ${MAN1PREFIX}/man/man1
|
|
@${FIND} ${PYTHON_SITELIBDIR}/f2py2e ! -type d | \
|
|
${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST}
|
|
@${FIND} ${PYTHON_SITELIBDIR}/f2py2e -type d | ${SORT} -r | \
|
|
${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${CP} -R ${WRKSRC}/docs/ ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|