Ticket #21611: Portfile

File Portfile, 1.8 KB (added by mjhsieh@…, 15 years ago)

The suggested Portfile

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$
3PortSystem      1.0
4name            mddisplay
5version         3.0     
6categories      science
7maintainers     yahoo.com:mjhsieh
8description     A 3D Stereo Molecular Dynamics Trajectory Visualization Package
9long_description    MD Display turns molecular dynamics trajectory data into a \
10                    colorful, animated, on-screen movie. Key features include: \
11                    Mouse control of translation, rotation, scaling, and \
12                    clipping. Half-bond coloring controls. Animation speed and \
13                    direction controls. Dynamic monitoring of distances, bond \
14                    angles, dihedrals, and hydrogen bonds. Superimposition of \
15                    static initial or average reference structures. \
16                    Ramachandron plots. Real-time filtering of higher \
17                    frequency molecular motions. PDB dump feature, for \
18                    extracting movie frames on-the-fly.
19
20homepage        http://structbio.vanderbilt.edu/~cmoth/mddisplay/
21master_sites    http://structbio.vanderbilt.edu/~cmoth/mddisplay/
22distname        mddisplay
23platforms       darwin
24checksums       md5 b4f61a306d321bcdb53870887090c2e0 \
25                sha1 d5586a6b1357d8d42f778b4cf299db28f02190e4
26
27use_configure   no
28
29patchfiles      patch-mddisplay.c.diff \
30                patch-displib.c.diff \
31                patch-preproc.c.diff
32
33build.args      CC=${configure.cc}
34
35build.cmd       make -f makefile.osx
36
37build.target    default
38
39destroot        {
40        xinstall -m 0755 ${worksrcpath}/mddisplay ${destroot}${prefix}/bin
41        xinstall -m 0755 ${worksrcpath}/preproc ${destroot}${prefix}/bin
42}