Ticket #15947: Portfile-rrdtool.diff

File Portfile-rrdtool.diff, 1.6 KB (added by mlund (Mikael Lund), 16 years ago)
  • Portfile

    old new  
    22
    33PortSystem 1.0
    44name            gromacs
    5 version         3.3.1
     5version         4.0
    66categories      science math
    7 maintainers     nomaintainer
     7maintainers     mac.com:mlund
    88description     The World's fastest Molecular Dynamics package
    99long_description        GROMACS is a versatile package to perform molecular \
    1010        dynamics, i.e. simulate the Newtonian equations of motion for \
     
    1717platforms       darwin
    1818
    1919homepage        http://www.gromacs.org/
    20 master_sites    ftp://ftp.gromacs.org/pub/${name}
     20master_sites    ftp://ftp.gromacs.org/pub/${name} \
     21                http://cluster.earlham.edu/detail/home/charliep/packages
    2122
    22 checksums       md5 1af34a99950813ca7cf893253c447cd1
    23 
    24 depends_lib     port:fftw-3-single
    25 
    26 configure.args  --exec-prefix=${prefix}/lib/${name}     \
    27                 --mandir=${prefix}/share/man
     23checksums       md5 bfc18a2ecc998f542438316b9148b7ff \
     24                sha1 5c8f0c3bfa2950bb936b4bfc5e9241028ffb8f1d \
     25                rmd160 3156220f6b98ec4c04c264c8f798c616ce668a07
     26
     27depends_lib     port:fftw-3-single port:openmotif
     28
     29configure.args  --bindir=${prefix}/lib/${name}/bin --with-x
     30
     31variant nox description {Disable X11/Motif GUI} {
     32  depends_lib-delete       port:openmotif
     33  configure.args-delete    --with-x
     34  configure.args-append    --without-x
     35}
     36variant double description {Double precision floating-point arithmetics} {
     37  depends_lib-delete       port:fftw-3-single
     38  depends_lib-append       port:fftw-3
     39  configure.args-append    --enable-double
     40}
     41platform darwin powerpc {
     42  build_lib-append         port:gcc42
     43  configure.compiler       macports-gcc-4.2
     44}
    2845