home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / SLAKWARE / XAP1 / MAKETAG < prev    next >
Text File  |  1997-04-19  |  2KB  |  50 lines

  1. #!/bin/sh
  2. #item   ####description                                      ###on off ###
  3. cat /dev/null > /tmp/SeTnewtag
  4. dialog --title "SELECTING PACKAGES FROM SERIES XAP (X APPLICATIONS)" \
  5.        --checklist "Please select the packages you wish to install \
  6. from series XAP. Use the \
  7. UP/DOWN keys to scroll through the list, and the SPACE key to select \
  8. the packages you wish to install. Recommended packages have \
  9. already been selected for you, but you may unselect them if you wish. \
  10. Press ENTER when you are \
  11. done." 21 70 10 \
  12. "arena" "A graphical browser for the World Wide Web" "off" \
  13. "fvwm95" "A window manager to make X resemble Win95" "on" \
  14. "gs_x11" "Adds X11 driver to Ghostscript" "on" \
  15. "libgr" "Shared libraries with GIF, TIFF, JPEG support" "on" \
  16. "seyon" "A complete telecommunications package" "on" \
  17. "gnuplot" "Gnuplot function plotting utility" "off" \
  18. "xv" "XV GIF/TIFF/JPEG/PostScript Image Viewer" "on" \
  19. "gchess" "GNU chess and xboard" "off" \
  20. "xfm" "xfm, an X windows filemanager" "off" \
  21. "xfileman" "another X filemanager" "off" \
  22. "ghstview" "Ghostview 1.5" "on" \
  23. "x3270" "x3270 3.0.1.3 - IBM host access tool" "off" \
  24. "xgames" "A collection of X windows games" "off" \
  25. "xfract" "Fractint for X" "off" \
  26. "xpaint" "A color painting/image editing program" "off" \
  27. "xspread" "An X windows spreadsheet" "off" \
  28. "xxgdb" "xxgdb-1.12" "off" \
  29. 2> /tmp/SeTpkgs
  30. if [ $? = 1 -o $? = 255 ]; then
  31.  rm -f /tmp/SeTpkgs
  32.  > /tmp/SeTnewtag
  33.  for pkg in gchess ghstview gnuplot gs_x11 seyon xxgdb arena libgr x3270 \
  34.   xfm xpaint fvwm95 xfileman xfract xgames xspread xv ; do
  35.   echo "$pkg: SKP" >> /tmp/SeTnewtag
  36.  done
  37.  exit
  38. fi
  39. cat /dev/null > /tmp/SeTnewtag
  40. for PACKAGE in gchess xfm ghstview x3270 xgames xspread xxgdb \
  41. arena xfileman gnuplot gs_x11 libgr seyon xv \
  42. fvwm95 xfract xpaint ; do
  43.  if fgrep \"$PACKAGE\" /tmp/SeTpkgs 1> /dev/null 2> /dev/null ; then
  44.   echo "$PACKAGE: ADD" >> /tmp/SeTnewtag
  45.  else
  46.   echo "$PACKAGE: SKP" >> /tmp/SeTnewtag
  47.  fi
  48. done
  49. rm -f /tmp/SeTpkgs
  50.