summaryrefslogtreecommitdiff
path: root/biology/rasmol/scripts/build_viewer
blob: 1b0c1a2fd0da497465940a5ac27ff2bff5a32491 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/sh

# This builds the rasmol molecular viewer.  One of the problems with
# rasmol is that is only works at one color depth.  This script will
# build three viewers at different color depths, 8-bit, 16-bit,
# and 32-bit.  The binaries are called rasmol-8, rasmol-16, and
# rasmol-32 respectively.  A wrapper script installed with the port will
# automatically select the right one.

cd ${WRKSRC}

cp Imakefile Imakefile.temp


sed s@'ComplexProgramTarget(rasmol)'@'ComplexProgramTarget(rasmol-32)'@ \
    Imakefile.temp > Imakefile

xmkmf -a

make clean && make

sed -e s@'DEPTHDEF = -DTHIRTYTWOBIT'@'# DEPTHDEF = -DTHIRTYTWOBIT'@ \
    -e s@'# DEPTHDEF = -DSIXTEENBIT'@'DEPTHDEF = -DSIXTEENBIT'@ \
    -e s@'ComplexProgramTarget(rasmol)'@'ComplexProgramTarget(rasmol-16)'@ \
       Imakefile.temp > Imakefile

xmkmf -a

make clean && make

sed -e s@'DEPTHDEF = -DTHIRTYTWOBIT'@'# DEPTHDEF = -DTHIRTYTWOBIT'@ \
    -e s@'# DEPTHDEF = -DEIGHTBIT'@'DEPTHDEF = -DEIGHTBIT'@ \
    -e s@'ComplexProgramTarget(rasmol)'@'ComplexProgramTarget(rasmol-8)'@ \
       Imakefile.temp > Imakefile

xmkmf -a

make clean && make

# Restore Imakefile to original state so that rerunning this script does
# the right thing.
mv Imakefile.temp Imakefile
xmkmf -a
make clean && make rasmol.man

exit 0