Ticket #46252: Portfile

File Portfile, 1.4 KB (added by rprogers@…, 9 years ago)

GMTK 1.4.3 portfile with no X11 dependency

Line 
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
4PortSystem        1.0
5PortGroup         wxWidgets 1.0
6wxWidgets.use     wxWidgets-3.0
7
8name              gmtk
9version           1.4.3
10categories        science
11platforms         darwin
12license           OSL-3
13maintainers       uw.edu:rprogers \
14                  openmaintainer
15description       Graphical Models Toolkit
16long_description  The Graphical Models Toolkit is an open source \
17                  toolkit for rapidly prototyping dynamic graphical models
18homepage          https://j.ee.washington.edu/trac/gmtk
19master_sites      http://melodi.ee.washington.edu/downloads/gmtk/
20checksums         rmd160 77d75e0b4c492a0ece6ac6b55b85da5641bd7a6e \
21                  sha256 ed225120f67bbff760a1cf2bc1c15e5651f2decd17a935c3c45d8f381fcb4759
22depends_lib       port:hdf5 \
23                  port:xorg-libX11 \
24                  port:${wxWidgets.port}
25configure.args    --with-wxdir=${wxWidgets.wxdir}
26post-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}