Ticket #52309: 01_ipcalc_whitespace.patch

File 01_ipcalc_whitespace.patch, 2.8 KB (added by xeron (Ivan Larionov), 8 years ago)
  • net/ipcalc/Portfile

    diff --git a/net/ipcalc/Portfile b/net/ipcalc/Portfile
    index c0c4587..349f211 100644
    a b  
    1 # $Id: Portfile 112156 2013-10-14 04:36:58Z jmr@macports.org $
    2 
    3 PortSystem 1.0
    4 
    5 name                    ipcalc
    6 version                 0.41
    7 categories              net
    8 license                 GPL-2+
    9 platforms               darwin
    10 maintainers             nomaintainer
    11 supported_archs noarch
    12 
    13 description             calculates various network masks etc. from given ip-address
    14 long_description        ipcalc takes an IP address and netmask and calculates the \
    15                                 resulting broadcast, network, Cisco wildcard mask, and host \
    16                                 range. By giving a second netmask, you can design sub- and \
    17                                 supernetworks. It is also intended to be a teaching tool and \
    18                                 presents the results as easy-to-understand binary values.
    19 
    20 homepage                http://jodies.de/ipcalc/
    21 master_sites    http://jodies.de/ipcalc-archive/
    22 checksums               md5    fb791e9a5220fc8e624d915e18fc4697 \
    23                                 sha1    b75b498f2fa5ecfa30707a51da63c6a5775829f3 \
    24                                 rmd160 aaa21c1804d7498e2604c907a336c20dc9b4511d
    25 
    26 depends_run             path:bin/perl:perl5
    27 
    28 configure       {
    29         reinplace "s|/usr/bin/perl -w|${prefix}/bin/perl -w|g" ${worksrcpath}/ipcalc
     1# $Id$
     2
     3PortSystem          1.0
     4
     5name                ipcalc
     6version             0.41
     7categories          net
     8license             GPL-2+
     9platforms           darwin
     10maintainers         nomaintainer
     11supported_archs     noarch
     12
     13description         calculates various network masks etc. from given ip-address
     14long_description    ipcalc takes an IP address and netmask and calculates the \
     15                    resulting broadcast, network, Cisco wildcard mask, and host \
     16                    range. By giving a second netmask, you can design sub- and \
     17                    supernetworks. It is also intended to be a teaching tool and \
     18                    presents the results as easy-to-understand binary values.
     19
     20homepage            http://jodies.de/ipcalc/
     21master_sites        http://jodies.de/ipcalc-archive/
     22checksums           md5 fb791e9a5220fc8e624d915e18fc4697 \
     23                    sha1 b75b498f2fa5ecfa30707a51da63c6a5775829f3 \
     24                    rmd160 aaa21c1804d7498e2604c907a336c20dc9b4511d
     25
     26depends_run         path:bin/perl:perl5
     27
     28configure {
     29    reinplace "s|/usr/bin/perl -w|${prefix}/bin/perl -w|g" ${worksrcpath}/ipcalc
    3030}
    3131
    32 build                   {}
     32build {}
    3333
    34 destroot        {
    35         xinstall -m 755 ${worksrcpath}/ipcalc ${destroot}${prefix}/bin
    36         xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
    37         xinstall -m 644 ${worksrcpath}/changelog \
    38                 ${destroot}${prefix}/share/doc/${name}
     34destroot {
     35    xinstall -m 755 ${worksrcpath}/ipcalc ${destroot}${prefix}/bin
     36    xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
     37    xinstall -m 644 ${worksrcpath}/changelog \
     38        ${destroot}${prefix}/share/doc/${name}
    3939}