Ticket #25809: Portfile-wireshark-devel.diff

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

    old new  
    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}