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.1 |
---|
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 796e3974e0f08ed9ae8bb59249758e1c9a077770 \ |
---|
21 | sha256 ca880ffcc1b6c03b32af1d77a2252818cd7ab034587fd31a2426bd9502c009ab |
---|
22 | depends_lib port:hdf5 \ |
---|
23 | port:${wxWidgets.port} |
---|
24 | configure.args --with-wxdir=${wxWidgets.wxdir} |
---|
25 | post-destroot { |
---|
26 | # Install example files not installed by the Makefile |
---|
27 | file mkdir ${destroot}${prefix}/share/doc/${name} |
---|
28 | file copy ${worksrcpath}/COPYING \ |
---|
29 | ${destroot}${prefix}/share/doc/${name} |
---|
30 | file copy ${worksrcpath}/NEWS \ |
---|
31 | ${destroot}${prefix}/share/doc/${name} |
---|
32 | file copy ${worksrcpath}/README \ |
---|
33 | ${destroot}${prefix}/share/doc/${name} |
---|
34 | } |
---|