about summary refs log tree commit diff
path: root/vms/SetUp.com
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2010-05-19 03:25:42 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2010-05-19 03:25:42 +0000
commit5e3a1ff09e327f6e1de32ae3d4718f3579559f32 (patch)
treebd1c2dea327ed56bf4fad12cf9d873c4b659da83 /vms/SetUp.com
parent1f2aae5b55e42ed8fa247785ee896f750042a12d (diff)
downloadnetpbm-mirror-5e3a1ff09e327f6e1de32ae3d4718f3579559f32.tar.gz
netpbm-mirror-5e3a1ff09e327f6e1de32ae3d4718f3579559f32.tar.xz
netpbm-mirror-5e3a1ff09e327f6e1de32ae3d4718f3579559f32.zip
Remove VMS code. Who are we kidding?
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1216 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'vms/SetUp.com')
-rwxr-xr-xvms/SetUp.com37
1 files changed, 0 insertions, 37 deletions
diff --git a/vms/SetUp.com b/vms/SetUp.com
deleted file mode 100755
index 077318b5..00000000
--- a/vms/SetUp.com
+++ /dev/null
@@ -1,37 +0,0 @@
-$ VERIFY = F$Verify (0)
-$ On Error Then GoTo EXIT
-$ Write Sys$Output "SETting UP PBMplus (ver netpbm-VMS)..."
-$! 
-$!  Keep this proc in the top directory of the PBMPLUS tree. Execute it from 
-$!  anywhere and it will set up command symbols for all executables in the
-$!  PBMplus_Root:[EXE] directory.
-$!  There is a problem if this directory is located in a "rooted"
-$!  directory structure already.  It is not possible to define a "rooted"
-$!  directory twice, i.e.:
-$! BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD
-$! BAD                                                                 BAD
-$! BAD     Define /Trans=conceal Public Disk$:[Dir.]                   BAD
-$! BAD     Define /Trans=conceal PBMplus_Root Public:[PBMplus.]        BAD
-$! BAD                                                                 BAD
-$! BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD BAD
-$!  THIS WILL NOT WORK!  In this case, you will have to manually define
-$!  PBMplus_Root instead of the autosensing feature below....
-$! 
-$ PBMPLUS_PATH = F$Element (0, "]", F$Environment ("PROCEDURE")) + ".]"
-$ Define /Translation_Attributes = Concealed PBMplus_Root "''PBMPLUS_PATH'"
-$ Define PBMplus_Dir PBMplus_Root:[000000]
-$ Define PBMplusShr PBMplus_Dir:PBMplusShr
-$ NAME = "PBMplus_Root:[Exe]*.EXE"
-$LOOP:
-$   PROG = F$Search (NAME)
-$   If PROG .nes. ""
-$       Then
-$           PROG = PROG - F$Parse (PROG, , , "VERSION")
-$           CMD = F$Parse (PROG, , , "NAME")
-$           'CMD' :== $ 'PROG'
-$       GoTo LOOP
-$   EndIf
-$   @ PBMplus_Dir:ADD_LIST Hlp$Library PBMplus_Dir:PBMPLUS.HLB
-$EXIT:
-$   VERIFY = F$Verify (VERIFY)
-$   Exit