Ticket #21286: Portfile.diff

File Portfile.diff, 1.5 KB (added by adfernandes (Andrew Fernandes), 14 years ago)
  • Portfile

     
    3333master_sites      ftp://ftp.cs.unipr.it/pub/ppl/releases/${version}/
    3434use_bzip2         yes
    3535
     36license           GPLv3
     37
    3638checksums         md5     5667111f53150618b0fa522ffc53fc3e \
    3739                  sha1    9af711df8f24658a6deb61ca3b8c5e82366258bf \
    3840                  rmd160  432d0e59c058cc1da6cfeaffcb91bebc7b6e1db2
    3941
     42patchfiles        configure.patch
     43
    4044depends_lib       port:gmp port:glpk
    4145
    42 license           GPLv3
    43 
    4446universal_variant   no
    4547
    46 patchfiles        configure.patch
     48configure.compiler  gcc-4.2
    4749
     50variant gcc43 conflicts gcc44 gcc45 description "Use GCC 4.3 for compilation of PPL" {
     51    depends_build-append        port:gcc43
     52    configure.compiler          macports-gcc-4.3
     53    configure.cflags-append     "-ftree-vectorize -O3 -march=native"
     54}
     55
     56variant gcc44 conflicts gcc43 gcc45 description "Use GCC 4.4 for compilation of PPL" {
     57    depends_build-append        port:gcc44
     58    configure.compiler          macports-gcc-4.4
     59    configure.cflags-append     "-ftree-vectorize -O3 -march=native"
     60}
     61
     62variant gcc45 conflicts gcc43 gcc44 description "Use GCC 4.5 for compilation of PPL" {
     63    depends_build-append        port:gcc45
     64    configure.compiler          macports-gcc-4.5
     65    configure.cflags-append     "-ftree-vectorize -O3 -march=native"
     66}
     67
    4868test.run          yes
    4969test.target       check
    5070