Ticket #41518: libpcl-1.7.1.diff

File libpcl-1.7.1.diff, 1.6 KB (added by ryandesign (Ryan Carsten Schmidt), 11 years ago)

proposed patch

  • Portfile

     
    66PortGroup           github 1.0
    77PortGroup           active_variants 1.1
    88
     9github.setup        PointCloudLibrary pcl 1.7.1 pcl-
    910name                libpcl
    10 version             1.7.0
    1111categories          gis graphics science
    1212platforms           darwin
    1313license             BSD
     
    1818
    1919homepage            http://pointclouds.org
    2020
    21 github.author
    22 github.project      PointCloudLibrary
    23 github.version      ${version}
    24 github.master_sites https://github.com/PointCloudLibrary/pcl/archive
    25 distname            pcl-${version}
     21checksums           rmd160  2f4341afeaff9b458c90cee724de87e115981e59 \
     22                    sha256  e482c9e6eabb8b4abc1ae9f093e09b999e8da078ea7f918008742e57e42af5a7
    2623
    27 extract.suffix      .zip
    28 use_zip             yes
    29 
    30 checksums           rmd160  2cbb28277d2bed5f9c633e7eee191f1e918287b4 \
    31                     sha256  3dddf5e7b1170f59d35152697a037cdd0fac66ab99c215271a3c4e6f3bfee367
    32 
    33 worksrcdir          pcl-${distname}
    34 
    3524depends_lib         port:boost \
    3625                    port:eigen3 \
    3726                    port:flann \
     
    3928                    port:qhull \
    4029                    port:openni
    4130
    42 pre-configure {
    43     if {![active_variants vtk5 "qt4_mac" ""]} {
    44         return -code error "VTK5 toolkit must be built over Qt4.\
    45                             Please reinstall with +qt4_mac variant."
    46     }
    47 }
     31require_active_variants vtk5 qt4_mac
    4832
    4933configure.args-append   -DOPENNI_INCLUDE_DIR=${prefix}/include/ni
    5034