New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 83156


Ignore:
Timestamp:
08/26/11 10:54:29 (4 years ago)
Author:
ryandesign@…
Message:

mpich2: whitespace changes / reformatting only

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/science/mpich2/Portfile

    r83075 r83156  
    33 
    44PortSystem          1.0 
     5 
    56name                mpich2 
    67version             1.4.1 
     
    1011maintainers         eborisch \ 
    1112                    openmaintainer 
     13 
    1214description         Message Passing Interface (MPI) Library 
    13 long_description \ 
    14    MPICH2 is an implementation of the Message-Passing Interface (MPI). The \ 
    15    goals of MPICH2 are to provide an MPI implementation for important \ 
    16    platforms, including clusters, SMPs, and massively parallel processors. \ 
    17    It also provides a vehicle for MPI implementation research and for \ 
    18    developing new and better parallel programming environments. 
    1915 
     16long_description    MPICH2 is an implementation of the Message-Passing \ 
     17                    Interface (MPI). The goals of MPICH2 are to provide an \ 
     18                    MPI implementation for important platforms, including \ 
     19                    clusters, SMPs, and massively parallel processors. It \ 
     20                    also provides a vehicle for MPI implementation research \ 
     21                    and for developing new and better parallel programming \ 
     22                    environments. 
    2023 
    2124homepage            http://www.mcs.anl.gov/research/projects/mpich2/ 
     
    2831# Don't build if lammpi is around. 
    2932pre-configure { 
    30 if {[file exists ${prefix}/etc/lammpi/lam-helpfile]} { 
    31       ui_error "Cannot co-exist with lammpi; please deactivate lammpi before configuring." 
    32       return -code error 
     33    if {[file exists ${prefix}/etc/lammpi/lam-helpfile]} { 
     34        ui_error "Cannot co-exist with lammpi; please deactivate lammpi before configuring." 
     35        return -code error 
    3336    } 
    3437} 
     
    3639pre-build { 
    3740    if {[file exists ${prefix}/etc/lammpi/lam-helpfile]} { 
    38   ui_error "Cannot co-exist with lammpi; please deactivate lammpi before building." 
    39   return -code error 
    40 } 
     41        ui_error "Cannot co-exist with lammpi; please deactivate lammpi before building." 
     42        return -code error 
     43    } 
    4144} 
    4245 
     
    117120} 
    118121 
    119 if {[ variant_isset gcc42 ] ||  
    120     [ variant_isset gcc43 ] ||  
    121     [ variant_isset gcc44 ] ||  
     122if {[ variant_isset gcc42 ] || 
     123    [ variant_isset gcc43 ] || 
     124    [ variant_isset gcc44 ] || 
    122125    [ variant_isset gcc45 ]} { 
    123126    configure.args-append   --enable-f77 --enable-fc 
    124     configure.args-delete   --disable-f77 --disable-fc  
     127    configure.args-delete   --disable-f77 --disable-fc 
    125128} 
    126129 
     
    128131    Use system gcc (no Fortran) 
    129132} conflicts gcc42 gcc43 gcc44 gcc45 llvm clang { 
    130     configure.compiler      gcc-4.2  
     133    configure.compiler      gcc-4.2 
    131134} 
    132135 
     
    139142variant clang description { 
    140143    Use clang 
    141 } conflicts gcc42 gcc43 gcc44 gcc45 system_gcc llvm {  
     144} conflicts gcc42 gcc43 gcc44 gcc45 system_gcc llvm { 
    142145    configure.compiler      clang 
    143146    configure.cxx           clang++ 
     
    166169livecheck.type      regex 
    167170livecheck.regex     ${name}-(\[0-9.p\]+)${extract.suffix} 
    168  
Note: See TracChangeset for help on using the changeset viewer.