Index: head/devel/py-fortran/Makefile =================================================================== --- head/devel/py-fortran/Makefile (revision 396892) +++ head/devel/py-fortran/Makefile (revision 396893) @@ -1,20 +1,23 @@ # Created by: ijliao # $FreeBSD$ PORTNAME= fortran PORTVERSION= 8.5.3 PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= SF/py${PORTNAME}/py${PORTNAME}/8.5 PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= Pyfort-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Creating extensions to the Python language with Fortran routines +LICENSE= MIT + RUN_DEPENDS= ${PYNUMERIC} USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist distutils +NO_ARCH= yes .include Index: head/devel/py-fortran/files/patch-fortran_compiler.py =================================================================== --- head/devel/py-fortran/files/patch-fortran_compiler.py (revision 396892) +++ head/devel/py-fortran/files/patch-fortran_compiler.py (revision 396893) @@ -1,20 +1,20 @@ ---- fortran_compiler.py.orig Sat Jul 20 20:40:23 2002 -+++ fortran_compiler.py Thu Jul 25 11:43:52 2002 -@@ -574,6 +574,7 @@ +--- fortran_compiler.py.orig 2005-09-20 18:08:08 UTC ++++ fortran_compiler.py +@@ -703,6 +703,7 @@ compiler_ids = [ 'pgf77', 'pgf90', 'g77', + 'f77', 'g77alpha', 'sgi', 'vf', -@@ -654,6 +655,9 @@ - +@@ -801,6 +802,9 @@ def get_compiler (compiler_id): elif compiler_id == 'g77': return G77Compiler() -+ + + elif compiler_id == 'f77': + return F77Compiler() - ++ elif compiler_id == 'g77alpha': return G77Compiler(typedict = alpha_typedict) +