home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / LINK2CD / D1 / MAKETAG < prev    next >
Encoding:
Text File  |  1995-04-20  |  2.3 KB  |  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 D (PROGRAM DEVELOPMENT)" \
  5.        --checklist "Please select the packages you wish to install \
  6. from series D. 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. "gcc263" "GNU C/C++ compiler+support files 2.6.3" "on" \
  13. "tools" "tools for compiling shared libraries" "off" \
  14. "libgxx" "GNU C++ library" "on" \
  15. "byacc" "Berkeley Yacc" "off" \
  16. "flex" "Fast lexical analyzer generator 2.4.7" "on" \
  17. "include" "4.6.27 include files for C programs" "on" \
  18. "man2" "Man pages for Linux system calls" "off" \
  19. "man3" "Man pages for C library functions" "off" \
  20. "objc263" "GNU Objective-C compiler 2.6.3" "off" \
  21. "p2c" "A Pascal to C translator 1.19" "off" \
  22. "gmake" "GNU make" "on" \
  23. "pmake" "BSD 4.4 make" "on" \
  24. "extralib" "Extra profile/debug libs 4.6.27" "off" \
  25. "gdb" "The GNU debugger 4.13" "off" \
  26. "bison" "GNU bison parser generator 1.22" "on" \
  27. "lx1194_1" "Linux kernel source 1.1.94, part 1" "on" \
  28. "lx1194_2" "Linux kernel source 1.1.94, part 2 (include files)" "on" \
  29. "lx1194_3" "Linux kernel source 1.1.94, part 3" "on" \
  30. "clisp" "The CLISP Common Lisp interpreter" "off" \
  31. "f2c" "A Fortran-77 to C translator" "off" \
  32. "libc" "Development libs 4.6.27 for the C compiler" "on" \
  33. "ncurses" "A curses-compatible library" "off" \
  34. "svgalib" "Svgalib Super-VGA Graphics Library" "off" \
  35. "strace" "Traces program execution" "off" \
  36. "perl" "Larry Wall's interpreted systems language" "off" \
  37. "rcs" "GNU revision control system" "off" \
  38. "binutils" "GNU C compiler utilities" "on" \
  39. "m4" "GNU m4 1.4" "on" \
  40. 2> /tmp/SeTpkgs
  41. if [ $? = 1 -o $? = 255 ]; then
  42.  rm -f /tmp/SeTpkgs
  43.  exit
  44. fi
  45. cat /dev/null > /tmp/SeTnewtag
  46. for PACKAGE in gcc263 libgxx include man2 objc263 p2c pmake flex byacc \
  47. extralib gdb bison clisp f2c libc ncurses gmake strace svgalib \
  48. lx1194_1 lx1194_2 lx1194_3 \
  49. perl rcs binutils m4 man3 tools ; 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.