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 | |
---|
6 | name civl |
---|
7 | version 1.6 |
---|
8 | set rev 2872 |
---|
9 | categories devel |
---|
10 | platforms darwin |
---|
11 | maintainers udel.edu:aturqi |
---|
12 | description The Concurrency Intermediate Verification Language |
---|
13 | long_description The CIVL platform encompasses: \ |
---|
14 | (1) the programming language CIVL-C, a dialect of C with additional primitives \ |
---|
15 | supporting concurrency, specication, and modeling\ |
---|
16 | (2) verification and analysis tools, including a symbolic execution-based model\ |
---|
17 | checker for checking various properties of, or finding defects in, CIVL-C \ programs \ (3) tools that translate from many commonly used languages/APIs\ |
---|
18 | to CIVL-C, including MPI, OpenMP, CUDA, and Pthreads. |
---|
19 | license GPL-3+ |
---|
20 | homepage http://vsl.cis.udel.edu/civl |
---|
21 | distname CIVL-${version}_${rev} |
---|
22 | extract.suffix .tgz |
---|
23 | master_sites http://vsl.cis.udel.edu/lib/sw/${name}/${version}/r${rev}/release |
---|
24 | checksums rmd160 f9c755e26c7d3e2b4a5a29d4008c86551abda33b \ |
---|
25 | sha256 b90db06b5f390b2888e0d3d9e25d68b77373a1e34ca20c73bfcef322708ff4c8 |
---|
26 | depends_lib port:cvc4 |
---|
27 | use_configure no |
---|
28 | |
---|
29 | build {} |
---|
30 | |
---|
31 | destroot { |
---|
32 | system -W ${worksrcpath}/lib/ "java -jar civl-${version}_${rev}.jar help" |
---|
33 | } |
---|
34 | |
---|
35 | post-destroot { |
---|
36 | set docdir ${prefix}/share/doc/${name} |
---|
37 | xinstall -d ${destroot}${docdir} |
---|
38 | xinstall -m 0644 -W ${worksrcpath} \ |
---|
39 | README \ |
---|
40 | ${destroot}${docdir} |
---|
41 | xinstall -m 0644 -W ${worksrcpath}/doc \ |
---|
42 | civl-manual.pdf \ |
---|
43 | ${destroot}${docdir} |
---|
44 | xinstall -m 0644 -W ${worksrcpath}/licenses \ |
---|
45 | LICENSE.antlr-3.txt \ |
---|
46 | LICENSE.antlr-4.txt \ |
---|
47 | LICENSE.civl.txt \ |
---|
48 | ${destroot}${docdir} |
---|
49 | |
---|
50 | copy ${worksrcpath}/examples ${destroot}${docdir} |
---|
51 | copy ${worksrcpath}/lib ${destroot}${docdir} |
---|
52 | |
---|
53 | } |
---|
54 | |
---|