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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | |
---|
7 | |
---|
8 | name picviz-parsers |
---|
9 | version 0.6.1 |
---|
10 | distname libpicviz-${version} |
---|
11 | categories graphics net |
---|
12 | platforms darwin |
---|
13 | maintainers yahoo.fr:jul_bsd openmaintainer |
---|
14 | description (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. |
---|
18 | long_description ${description} |
---|
19 | license GPL-3+ + Specific Picviz license terms |
---|
20 | homepage http://www.picviz.com/en/community/picviz/picviz.html |
---|
21 | master_sites http://www.picviz.com/downloads/ |
---|
22 | distname picviz-latest |
---|
23 | extract.suffix .tar.bz2 |
---|
24 | worksrcdir ${distname}/picviz-parsers |
---|
25 | supported_archs noarch |
---|
26 | python.versions 24 25 26 27 33 |
---|
27 | |
---|
28 | checksums rmd160 232491961385208b9d19015de1db7171949e973a \ |
---|
29 | sha256 3fdc4f60c821f377514ccd5ceacf83b197e747ea928e6f80e020c25395a43b00 |
---|
30 | |
---|
31 | depends_build port:libpicviz |
---|
32 | |
---|
33 | post-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 | |
---|
45 | livecheck.type none |
---|
46 | |
---|