diff options
Diffstat (limited to 'biology/tinker/scripts/build_viewer')
-rw-r--r-- | biology/tinker/scripts/build_viewer | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/biology/tinker/scripts/build_viewer b/biology/tinker/scripts/build_viewer deleted file mode 100644 index 24fb838c4fd0..000000000000 --- a/biology/tinker/scripts/build_viewer +++ /dev/null @@ -1,47 +0,0 @@ -#!/bin/sh - -# This builds the molecular viewer for tinker files. It is a modified -# version of rasmol. 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 tview-8, tview-16, and tview-32 respectively. - -cd ${WRKSRC}/../rasmol - -cp Imakefile Imakefile.orig - -sed s@/user/ponder@${PREFIX}/share@ Imakefile > Imakefile.temp - -sed s@'ComplexProgramTarget(rasmol)'@'ComplexProgramTarget(tview-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(tview-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(tview-8)'@ \ - Imakefile.temp > Imakefile - -xmkmf -a - -make clean && make - -# Restore Imakefile to original state so that rerunning this script does -# the right thing. -rm Imakefile.temp -mv Imakefile.orig Imakefile -xmkmf -a -make clean - -exit 0 |