home *** CD-ROM | disk | FTP | other *** search
/ Freelog 2 / Freelog002.iso / slakware / d1 / maketag.ez < prev    next >
Text File  |  1999-02-08  |  2KB  |  62 lines

  1. #!/bin/sh
  2. #item   ####description                                      ###on off ###
  3. TMP=/var/log/setup/tmp
  4. if [ ! -d $TMP ]; then
  5.   mkdir -p $TMP
  6. fi
  7. cat /dev/null > $TMP/SeTnewtag
  8. dialog --title "SELECTING PACKAGES FROM SERIES D (PROGRAM DEVELOPMENT)" \
  9.        --checklist "Please select the packages you wish to install \
  10. from series D. Use the \
  11. UP/DOWN keys to scroll through the list, and the SPACE key to select \
  12. the packages you wish to install. Recommended packages have \
  13. already been selected for you, but you may unselect them if you wish. \
  14. Press ENTER when you are \
  15. done." 22 70 11 \
  16. "binutils" "GNU C compiler utilities" "on" \
  17. "bison" "GNU bison parser generator 1.25" "on" \
  18. "byacc" "Berkeley Yacc" "on" \
  19. "egcs" "egcs-1.0.3 C/C++ compiler" "on" \
  20. "egcsobjc" "egcs Objective-C compiler (requires egcs)" "off" \
  21. "egcs_g77" "egcs Fortran-77 compiler (requires egcs)" "off" \
  22. "flex" "Fast lexical analyzer generator 2.5.4" "on" \
  23. "gcc" "GNU gcc-2.7.2.3 C compiler" "on" \
  24. "gdb" "The GNU debugger" "on" \
  25. "gcl" "GNU Common LISP" "off" \
  26. "gmake" "GNU make" "on" \
  27. "libc" "Libraries for developing ELF binaries" "on" \
  28. "libcinfo" "Info files for the C compiler" "off" \
  29. "linuxinc" "Linux kernel include files" "on" \
  30. "m4" "GNU m4 1.4" "on" \
  31. "ncurses" "A curses-compatible library" "on" \
  32. "p2c" "A Pascal to C translator 1.19" "off" \
  33. "perl" "Larry Wall's systems language" "on" \
  34. "pmake" "BSD 4.4 make" "on" \
  35. "python" "An interpreted object-oriented language" "off" \
  36. "rcs" "GNU revision control system" "off" \
  37. "svgalib" "Svgalib Super-VGA Graphics Library" "on" \
  38. "strace" "Traces program execution" "on" \
  39. "terminfo" "Complete /usr/lib/terminfo database" "off" \
  40. 2> $TMP/SeTpkgs
  41. if [ $? = 1 -o $? = 255 ]; then
  42.  rm -f $TMP/SeTpkgs
  43.  > $TMP/SeTnewtag
  44.  for pkg in binutils bison byacc egcs egcs_g77 egcsobjc flex gcc \
  45.   gcl gdb gmake libc libcinfo linuxinc m4 ncurses p2c perl pmake python \
  46.   rcs strace svgalib terminfo ; do
  47.   echo "$pkg: SKP" >> $TMP/SeTnewtag
  48.  done
  49.  exit
  50. fi
  51. cat /dev/null > $TMP/SeTnewtag
  52. for PACKAGE in binutils bison byacc egcs egcs_g77 egcsobjc flex gcc \
  53.  gcl gdb gmake libc libcinfo linuxinc m4 ncurses p2c perl pmake python \
  54.  rcs strace svgalib terminfo ; do
  55.  if fgrep \"$PACKAGE\" $TMP/SeTpkgs 1> /dev/null 2> /dev/null ; then
  56.   echo "$PACKAGE: ADD" >> $TMP/SeTnewtag
  57.  else
  58.   echo "$PACKAGE: SKP" >> $TMP/SeTnewtag
  59.  fi
  60. done
  61. rm -f $TMP/SeTpkgs
  62.