diff options
author | thierry <thierry@FreeBSD.org> | 2006-12-14 07:23:58 +0800 |
---|---|---|
committer | thierry <thierry@FreeBSD.org> | 2006-12-14 07:23:58 +0800 |
commit | 54716763449effc65281798cf360fbadcd762609 (patch) | |
tree | 94d2d550602ad3b19f3003851fb0802eba5b2d6d /math | |
parent | aca643681af7f9f65a9a0abbcc059d1986b1e5df (diff) | |
download | freebsd-ports-gnome-54716763449effc65281798cf360fbadcd762609.tar.gz freebsd-ports-gnome-54716763449effc65281798cf360fbadcd762609.tar.zst freebsd-ports-gnome-54716763449effc65281798cf360fbadcd762609.zip |
Define WITH_FORTRAN on -CURRENT.
Diffstat (limited to 'math')
-rw-r--r-- | math/metis-edf/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/math/metis-edf/Makefile b/math/metis-edf/Makefile index 329199862787..be4ebe312cef 100644 --- a/math/metis-edf/Makefile +++ b/math/metis-edf/Makefile @@ -29,6 +29,12 @@ PROGS= kmetis onmetis.exe pmetis MACHINEARCH= ${ARCH} +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700000 +WITH_FORTRAN= yes +.endif + pre-configure: .if ${MACHINEARCH} != "i386" @${FIND} ${WRKSRC} -type f -name "*.c" -o -name "*.h" | ${XARGS} \ @@ -56,4 +62,4 @@ post-install: @${ECHO_MSG} "===> Test file installed in ${EXAMPLESDIR}." .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |