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 wxWidgets 1.0 |
---|
6 | wxWidgets.use wxWidgets-3.0 |
---|
7 | |
---|
8 | name gmtk |
---|
9 | version 1.4.3 |
---|
10 | categories science |
---|
11 | platforms darwin |
---|
12 | license OSL-3 |
---|
13 | maintainers uw.edu:rprogers \ |
---|
14 | openmaintainer |
---|
15 | description Graphical Models Toolkit |
---|
16 | long_description The Graphical Models Toolkit is an open source \ |
---|
17 | toolkit for rapidly prototyping dynamic graphical models |
---|
18 | homepage https://j.ee.washington.edu/trac/gmtk |
---|
19 | master_sites http://melodi.ee.washington.edu/downloads/gmtk/ |
---|
20 | checksums rmd160 77d75e0b4c492a0ece6ac6b55b85da5641bd7a6e \ |
---|
21 | sha256 ed225120f67bbff760a1cf2bc1c15e5651f2decd17a935c3c45d8f381fcb4759 |
---|
22 | depends_lib port:hdf5 \ |
---|
23 | port:xorg-libX11 \ |
---|
24 | port:${wxWidgets.port} |
---|
25 | configure.args --with-wxdir=${wxWidgets.wxdir} |
---|
26 | post-destroot { |
---|
27 | # Install example files not installed by the Makefile |
---|
28 | file mkdir ${destroot}${prefix}/share/doc/${name} |
---|
29 | file copy ${worksrcpath}/COPYING \ |
---|
30 | ${destroot}${prefix}/share/doc/${name} |
---|
31 | file copy ${worksrcpath}/NEWS \ |
---|
32 | ${destroot}${prefix}/share/doc/${name} |
---|
33 | file copy ${worksrcpath}/README \ |
---|
34 | ${destroot}${prefix}/share/doc/${name} |
---|
35 | } |
---|