Ticket #36488: Portfile.diff

File Portfile.diff, 1.9 KB (added by andre.dos.anjos@…, 12 years ago)
  • Portfile

    old new  
    44PortSystem          1.0
    55PortGroup           cmake 1.0
    66
     7PortGroup           github 1.0
     8github.setup        idiap bob 1.1.0 v
     9
    710name                bob
    8 version             1.0.6
    9 set soversion       1.0
     11set soversion       1.1
    1012categories          science math devel
    1113platforms           darwin
    1214maintainers         idiap.ch:andre.anjos \
     
    2224
    2325license             GPL-3
    2426homepage            http://idiap.github.com/bob/
    25 master_sites        https://github.com/idiap/bob/downloads/
    26 use_zip             yes
    2727
    28 checksums           rmd160 eac3e390ed25c69d8c6038f815ea473c21118a0f \
    29                     sha256 767e22bddb2bfb59458b76eb37cab3791bf1bfbe33fc7ad11ca29038343b5dea
     28checksums           rmd160  8d6696bac29896e99760ecbcc4984725e5676920 \
     29                    sha256  1cf7e20e6bb4e1fe96f1abdab909dc1df6c916db4eadc2ef3d356c53422a4366
    3030
    3131use_parallel_build  no
    3232
     
    4242
    4343configure.args      -DCMAKE_BUILD_TYPE=Release -DBOB_VERSION=${version} -DBOB_SOVERSION=${soversion}
    4444
    45 compiler.blacklist  clang
    46 
    4745universal_variant   no
    4846default_variants    +qt4 +opencv
    4947
     
    5250}
    5351
    5452variant python26 conflicts python27 description "Builds for python 2.6." {
    55     depends_lib-append    port:py26-numpy \
     53    depends_lib-append    port:py26-distribute
     54      port:py26-numpy \
    5655      port:py26-matplotlib \
    5756      port:py26-sqlalchemy \
    5857      port:py26-argparse \
    59       port:py26-scipy
     58      port:py26-scipy \
     59      port:py26-nose
    6060}
    6161
    6262variant python27 conflicts python26 description "Builds for python 2.7." {
    63     depends_lib-append    port:py27-numpy \
     63    depends_lib-append    port:py27-distribute
     64      port:py27-numpy \
    6465      port:py27-matplotlib \
    6566      port:py27-sqlalchemy \
    66       port:py27-scipy
     67      port:py27-scipy \
     68      port:py27-nose
    6769}
    6870
    6971variant qt4 description "Compile Qt4 extensions." {