Add f90 option for fortran90 bindings

This commit is contained in:
manu 2013-07-19 03:52:29 +00:00
parent ec0d35c163
commit d8da2772a2
3 changed files with 25 additions and 4 deletions

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.23 2013/05/31 12:41:45 wiz Exp $
# $NetBSD: Makefile,v 1.24 2013/07/19 03:52:29 manu Exp $
DISTNAME= openmpi-1.6.4
PKGREVISION= 1
@ -20,7 +20,6 @@ LIBTOOL_OVERRIDE= ${WRKSRC}/libtool \
SHLIBTOOL_OVERRIDE= ${WRKSRC}/config/libtool.m4 \
${WRKSRC}/opal/libltdl/m4/libtool.m4
CONFIGURE_ARGS+= --disable-mpi-f90
CONFIGURE_ARGS+= --without-sge
CONFIGURE_ARGS+= --without-slurm
CONFIGURE_ARGS+= --enable-contrib-no-build=vt # in separate package

View file

@ -0,0 +1,2 @@
lib/libmpi_f90.la
lib/mpi.mod

View file

@ -1,10 +1,30 @@
# $NetBSD: options.mk,v 1.4 2012/10/17 23:27:34 asau Exp $
# $NetBSD: options.mk,v 1.5 2013/07/19 03:52:29 manu Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.openmpi
PKG_SUPPORTED_OPTIONS= debug
PKG_SUPPORTED_OPTIONS= debug f90
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-debug
.endif
.if !empty(PKG_OPTIONS:Mf90)
GCC_REQD= 4.7
GCCDIR= ${PREFIX}/gcc47
CONFIGURE_ARGS+= --enable-mpi-f90
CONFIGURE_ENV+= FC=${GCCDIR}/bin/gfortran
PLIST_SRC+= PLIST.f90
SUBST_CLASSES+= f90
SUBST_STAGE.f90= post-configure
SUBST_FILES.f90= ompi/tools/wrappers/mpif90-wrapper-data.txt
SUBST_SED.f90= -e 's,^compiler=.*$$,compiler=${GCCDIR}/bin/gfortran,'
SUBST_SED.f90+= -e 's,^linker_flags=,linker_flags= -R${GCCDIR}/lib ,'
SUBST_SED.f90+= -e 's,^linker_flags=,linker_flags= -L${GCCDIR}/lib ,'
.else
CONFIGURE_ARGS+= --disable-mpi-f90
.endif
PLIST_SRC+= PLIST