Ticket #22461: Portfile.diff

File Portfile.diff, 1.4 KB (added by numaryu, 14 years ago)
  • Portfile

    old new  
    3636
    3737use_parallel_build  no
    3838
    39 variant g95 description {Enable Fortran 77 and Fortran 90 bindings using g95} conflicts gfortran {
     39variant g95 description {Enable Fortran 77 and Fortran 90 bindings using g95} conflicts gcc42 gcc43 {
    4040   depends_lib-append      port:g95
    4141   configure.f77           "${prefix}/bin/g95"
    4242   configure.fflags        "-i4"
     
    4545   configure.args-append   --enable-f77 --enable-f90
    4646}
    4747
    48 variant gfortran description {Enable Fortran 77 and Fortran 90 bindings using gfortran from gcc43} conflicts g95 {
     48variant gcc43 description {Enable Fortran 77 and Fortran 90 bindings using gfortran from gcc43} conflicts g95 gcc42 {
    4949   depends_lib-append   port:gcc43
    5050   configure.f77        "${prefix}/bin/gfortran-mp-4.3"
    5151   configure.f90        "${prefix}/bin/gfortran-mp-4.3"
    5252   configure.args-append   --enable-f77 --enable-f90
    5353}
    5454
     55variant 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
    5562variant gforker description {Use gforker process manager instead of the default mpd} {
    5663   configure.args-append   --with-pm=gforker
    5764}