home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slakware / xap1 / maketag < prev    next >
Text File  |  1995-03-23  |  2KB  |  44 lines

  1. #!/bin/sh
  2. #item   ####description                                      ###on off ###
  3. rm -f /tmp/SeTnewtag # empty the return file
  4. dialog --title "SELECTING PACKAGES FOR 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. "gs_x11" "Adds X11 driver to Ghostscript" "on" \
  13. "libgr" "Shared libraries with GIF, TIFF, JPEG support" "on" \
  14. "seyon" "A complete telecommunications package" "on" \
  15. "vgaset" "Helps configure your monitor for X more easily" "on" \
  16. "xfileman" "A filemanager" "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. "ghstview" "Ghostview 1.5" "on" \
  22. "x3270" "x3270 3.0.1.3 - IBM host access tool" "off" \
  23. "xgames" "A collection of X windows games" "off" \
  24. "xfract" "Fractint for X" "off" \
  25. "xpaint" "A color painting/image editing program" "off" \
  26. "xspread" "An X windows spreadsheet" "off" \
  27. "xxgdb" "xxgdb-1.08" "off" \
  28. 2> /tmp/SeTpkgs
  29. if [ $? = 1 -o $? = 255 ]; then
  30.  rm -f /tmp/SeTpkgs
  31.  exit
  32. fi
  33. cat /dev/null > /tmp/SeTnewtag
  34. for PACKAGE in gchess xfm ghstview x3270 xgames xspread xxgdb \
  35. gnuplot gs_x11 libgr seyon vgaset xfileman xv \
  36. xfract xpaint ; do
  37.  if fgrep \"$PACKAGE\" /tmp/SeTpkgs 1> /dev/null 2> /dev/null ; then
  38.   echo "$PACKAGE: ADD" >> /tmp/SeTnewtag
  39.  else
  40.   echo "$PACKAGE: SKP" >> /tmp/SeTnewtag
  41.  fi
  42. done
  43. rm -f /tmp/SeTpkgs
  44.