New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 80194


Ignore:
Timestamp:
07/06/11 09:10:47 (4 years ago)
Author:
ricci@…
Message:

wireshark: upgrade to 1.6.0. Make the (experimental) python support variants for py25, py26, and py27

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dports/net/wireshark/Portfile

    r79072 r80194  
    33PortSystem 1.0 
    44name            wireshark 
    5 version         1.4.7 
     5version         1.6.0 
    66revision        0 
    77categories      net 
     
    1919                http://www.wireshark.org/download/src/all-versions/ 
    2020 
    21 checksums           md5     b5065426d5524ddc1667314f8256c2b1 \ 
    22                     sha1    ba80ed0c2aa6a12fa50155bbf5b58ad41a46024e \ 
    23                     rmd160  012ec4d7750c03bcc23e9140f31e778cde6fd645 
     21checksums           md5     9f9314c89bf1c8b440a7909884838cfd \ 
     22                    sha1    c54ab0d77f6bbe6a2b7329de69ed10614d57aa35 \ 
     23                    rmd160  d30ba785f8e8ac6d74b4f3f55f9e797a8bc0dec3 
    2424 
    2525use_bzip2       yes 
     
    4848                --without-portaudio \ 
    4949                --disable-warnings-as-errors \ 
    50                 --without-gnutls 
     50                --without-gnutls        \ 
     51                --without-python 
    5152 
    5253configure.ldflags-append "-Wl,-search_paths_first" 
     
    107108} 
    108109 
     110variant python25 description {use python25 for the experimental python interface} conflicts python26 python27 { 
     111        configure.args-append   --with-python=${prefix} 
     112        configure.args-delete   --without-python 
     113        depends_lib-append      port:python25 
     114} 
     115 
     116variant python26 description {use python26 for the experimental python interface} conflicts python25 python27 { 
     117        configure.args-append   --with-python=${prefix} 
     118        configure.args-delete   --without-python 
     119        depends_lib-append      port:python26 
     120} 
     121 
     122variant python27 description {use python27 for the experimental python interface} conflicts python25 python26 { 
     123        configure.args-append   --with-python=${prefix} 
     124        configure.args-delete   --without-python 
     125        depends_lib-append      port:python27 
     126} 
     127 
    109128variant rtp description {add rtp support with portaudio} { 
    110129        configure.args-append   --with-portaudio=${prefix} 
Note: See TracChangeset for help on using the changeset viewer.