Ticket #44545: Portfile-arb-blacklist.diff

File Portfile-arb-blacklist.diff, 953 bytes (added by ryandesign (Ryan Carsten Schmidt), 10 years ago)
  • Portfile

     
    22# $Id$
    33
    44PortSystem              1.0
     5PortGroup               compiler_blacklist_versions 1.0
    56
    67name                    arb
    78epoch                   2
     
    8183                        ARBHOME=${worksrcpath} \
    8284                        PATH=${worksrcpath}/bin:$env(PATH)
    8385
    84 compiler.blacklist *llvm-gcc-4.2
     86compiler.blacklist      *gcc-4.0 *gcc-4.2 {clang < 138}
    8587
    86 # https://trac.macports.org/ticket/33756
    87 platform darwin {
    88     if {${os.major} <= 10} {
    89         depends_lib
    90         depends_run
    91         pre-fetch {
    92             ui_error "${name} @${version} requires OS X 10.7 Lion or greater."
    93             error "unsupported platform"
    94         }
    95     }
    96 }
    97                        
    9888build.args-append       CXX=${configure.cxx} \
    9989                        CC=${configure.cc}
    10090