diff options
author | Maho Nakata <maho@FreeBSD.org> | 2007-07-09 08:40:53 +0000 |
---|---|---|
committer | Maho Nakata <maho@FreeBSD.org> | 2007-07-09 08:40:53 +0000 |
commit | 0ab20adec6fcbece0864eafe1dd80f9e595eef89 (patch) | |
tree | 796618e7a7eaee459546f3f3a3bfae70e3883bf0 | |
parent | Update to ion-3rc-20070708. (diff) |
Correct the usage of gfortran.
Submitted by: pav
Notes
Notes:
svn path=/head/; revision=195289
-rw-r--r-- | graphics/ruby-pgplot/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/graphics/ruby-pgplot/Makefile b/graphics/ruby-pgplot/Makefile index d3f4fe5c9e9c..723cc6a61018 100644 --- a/graphics/ruby-pgplot/Makefile +++ b/graphics/ruby-pgplot/Makefile @@ -18,12 +18,14 @@ DIST_SUBDIR= ruby MAINTAINER= ports@FreeBSD.org COMMENT= A Ruby interface to PGPLOT graphics library -LIB_DEPENDS= pgplot.5:${PORTSDIR}/graphics/pgplot \ - gfortran:${PORTSDIR}/lang/gcc42 +LIB_DEPENDS= pgplot.5:${PORTSDIR}/graphics/pgplot BUILD_DEPENDS= ${RUBY_SITEARCHLIBDIR}/narray.so:${PORTSDIR}/math/ruby-narray RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/narray.so:${PORTSDIR}/math/ruby-narray -USE_GCC= 4.2+ +WANT_FORTRAN= yes #dummy but future use +BUILD_DEPENDS+= gfortran42:${PORTSDIR}/lang/gcc42 +FC= gfortran42 +F77= gfortran42 USE_RUBY= yes USE_RUBY_EXTCONF= yes |