[1603] in SIPB bug reports
pbm/ppm stuff removed
daemon@ATHENA.MIT.EDU (Jonathan I. Kamens)
Mon Dec 31 19:24:34 1990
Date: Mon, 31 Dec 90 19:24:14 -0500
From: "Jonathan I. Kamens" <jik@pit-manager.MIT.EDU>
To: bug-sipb@ATHENA.MIT.EDU, sipb-staff@ATHENA.MIT.EDU
I have removed the vax and rt versions of the pbm and ppm programs
from the sipb locker. I have not removed the decmips versions because
they are not installed in the graphics locker.
I've replaced the programs that I removed with the shell script
appended to the end of this message (found in
/usr/sipb/vaxbin/no-more-graphics-programs). I'll try to get the
people who maintain the graphics locker to compile for the decmips as
well, and I'll remove the symlinks to the shell script and the shell
script itself about a month after that.
jik
#!/bin/sh
# If the user has /mit/graphics or /afs/athena/contrib/graphics or
# some variant of these in his path, then he is not going to lose when
# the sipb versions of the graphics software disappears, since the
# versions in the graphics locker will get run. Therefore, in that
# case, I just exec the version of the program in the graphics locker
# rather than warning the user.
HOSTTYPE=`machtype`
GRAPHICS=`/bin/echo $PATH | /usr/bin/egrep -c \
'/mit/graphics
/afs/athena/contrib/graphics
/afs/.athena/contrib/graphics
/afs/athena.mit.edu/contrib/graphics
/afs/.athena.mit.edu/contrib/graphics'`
PROGRAM=`basename $0`
if [ $GRAPHICS -gt 0 ]; then
exec /afs/athena.mit.edu/contrib/graphics/@sys/$PROGRAM $*
else
/bin/echo 1>&2 $PROGRAM: The pbm and ppm utilities have been removed from the sipb
/bin/echo 1>&2 $PROGRAM: locker. They can be found in the graphics locker.
exit 1
fi
# NOTREACHED
exit 0