Ticket #25863: Portfile-wireshark-devel.diff

File Portfile-wireshark-devel.diff, 2.1 KB (added by hsivank@…, 14 years ago)
  • Portfile

    old new  
    44PortSystem 1.0
    55
    66name            wireshark-devel
    7 version         1.4.0rc1
     7version         1.4.0rc2
    88categories      net
    99maintainers     gmail.com:hsivank
    1010description     Graphical network analyzer and capture tool
     
    2222
    2323use_bzip2       yes
    2424
    25 checksums       md5     ca5ee30ed798900142d9cd4d81637b58 \
    26                 sha1    35978e507966d18fefcf63f8746dbd31d2cb94ac \
    27                 rmd160  0518fe9acf84867360086acb3dde930f0862dae7
     25checksums       md5     2c79bdb62e44260898dd16c663343d95 \
     26                sha1    592580662e0c868999d6643a24fc3b9841e05321 \
     27                rmd160  cb20ccd71f5c8bf0abb4edd662306f82932efab7
    2828
    2929conflicts       wireshark
    3030
     
    112112        depends_lib-append port:libsmi
    113113        configure.args-append --with-libsmi
    114114}
     115
     116post-destroot {
     117        xinstall -d ${destroot}${prefix}/include/wireshark/epan/crypt/
     118        xinstall -d ${destroot}${prefix}/include/wireshark/epan/dfilter/
     119        xinstall -d ${destroot}${prefix}/include/wireshark/epan/dissectors/
     120        xinstall -d ${destroot}${prefix}/include/wireshark/epan/ftypes/
     121        xinstall -d ${destroot}${prefix}/include/wireshark/wiretap/
     122        xinstall -m 755 -W ${worksrcpath}/ color.h config.h register.h ${destroot}${prefix}/include/wireshark/
     123        eval xinstall -m 755 [glob ${worksrcpath}/epan/*.h] ${destroot}${prefix}/include/wireshark/epan/
     124        eval xinstall -m 755 [glob ${worksrcpath}/epan/crypt/*.h] ${destroot}${prefix}/include/wireshark/epan/crypt/
     125        eval xinstall -m 755 [glob ${worksrcpath}/epan/dfilter/*.h] ${destroot}${prefix}/include/wireshark/epan/dfilter/
     126        eval xinstall -m 755 [glob ${worksrcpath}/epan/dissectors/*.h] ${destroot}${prefix}/include/wireshark/epan/dissectors/
     127        eval xinstall -m 755 [glob ${worksrcpath}/epan/ftypes/*.h] ${destroot}${prefix}/include/wireshark/epan/ftypes/
     128        eval xinstall -m 755 [glob ${worksrcpath}/wiretap/*.h] ${destroot}${prefix}/include/wireshark/wiretap/
     129}