Ticket #16071: Portfile-whitespace.diff

File Portfile-whitespace.diff, 4.0 KB (added by usx303@…, 16 years ago)

Portfile patch fixes whitespaces

  • (a) Portfile vs. (b) Portfile-whitespace

    a b  
     1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
    12# $Id: Portfile 38347 2008-07-16 20:34:15Z macsforever2000@macports.org $
    23
    3 PortSystem        1.0
     4PortSystem      1.0
    45
    5 name              libprelude
    6 version           0.9.17.2
    7 categories        security
    8 maintainers       nomaintainer
    9 
    10 description       Prelude Network Intrusion Detection System framework library
    11 
    12 long_description  Prelude is an Hybrid IDS framework that relies on the IDMEF (Intrusion \
    13                   Detection Message Exchange Format) IETF standard.  It enables security \
    14                   sensors such as Snort, honeyd, Nessus Vulnerability Scanner, Samhain, \
    15                   over 30 types of system logs, and many others to verify an attack \
    16                   by performing automatic correlation between events.
    17 
    18 homepage          http://www.prelude-ids.org/
    19 master_sites      http://www.prelude-ids.org/download/releases/libprelude/
    20 platforms         darwin
    21 build.type        gnu
    22 checksums         md5 7c769293b4d79be2667993b8a88d42ac \
    23                   sha1 c21ce3deb3d2294901f9451adae18829b72cb3bd \
    24                   rmd160 710430d97cd90b54a0f70d6500bfacd88faeeea4
    25 
    26 depends_lib       port:gettext port:gnutls port:libgcrypt port:libgpg-error \
    27                   port:libiconv port:libtasn1 port:zlib
    28 
    29 configure.args    --mandir=${prefix}/share/man \
    30                   --with-html-dir=${prefix}/share/doc \
    31                   --localstatedir=${prefix}/var \
    32                   --without-perl \
    33                   --without-python
     6name            libprelude
     7version         0.9.17.2
     8categories      security
     9maintainers     nomaintainer
     10
     11description     Prelude Network Intrusion Detection System framework library
     12
     13long_description \
     14        Prelude is an Hybrid IDS framework that relies on the IDMEF (Intrusion \
     15        Detection Message Exchange Format) IETF standard.  It enables security \
     16        sensors such as Snort, honeyd, Nessus Vulnerability Scanner, Samhain, \
     17        over 30 types of system logs, and many others to verify an attack \
     18        by performing automatic correlation between events.
     19
     20homepage        http://www.prelude-ids.org/
     21master_sites    http://www.prelude-ids.org/download/releases/libprelude/
     22platforms       darwin
     23build.type      gnu
     24checksums       md5 7c769293b4d79be2667993b8a88d42ac \
     25                sha1 c21ce3deb3d2294901f9451adae18829b72cb3bd \
     26                rmd160 710430d97cd90b54a0f70d6500bfacd88faeeea4
     27
     28depends_lib     port:gettext port:gnutls port:libgcrypt port:libgpg-error \
     29                port:libiconv port:libtasn1 port:zlib
     30
     31configure.args  --mandir=${prefix}/share/man \
     32                --with-html-dir=${prefix}/share/doc \
     33                --localstatedir=${prefix}/var \
     34                --without-perl \
     35                --without-python
    3436
    3537variant python24 conflicts python25 description {python2.4 bindings} {
    36         configure.args-delete   --without-python
    37         configure.args-append   --with-python=${prefix}/bin/python2.4
    38         depends_lib-append port:python24
     38        configure.args-delete   --without-python
     39        configure.args-append   --with-python=${prefix}/bin/python2.4
     40        depends_lib-append port:python24
    3941}
    4042
    4143variant python25 conflicts python24 description {python2.5 bindings} {
    42         configure.args-delete   --without-python
    43         configure.args-append   --with-python=${prefix}/bin/python2.5
    44         depends_lib-append port:python25
     44        configure.args-delete   --without-python
     45        configure.args-append   --with-python=${prefix}/bin/python2.5
     46        depends_lib-append port:python25
    4547}
    4648
    4749variant perl description {perl bindings} {
    48         configure.args-delete   --without-perl
    49         configure.args-append   --with-perl=${prefix}/bin/perl5.8
    50         depends_lib-append port:perl5.8
     50        configure.args-delete   --without-perl
     51        configure.args-append   --with-perl=${prefix}/bin/perl5.8
     52        depends_lib-append port:perl5.8
    5153}
    52