summaryrefslogtreecommitdiff
path: root/biology/spdbv/files/patch-aa
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2005-02-18 23:44:49 +0000
committerKris Kennaway <kris@FreeBSD.org>2005-02-18 23:44:49 +0000
commit11ea174ccbc9cebd4134768e8fb92c6a3dc2c559 (patch)
tree1514ed7a486e108239615c1d83319d83bacdbc3d /biology/spdbv/files/patch-aa
parentUpdate dependency to bash2 in preparation for removing bash1. (diff)
As previously announced, remove ports that have reached their expiry date,
and the handful of ports that depended on them.
Notes
Notes: svn path=/head/; revision=129234
Diffstat (limited to 'biology/spdbv/files/patch-aa')
-rw-r--r--biology/spdbv/files/patch-aa118
1 files changed, 0 insertions, 118 deletions
diff --git a/biology/spdbv/files/patch-aa b/biology/spdbv/files/patch-aa
deleted file mode 100644
index 13565d05159a..000000000000
--- a/biology/spdbv/files/patch-aa
+++ /dev/null
@@ -1,118 +0,0 @@
---- install.sh.orig Tue Nov 5 13:55:58 2002
-+++ install.sh Tue Nov 5 14:02:10 2002
-@@ -7,10 +7,9 @@
- SPDBVNEEDOS="Linux"
-
- SPDBVUSERDIR="$HOME"
--SPDBVSHAREDIR="/usr/share"
- SPDBVDIR="SPDBV"
- SPDBVSTUFF="_stuff_"
--SPDBVDEST=""
-+SPDBVDEST="${PREFIX}"
- SPDBVOSVERSION=`uname -r`
- SPDBVOS=`uname -s`
- if [ $SPDBVOS = IRIX64 ]; then
-@@ -27,20 +26,8 @@
- echo "Will install the shared files in $SPDBVDEST."
- if [ -d $SPDBVDEST/$SPDBVDIR ]; then
- echo "Shared files are already installed on this system."
-- echo "Delete old files and reinstall (Y/N)?"
-- read INP
-- if [ $INP = "Y" -o $INP = "y" ]; then
-- echo " "
-- echo "will reinstall"
-- if [ -w $SPDBVDEST/$SPDBVDIR ]; then
-- rm -r $SPDBVDEST/$SPDBVDIR
-- else
-- echo "Could not delete shared files."
-- abort
-- fi
-- else
-- abort
-- fi
-+ echo " "
-+ echo "will reinstall"
- fi
- mkdir $SPDBVDEST/$SPDBVDIR #2> /dev/null
- if [ ! -d $SPDBVDEST/$SPDBVDIR ]; then
-@@ -63,11 +50,11 @@
- chmod ugo+rx $SPDBVDEST/$SPDBVDIR/bin/spdbv
-
- #try to make link from /usr/bin/spdbv to ./spdbv
-- if [ ! -w /usr/bin/ ]; then
-+ if [ ! -w ${SPDBVDEST}/bin/ ]; then
- echo " "
-- echo "Can't make a link from /usr/bin/spdbv to $SPDBVDEST/$SPDBVDIR/bin/spdbv"
-+ echo "Can't make a link from ${SPDBVDEST}/bin/spdbv to $SPDBVDEST/$SPDBVDIR/bin/spdbv"
- else
-- ln -sf $SPDBVDEST/$SPDBVDIR/bin/spdbv /usr/bin/spdbv
-+ ln -sf $SPDBVDEST/$SPDBVDIR/bin/spdbv ${SPDBVDEST}/bin/spdbv
- fi
- }
-
-@@ -81,65 +68,18 @@
- echo " Installation script for Release $SPDBVVERSION ($SPDBVNEEDOS)"
- echo " "
- echo " "
-- echo " Please follow the instructions below."
-- echo " "
-- echo "Where do you want me to install the files:"
-- echo "globally in /usr/share/SPDBV -> G"
-- echo "or just locally in ~/SPDBV -> L"
-- echo "something different -> O"
-- echo "(G/L/O)?"
-- read DEST
--
-- SPDBVDEST=""
-- if [ $DEST = "G" -o $DEST = "g" ]; then
-- SPDBVDEST=$SPDBVSHAREDIR
-- elif [ $DEST = "L" -o $DEST = "l" ]; then
-- SPDBVDEST=$SPDBVUSERDIR
-- elif [ $DEST = "O" -o $DEST = "o" ]; then
-- echo "enter target Path where to install directory SPDBV:"
-- read SPDBVDEST
-- fi
--
-- if [ -z $SPDBVDEST ]; then
-- echo ""
-- echo "$SPDBVDEST is not a valid answer. 1"
-- echo ""
-- echo "continue .. hit any key"
-- read DEST
-- mainmenu
-- fi
-- if [ ! '(' -d $SPDBVDEST ')' ]; then
-- echo ""
-- echo "$SPDBVDEST is not a valid answer. 2"
-- echo ""
-- echo "continue .. hit any key"
-- read DEST
-- mainmenu
-- fi
-
- makesharedinst
-
--# clear
--
- echo " "
- echo " SPDBV - Swiss PDB Viewer"
- echo " Installation script for Release $SPDBVVERSION ($SPDBVNEEDOS)"
- echo " "
- echo "Installation completed."
-- echo "Start your copy of SPDBV with the script $SPDBVDEST/$SPDBVDIR/bin/spdbv"
- echo ""
- echo "ENJOY SPDBV!"
- exit
- }
--
--# test for the right os
--if [ $SPDBVOS != $SPDBVNEEDOS ]; then
-- if [ $SPDBVOS != $SPDBVNEEDOSbis ]; then
-- echo "SPDBV $SPDBVVERSION ($SPDBVNEEDOS) is intended to run on hardware under $SPDBVNEEDOS."
-- abort
-- exit
-- fi
--fi
-
- # start up the mainmenu
- mainmenu