aboutsummaryrefslogtreecommitdiffstats
path: root/lang
diff options
context:
space:
mode:
authortabthorpe <tabthorpe@FreeBSD.org>2007-09-28 04:23:45 +0800
committertabthorpe <tabthorpe@FreeBSD.org>2007-09-28 04:23:45 +0800
commitb005136ac62bbd62b8ad100074eaecf7d5f5d208 (patch)
treee259b2aa9dca14fe271ac3b9fb311f2050f074e3 /lang
parent6b8f1d94a4c337060b25b26f8145dfcac4f92812 (diff)
downloadfreebsd-ports-gnome-b005136ac62bbd62b8ad100074eaecf7d5f5d208.tar.gz
freebsd-ports-gnome-b005136ac62bbd62b8ad100074eaecf7d5f5d208.tar.zst
freebsd-ports-gnome-b005136ac62bbd62b8ad100074eaecf7d5f5d208.zip
2007-09-22 misc/mango: Depends on broken package qextmdi
2007-04-01 lang/f2py: Replaced by py-numpy Approved by: miwi (co-mentor)
Diffstat (limited to 'lang')
-rw-r--r--lang/Makefile1
-rw-r--r--lang/f2py/Makefile49
-rw-r--r--lang/f2py/distinfo3
-rw-r--r--lang/f2py/files/patch-setup.py11
-rw-r--r--lang/f2py/pkg-descr9
5 files changed, 0 insertions, 73 deletions
diff --git a/lang/Makefile b/lang/Makefile
index d75bffcf16b4..027965c0fa3d 100644
--- a/lang/Makefile
+++ b/lang/Makefile
@@ -54,7 +54,6 @@
SUBDIR += expect
SUBDIR += ezm3
SUBDIR += f2c
- SUBDIR += f2py
SUBDIR += f77
SUBDIR += fasm
SUBDIR += fbbi
diff --git a/lang/f2py/Makefile b/lang/f2py/Makefile
deleted file mode 100644
index 6bc0235daf0f..000000000000
--- a/lang/f2py/Makefile
+++ /dev/null
@@ -1,49 +0,0 @@
-# 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
-PYDISTUTILS_PKGNAME= F2PY
-PYDISTUTILS_PKGVERSION= 2.45.241_1926
-
-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>
diff --git a/lang/f2py/distinfo b/lang/f2py/distinfo
deleted file mode 100644
index 690756c5c78b..000000000000
--- a/lang/f2py/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (F2PY-2.45.241_1926.tar.gz) = 8aedac9cad32afdcddcfb026b6393ece
-SHA256 (F2PY-2.45.241_1926.tar.gz) = f11525d8a3ec167b53cdb1c3882dff673960268bdf5c701bfb28602b3101075f
-SIZE (F2PY-2.45.241_1926.tar.gz) = 139482
diff --git a/lang/f2py/files/patch-setup.py b/lang/f2py/files/patch-setup.py
deleted file mode 100644
index 41c3c018fb76..000000000000
--- a/lang/f2py/files/patch-setup.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- setup.py.orig Sun Jan 30 12:22:14 2005
-+++ setup.py Thu Nov 16 18:46:25 2006
-@@ -40,7 +40,7 @@
- f2py2e.main()
- '''%(os.path.basename(sys.executable))
-
--f2py_exe = 'f2py'+os.path.basename(sys.executable)[6:]
-+f2py_exe = 'f2py'
- if f2py_exe[-4:]=='.exe':
- f2py_exe = f2py_exe[:-4] + '.py'
- if 'bdist_wininst' in sys.argv and f2py_exe[-3:] != '.py':
diff --git a/lang/f2py/pkg-descr b/lang/f2py/pkg-descr
deleted file mode 100644
index dce653c9fd91..000000000000
--- a/lang/f2py/pkg-descr
+++ /dev/null
@@ -1,9 +0,0 @@
-Writing Python C/API wrappers for Fortran routines can be a very tedious task,
-especially if a Fortran routine takes more than 20 arguments but only few of
-them are relevant for the problems that they solve. So, I have developed a
-tool that generates the C/API modules containing wrapper functions of Fortran
-routines. I call this tool as F2PY - Fortran to Python Interface Generator.
-It is completely written in Python language and can be called from the command
-line as f2py.
-
-WWW: http://cens.ioc.ee/projects/f2py2e/