Ticket #22461: Portfile.diff
File Portfile.diff, 1.4 KB (added by numaryu, 15 years ago) |
---|
-
Portfile
old new 36 36 37 37 use_parallel_build no 38 38 39 variant g95 description {Enable Fortran 77 and Fortran 90 bindings using g95} conflicts g fortran{39 variant g95 description {Enable Fortran 77 and Fortran 90 bindings using g95} conflicts gcc42 gcc43 { 40 40 depends_lib-append port:g95 41 41 configure.f77 "${prefix}/bin/g95" 42 42 configure.fflags "-i4" … … 45 45 configure.args-append --enable-f77 --enable-f90 46 46 } 47 47 48 variant g fortran description {Enable Fortran 77 and Fortran 90 bindings using gfortran from gcc43} conflicts g95{48 variant gcc43 description {Enable Fortran 77 and Fortran 90 bindings using gfortran from gcc43} conflicts g95 gcc42 { 49 49 depends_lib-append port:gcc43 50 50 configure.f77 "${prefix}/bin/gfortran-mp-4.3" 51 51 configure.f90 "${prefix}/bin/gfortran-mp-4.3" 52 52 configure.args-append --enable-f77 --enable-f90 53 53 } 54 54 55 variant gcc42 description {Enable Fortran 77 and Fortran 90 bindings using gfortran from gcc42} conflicts g95 gcc43 { 56 depends_lib-append port:gcc42 57 configure.f77 "${prefix}/bin/gfortran-mp-4.2" 58 configure.f90 "${prefix}/bin/gfortran-mp-4.2" 59 configure.args-append --enable-f77 --enable-f90 60 } 61 55 62 variant gforker description {Use gforker process manager instead of the default mpd} { 56 63 configure.args-append --with-pm=gforker 57 64 }