New Ticket     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Changeset 21672

Show
Ignore:
Timestamp:
02/01/07 11:35:13 (3 years ago)
Author:
pmq@…
Message:

Version bump to 1.0.5.20
Whitespace cleanup and destrooting simplification

Files:
1 modified

Legend:

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

    r20704 r21672  
    11# $Id$ 
    22 
    3 PortSystem              1.0 
    4 PortGroup               python24 1.0 
     3PortSystem            1.0 
     4PortGroup             python24 1.0 
    55 
    6 name                    scapy 
    7 version                 1.0.5.11 
    8 categories              net security python 
    9 maintainers             chris.owen@consault.com pmq@macports.org 
     6name                  scapy 
     7version               1.0.5.20 
     8categories            net security python 
     9maintainers          pmq@macports.org 
    1010 
    11 description             A powerful packet manipulation tool 
    12 long_description        \ 
     11description           A powerful packet manipulation tool 
     12long_description      \ 
    1313        Scapy is a powerful interactive packet manipulation program. It is \ 
    1414        able to forge or decode packets of a wide number of protocols, send \ 
     
    2323        channel, ...), etc. 
    2424 
    25 homepage                http://www.secdev.org/projects/scapy 
    26 master_sites            http://www.secdev.org/projects/scapy/all \ 
    27                         http://www.secdev.org/projects/scapy/files 
    28 distfiles               ${distname}.py ethertypes 
     25homepage              http://www.secdev.org/projects/scapy 
     26master_sites          ${homepage}/all ${homepage}/files 
    2927 
    30 patchfiles              patch-scapy.py.diff 
     28distfiles             ${distname}.py ethertypes 
     29checksums             ${distname}.py \ 
     30                          sha1 49f48ba46fc4bb80d14d272a2d33cc70dee03ad8 \ 
     31                          rmd160 5925b64f1f3cff1dbd11a00e37957952023c94cd \ 
     32                      ethertypes \ 
     33                          sha1 6ed0fe2446666876d77b8971fd8edf495a9c0be3 \ 
     34                          rmd160 296b88fed911b25398b5f657cd6bb5c91e72e288 
     35patchfiles            patch-scapy.py.diff 
    3136 
    32 extract.only 
     37depends_lib-append    port:py-readline port:py-pylibpcap port:py-libdnet \ 
     38                      port:py-crypto port:py-gnuplot port:py-pyx port:graphviz 
    3339 
    34 depends_lib-append      port:py-readline port:py-pylibpcap port:py-libdnet \ 
    35                         port:py-crypto port:py-gnuplot port:py-pyx port:graphviz 
    36  
    37 checksums               \ 
    38         ${distname}.py  sha1   7cc71fef8c7e430d2e9c28c73a62dea4a0b45029 \ 
    39                         rmd160 a779800fd65d92fbd6b08b2c70e50606064dd1f6 \ 
    40         ethertypes      sha1   6ed0fe2446666876d77b8971fd8edf495a9c0be3 \ 
    41                         rmd160 296b88fed911b25398b5f657cd6bb5c91e72e288 
    42  
    43 pre-patch { 
     40extract { 
    4441        xinstall -m 775 -d ${worksrcpath} 
    4542        file copy ${distpath}/${distname}.py ${worksrcpath}/${name}.py 
     
    5047 
    5148destroot  { 
    52         xinstall -m 644 -W ${distpath} ethertypes \ 
    53                 ${destroot}${prefix}/etc 
    54         xinstall -m 755 -W ${worksrcpath} scapy.py \ 
    55                 ${destroot}${prefix}/bin 
     49        xinstall -m 644 -W ${distpath} ethertypes ${destroot}${prefix}/etc 
     50        xinstall -m 755 -W ${worksrcpath} scapy.py ${destroot}${prefix}/bin 
    5651}