Ticket #25905: Portfile.5

File Portfile.5, 1.8 KB (added by jul_bsd@…, 10 years ago)

picviz-parsers

Line 
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
2# $Id$
3
4PortSystem          1.0
5PortGroup        python 1.0
6
7
8name                picviz-parsers
9version             0.6.1
10distname            libpicviz-${version}
11categories          graphics net
12platforms           darwin
13maintainers         yahoo.fr:jul_bsd openmaintainer
14description         (parsers) Picviz can help you to understand what is \
15                    happening on your network and machines by \
16                    visualizing events in multi-dimensions with the \
17                    help of parallel coordinates plot.
18long_description    ${description}
19license             GPL-3+ + Specific Picviz license terms
20homepage            http://www.picviz.com/en/community/picviz/picviz.html
21master_sites        http://www.picviz.com/downloads/
22distname            picviz-latest
23extract.suffix      .tar.bz2
24worksrcdir          ${distname}/picviz-parsers
25supported_archs     noarch
26python.versions     24 25 26 27 33
27
28checksums           rmd160  232491961385208b9d19015de1db7171949e973a \
29                    sha256  3fdc4f60c821f377514ccd5ceacf83b197e747ea928e6f80e020c25395a43b00
30
31depends_build       port:libpicviz
32
33post-destroot {
34    xinstall -d ${destroot}${prefix}/share/examples/${name}
35
36## FIXME! Error: org.macports.destroot for port picviz-parsers returned: error copying "Picviz-Dshield": no such file or directory
37##    (it's an existing directory)
38    foreach file { Picviz-Dshield auth csv2picviz.pl net \
39        syslog2picviz.pl unsupported autrace2picviz.pl \
40        ids scm slapd2picviz.py syslog2picviz.py web } {
41        copy -force ${worksrcpath}/${file} ${destroot}${prefix}/share/examples/${name}/
42    }
43}
44
45livecheck.type     none
46