Ticket #39369: Portfile-wireshark.diff

File Portfile-wireshark.diff, 1.2 KB (added by irony42@…, 11 years ago)
  • Portfile

    old new  
    3232depends_build           \
    3333                port:pkgconfig
    3434depends_lib             \
    35                 port:adns \
     35                port:c-ares \
    3636                port:libgcrypt \
    3737                port:libgeoip \
    3838                path:lib/pkgconfig/glib-2.0.pc:glib2 \
     
    4949configure.args  \
    5050                --with-libsmi=${prefix} \
    5151                --disable-usr-local \
    52                 --with-adns=${prefix} \
    53                 --without-c-ares \
     52                --with-c-ares=${prefix} \
     53                --without-adns \
    5454                --with-geoip=${prefix} \
    5555                --with-gnutls=yes \
    5656                --with-libgcrypt-prefix=${prefix} \
     
    9797        configure.cflags -fno-var-tracking
    9898}
    9999
    100 variant no_adns description {don't use adns library for async. dns resolution instead of the default c-ares library} {
    101         configure.args-append   --without-adns \
    102                                                         --with-c-ares=${prefix}
    103         configure.args-delete   --with-adns=${prefix} \
     100variant adns description {use adns library for async. dns resolution instead of the default c-ares library} {
     101        configure.args-delete   --with-c-ares=${prefix}\
     102                                                        --without-adns
     103        configure.args-append   --with-adns=${prefix} \
    104104                                                        --without-c-ares
    105         depends_lib-delete      port:adns
     105        depends_lib-delete      port:c-ares
     106        depends_lib-append      port:adns
    106107}
    107108
    108109variant no_gnutls {