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; and (3) tools that translate from many commonly used languages/APIs\ |
---|
18 | to CIVL-C, including MPI, OpenMP, CUDA, and Pthreads. |
---|
19 | license GNU |
---|
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 | |
---|
28 | configure.args --enable-perl-site-install \ |
---|
29 | --mandir=${prefix}/share/man |
---|
30 | |
---|
31 | |
---|
32 | post-destroot { |
---|
33 | set docdir ${prefix}/share/doc/${name} |
---|
34 | xinstall -d ${destroot}${docdir} |
---|
35 | xinstall -m 0644 -W ${worksrcpath} \ |
---|
36 | README \ |
---|
37 | ${destroot}${docdir} |
---|
38 | xinstall -m 0644 -W ${worksrcpath}/docs \ |
---|
39 | civl-manual.pdf \ |
---|
40 | ${destroot}${docdir} |
---|
41 | xinstall -m 0644 -W ${worksrcpath}/licenses \ |
---|
42 | LICENSE.antlr-3.txt \ |
---|
43 | LICENSE.antlr-4.txt \ |
---|
44 | LICENSE.civl.txt \ |
---|
45 | ${destroot}${docdir} |
---|
46 | |
---|
47 | set examplesdir ${prefix}/share/examples/${name} |
---|
48 | xinstall -d ${destroot}${examplesdir} |
---|
49 | copy ${worksrcpath}/examaples |
---|
50 | ${destroot}${examplesdir} |
---|
51 | } |
---|