Tue Jun 20 17:24:06 2017 UTC ()
PLIST fix for non-f90 builds


(adam)
diff -r1.22 -r1.23 pkgsrc/parallel/mpi-ch/PLIST
diff -r1.4 -r1.5 pkgsrc/parallel/mpi-ch/options.mk

cvs diff -r1.22 -r1.23 pkgsrc/parallel/mpi-ch/PLIST (expand / switch to unified diff)

--- pkgsrc/parallel/mpi-ch/PLIST 2017/04/29 18:18:52 1.22
+++ pkgsrc/parallel/mpi-ch/PLIST 2017/06/20 17:24:06 1.23
@@ -1,48 +1,48 @@ @@ -1,48 +1,48 @@
1@comment $NetBSD: PLIST,v 1.22 2017/04/29 18:18:52 adam Exp $ 1@comment $NetBSD: PLIST,v 1.23 2017/06/20 17:24:06 adam Exp $
2bin/hydra_nameserver 2bin/hydra_nameserver
3bin/hydra_persist 3bin/hydra_persist
4bin/hydra_pmi_proxy 4bin/hydra_pmi_proxy
5bin/mpic++ 5bin/mpic++
6bin/mpicc 6bin/mpicc
7bin/mpichversion 7bin/mpichversion
8bin/mpicxx 8bin/mpicxx
9bin/mpiexec 9bin/mpiexec
10bin/mpiexec.gforker 10bin/mpiexec.gforker
11bin/mpiexec.hydra 11bin/mpiexec.hydra
12${PLIST.f90}bin/mpif77 12${PLIST.f90}bin/mpif77
13${PLIST.f90}bin/mpif90 13${PLIST.f90}bin/mpif90
14${PLIST.f90}bin/mpifort 14${PLIST.f90}bin/mpifort
15bin/mpirun 15bin/mpirun
16bin/mpivars 16bin/mpivars
17bin/parkill 17bin/parkill
18include/mpi.h 18include/mpi.h
19${PLIST.f90}include/mpi.mod 19${PLIST.f90}include/mpi.mod
20${PLIST.f90}include/mpi_base.mod 20${PLIST.f90}include/mpi_base.mod
21${PLIST.f90}include/mpi_constants.mod 21${PLIST.f90}include/mpi_constants.mod
22${PLIST.f90}include/mpi_sizeofs.mod 22${PLIST.f90}include/mpi_sizeofs.mod
23include/mpicxx.h 23include/mpicxx.h
24${PLIST.f90}include/mpif.h 24${PLIST.f90}include/mpif.h
25include/mpio.h 25include/mpio.h
26include/mpiof.h 26include/mpiof.h
27lib/libfmpich.so 27${PLIST.f90}lib/libfmpich.so
28lib/libmpi.la 28lib/libmpi.la
29lib/libmpich.so 29lib/libmpich.so
30lib/libmpichcxx.so 30lib/libmpichcxx.so
31lib/libmpichf90.so 31${PLIST.f90}lib/libmpichf90.so
32lib/libmpicxx.la 32lib/libmpicxx.la
33${PLIST.f90}lib/libmpifort.la 33${PLIST.f90}lib/libmpifort.la
34lib/libmpl.so 34lib/libmpl.so
35lib/libopa.so 35${PLIST.f90}lib/libopa.so
36lib/pkgconfig/mpich.pc 36lib/pkgconfig/mpich.pc
37man/man1/hydra_nameserver.1 37man/man1/hydra_nameserver.1
38man/man1/hydra_persist.1 38man/man1/hydra_persist.1
39man/man1/hydra_pmi_proxy.1 39man/man1/hydra_pmi_proxy.1
40man/man1/mpicc.1 40man/man1/mpicc.1
41man/man1/mpicxx.1 41man/man1/mpicxx.1
42man/man1/mpiexec.1 42man/man1/mpiexec.1
43man/man1/mpif77.1 43man/man1/mpif77.1
44man/man1/mpifort.1 44man/man1/mpifort.1
45man/man3/MPIX_Comm_agree.3 45man/man3/MPIX_Comm_agree.3
46man/man3/MPIX_Comm_failure_ack.3 46man/man3/MPIX_Comm_failure_ack.3
47man/man3/MPIX_Comm_failure_get_acked.3 47man/man3/MPIX_Comm_failure_get_acked.3
48man/man3/MPIX_Comm_revoke.3 48man/man3/MPIX_Comm_revoke.3

cvs diff -r1.4 -r1.5 pkgsrc/parallel/mpi-ch/options.mk (expand / switch to unified diff)

--- pkgsrc/parallel/mpi-ch/options.mk 2017/04/29 18:18:52 1.4
+++ pkgsrc/parallel/mpi-ch/options.mk 2017/06/20 17:24:06 1.5
@@ -1,23 +1,21 @@ @@ -1,23 +1,21 @@
1# $NetBSD: options.mk,v 1.4 2017/04/29 18:18:52 adam Exp $ 1# $NetBSD: options.mk,v 1.5 2017/06/20 17:24:06 adam Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.mpich 3PKG_OPTIONS_VAR= PKG_OPTIONS.mpich
4PKG_SUPPORTED_OPTIONS= debug f90 4PKG_SUPPORTED_OPTIONS= debug f90
5 5
6.include "../../mk/bsd.options.mk" 6.include "../../mk/bsd.options.mk"
7 7
8PLIST_VARS+= f90 8PLIST_VARS+= f90
9 9
10.if !empty(PKG_OPTIONS:Mdebug) 10.if !empty(PKG_OPTIONS:Mdebug)
11CONFIGURE_ARGS+= --enable-g=debug # problems 11CONFIGURE_ARGS+= --enable-g=debug # problems
12INSTALL_UNSTRIPPED= yes 12INSTALL_UNSTRIPPED= yes
13.endif 13.endif
14 14
15.if !empty(PKG_OPTIONS:Mf90) 15.if !empty(PKG_OPTIONS:Mf90)
16USE_LANGUAGES+= fortran 16USE_LANGUAGES+= fortran
17CONFIGURE_ARGS+= --enable-fortran=yes 17CONFIGURE_ARGS+= --enable-fortran=yes
18PLIST.f90= yes 18PLIST.f90= yes
19.else 19.else
20#USE_LANGUAGES+= fortran77 
21#CONFIGURE_ARGS+= --enable-fortran=f77 
22CONFIGURE_ARGS+= --enable-fortran=no 20CONFIGURE_ARGS+= --enable-fortran=no
23.endif 21.endif