home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- #item ####description ###on off ###
- rm -f /tmp/SeTnewtag # empty the return file
- dialog --title "SELECTING PACKAGES FOR SERIES XAP (X APPLICATIONS)" \
- --checklist "Please select the packages you wish to install \
- from series XAP. Use the \
- UP/DOWN keys to scroll through the list, and the SPACE key to select \
- the packages you wish to install. Recommended packages have \
- already been selected for you, but you may unselect them if you wish. \
- Press ENTER when you are \
- done." 21 70 10 \
- "gs_x11" "Adds X11 driver to Ghostscript" "on" \
- "libgr" "Shared libraries with GIF, TIFF, JPEG support" "on" \
- "seyon" "A complete telecommunications package" "on" \
- "vgaset" "Helps configure your monitor for X more easily" "on" \
- "xfileman" "A filemanager" "on" \
- "gnuplot" "Gnuplot function plotting utility" "off" \
- "xv" "XV GIF/TIFF/JPEG/PostScript Image Viewer" "on" \
- "gchess" "GNU chess and xboard" "off" \
- "xfm" "xfm, an X windows filemanager" "off" \
- "ghstview" "Ghostview 1.5" "on" \
- "x3270" "x3270 3.0.1.3 - IBM host access tool" "off" \
- "xgames" "A collection of X windows games" "off" \
- "xfract" "Fractint for X" "off" \
- "xpaint" "A color painting/image editing program" "off" \
- "xspread" "An X windows spreadsheet" "off" \
- "xxgdb" "xxgdb-1.08" "off" \
- 2> /tmp/SeTpkgs
- if [ $? = 1 -o $? = 255 ]; then
- rm -f /tmp/SeTpkgs
- exit
- fi
- cat /dev/null > /tmp/SeTnewtag
- for PACKAGE in gchess xfm ghstview x3270 xgames xspread xxgdb \
- gnuplot gs_x11 libgr seyon vgaset xfileman xv \
- xfract xpaint ; do
- if fgrep \"$PACKAGE\" /tmp/SeTpkgs 1> /dev/null 2> /dev/null ; then
- echo "$PACKAGE: ADD" >> /tmp/SeTnewtag
- else
- echo "$PACKAGE: SKP" >> /tmp/SeTnewtag
- fi
- done
- rm -f /tmp/SeTpkgs
-