Ticket #44537: Portfile-cppcheck-whitespace.diff

File Portfile-cppcheck-whitespace.diff, 3.4 KB (added by xythobuz@…, 10 years ago)
  • Portfile

    old new  
    11# -*- 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
    22# $Id: Portfile 118758 2014-04-10 18:13:29Z ryandesign@macports.org $
    33
    4 PortSystem          1.0
     4PortSystem                  1.0
    55
    6 name                cppcheck
    7 version             1.65
    8 categories          devel
    9 license             GPL-3
    10 platforms           darwin
    11 maintainers         xythobuz.de:xythobuz
     6name                        cppcheck
     7version                     1.65
     8categories                  devel
     9license                     GPL-3
     10platforms                   darwin
     11maintainers                 xythobuz.de:xythobuz
    1212
    13 description         Static analysis of C and C++ code.
     13description                 Static analysis of C and C++ code.
    1414
    15 long_description    Cppcheck is an analysis tool for C and C++ code. Unlike \
    16                     compilers and many other analysis tools, we do not detect \
    17                     syntax errors. Cppcheck only detects the types of bugs that \
    18                     the compilers normally fail to detect. The goal is no false \
    19                     positives.
     15long_description            Cppcheck is an analysis tool for C and C++ code. Unlike \
     16                            compilers and many other analysis tools, we do not detect \
     17                            syntax errors. Cppcheck only detects the types of bugs that \
     18                            the compilers normally fail to detect. The goal is no false \
     19                            positives.
    2020
    21 homepage            http://cppcheck.sourceforge.net/
    22 master_sites        sourceforge:project/cppcheck/cppcheck/${version}
     21homepage                    http://cppcheck.sourceforge.net/
     22master_sites                sourceforge:project/cppcheck/cppcheck/${version}
    2323
    24 checksums           rmd160  17a7d54a61faea7a3783a94b18301bce18b1b7ec \
    25                     sha256  f684ae47c4556eea87d04f54e3eb9782fca2ba9ff43adaa29a9271177ee6d7ea
     24checksums                   rmd160  17a7d54a61faea7a3783a94b18301bce18b1b7ec \
     25                            sha256  f684ae47c4556eea87d04f54e3eb9782fca2ba9ff43adaa29a9271177ee6d7ea
    2626
    27 depends_build       port:libxslt \
    28                     port:docbook-xsl
     27depends_build               port:libxslt \
     28                            port:docbook-xsl
    2929
    30 depends_lib         port:pcre
     30depends_lib                 port:pcre
    3131
    32 use_configure       no
     32use_configure               no
    3333
    3434variant universal {}
    3535
    36 build.args          CXX="${configure.cxx} [get_canonical_archflags cxx]" \
    37                     HAVE_RULES=yes CFGDIR=${prefix}/share/cppcheck \
    38                     DB2MAN=${prefix}/share/xsl/docbook-xsl/manpages/docbook.xsl
    39 build.target        all man
     36build.args                  CXX="${configure.cxx} [get_canonical_archflags cxx]" \
     37                            HAVE_RULES=yes CFGDIR=${prefix}/share/cppcheck \
     38                            DB2MAN=${prefix}/share/xsl/docbook-xsl/manpages/docbook.xsl
     39build.target                all man
    4040
    41 test.run            yes
    42 test.target         test
     41test.run                    yes
     42test.target                 test
    4343
    44 destroot.args       PREFIX=${prefix}
     44destroot.args               PREFIX=${prefix}
    4545
    4646post-destroot {
    4747    xinstall -m 444 ${worksrcpath}/cppcheck.1 ${destroot}${prefix}/share/man/man1