home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slakware / ap1 / maketag < prev    next >
Text File  |  1995-03-23  |  2KB  |  57 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 AP (APPLICATIONS)" \
  5.        --checklist "Please select the packages you wish to install \
  6. from series AP. 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." 22 70 11 \
  12. "ispell" "The International version of ispell (3.1.08)" "off" \
  13. "jove" "Jonathan's Own Version of Emacs text editor" "off" \
  14. "man" "On-line manual pages" "on" \
  15. "manpgs" "More man pages" "on" \
  16. "diff" "GNU diffutils" "on" \
  17. "sudo" "Allow special users limited root access" "off" \
  18. "termbin" "The executable files for term 2.3.5" "off" \
  19. "termnet" "ttelnet, tfinger, and tncftp for term" "off" \
  20. "termsrc" "SOURCE code for term 2.3.5" "off" \
  21. "ghostscr" "GNU Ghostscript version 2.6.1" "off" \
  22. "gsfonts1" "Fonts for the Postscript interpreter" "off" \
  23. "gsfonts2" "More fonts for the Postscript interpreter" "off" \
  24. "jed" "JED programmer's editor" "on" \
  25. "joe" "joe text editor, version 2.2" "on" \
  26. "jpeg" "JPEG image compression utilities" "off" \
  27. "bc" "GNU bc - arbitrary precision math language" "off" \
  28. "workbone" "a text-based audio CD player" "off" \
  29. "ftape" "floppy controller tape drive support" "off" \
  30. "mc" "The Midnight Commander file manager" "off" \
  31. "mt_st" "mt ported from BSD - controls tape drive" "off" \
  32. "gp9600" "Changes the default modem speed" "off" \
  33. "groff" "GNU troff 1.09 document formatting system" "off" \
  34. "quota" "quota and accounting utils" "off" \
  35. "sc" "The 'sc' spreadsheet" "off" \
  36. "shlbsvga" "Shared svga library" "on" \
  37. "texinfo" "GNU texinfo documentation system" "on" \
  38. "vim" "Improved vi clone" "off" \
  39. "ash" "A small /bin/sh type shell - 62K" "off" \
  40. "zsh" "Zsh - a custom *nix shell" "off" \
  41. 2> /tmp/SeTpkgs
  42. if [ $? = 1 -o $? = 255 ]; then
  43.  rm -f /tmp/SeTpkgs
  44.  exit
  45. fi
  46. cat /dev/null > /tmp/SeTnewtag
  47. for PACKAGE in ispell jove man manpgs termbin termsrc bc \
  48. gp9600 groff quota sc workbone ghostscr gsfonts1 joe gsfonts2 ftape \
  49. mc jpeg shlbsvga termnet ash jed mt_st texinfo vim sudo diff zsh ; do
  50.  if fgrep \"$PACKAGE\" /tmp/SeTpkgs 1> /dev/null 2> /dev/null ; then
  51.   echo "$PACKAGE: ADD" >> /tmp/SeTnewtag
  52.  else
  53.   echo "$PACKAGE: SKP" >> /tmp/SeTnewtag
  54.  fi
  55. done
  56. rm -f /tmp/SeTpkgs
  57.