home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 March B / SCO_CASTOR4RRT.iso / xfonts / install / postremove < prev   
Text File  |  1998-08-19  |  567b  |  30 lines

  1. #!/bin/sh
  2. #
  3. #    @(#)postremove    11.1    10/22/97    15:43:42
  4. #
  5. #    postremove script for xfonts package
  6. #
  7. # --------------------------------------------------------------- #
  8. INSTDIR=/usr/X
  9.  
  10. echo "xfonts postremove: rebuilding fonts.dir in misc, 75dpi, 100dpi"
  11.  
  12. if [ -d $INSTDIR/lib/X11/fonts ]; then {
  13.     cd $INSTDIR/lib/X11/fonts
  14.  
  15.     HERE=`pwd`
  16.     for i in 75dpi 100dpi misc
  17.     do
  18.         if [ -d $i ]; then {
  19.             cd $i
  20.             if [ -f fonts.dir ]; then {
  21.                 $INSTDIR/bin/mkfontdir
  22.             } fi
  23.             cd $HERE
  24.         } fi
  25.     done
  26. } else {
  27.     echo "xfonts postremove: $INSTDIR/lib/X11/fonts does not exist."
  28. } fi
  29.  
  30.