#!/bin/sh #item ####description ###on off ### TMP=/var/log/setup/tmp if [ ! -d $TMP ]; then mkdir -p $TMP fi cat /dev/null > $TMP/SeTnewtag dialog --backtitle "Slackware installer: package selection" --title "SELECTING PACKAGES FROM SERIES D (PROGRAM DEVELOPMENT)" \ --checklist "Please select the packages you wish to install from this series. \ 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." 22 70 11 \ "autoconf" "GNU source autoconfig system" "on" \ "automake" "GNU makefile generator" "on" \ "bin86" "8086 assembler/loader" "on" \ "binutils" "GNU C compiler utilities" "on" \ "bison" "GNU bison parser generator" "on" \ "byacc" "Berkeley Yacc" "on" \ "ccache" "Fast Compiler Cache" "on" \ "clisp" "CLISP Common Lisp" "on" \ "cscope" "Source code browser" "on" \ "cvs" "Concurrent Versions System" "on" \ "distcc" "gcc frontend to use networked machines" "on" \ "doxygen" "Source code documentation generator" "on" \ "flex" "Fast lexical analyzer generator" "on" \ "gcc" "GNU gcc-3.4.6 C compiler" "on" \ "gcc-g++" "" "on" \ "gcc-g77" "GNU Fortran-77 compiler for gcc-3.4.6" "on" \ "gcc-java" "GNU Java compiler for gcc-3.4.6" "on" \ "gcc-objc" "GNU Objective-C compiler for gcc-3.4.6" "on" \ "gdb" "The GNU debugger" "on" \ "gettext-tools" "GNU internationalization devel package" "on" \ "git" "A directory content manager" "on" \ "guile" "GNU extension language library" "on" \ "indent" "Change the indenting style of a C program" "on" \ "kernel-headers" "Linux kernel include files" "on" \ "libtool" "GNU libtool library support script" "on" \ "m4" "GNU m4 macro processor" "on" \ "make" "GNU make" "on" \ "mercurial" "Distributed source management system" "on" \ "nasm" "NASM assembler" "on" \ "oprofile" "System profiling tool" "on" \ "p2c" "A Pascal to C translator" "on" \ "perl" "Larry Wall's systems language" "on" \ "pkgconfig" "A tool for managing library information" "on" \ "pmake" "Parallel make from BSD" "on" \ "python" "An interpreted object-oriented language" "on" \ "rcs" "GNU revision control system" "on" \ "ruby" "Interpreted object-oriented script language" "on" \ "strace" "Traces program execution" "on" \ "subversion" "Subversion version control system" "on" \ 2> $TMP/SeTpkgs # If the user pressed cancel, or something bad happened then we # mark all packages as skipped and bail out. if [ $? = 1 -o $? = 255 ]; then rm -f $TMP/SeTpkgs # rm -f $TMP/SeTnewtag cat /dev/null > $TMP/SeTnewtag for PKG in autoconf automake bin86 binutils bison byacc ccache clisp cscope cvs distcc doxygen flex gcc gcc-g++ gcc-g77 gcc-java gcc-objc gdb gettext-tools git guile indent kernel-headers libtool m4 make mercurial nasm oprofile p2c perl pkgconfig pmake python rcs ruby strace subversion ; do echo "$PKG: SKP" >> $TMP/SeTnewtag done exit fi cat /dev/null > $TMP/SeTnewtag for PKG in autoconf automake bin86 binutils bison byacc ccache clisp cscope cvs distcc doxygen flex gcc gcc-g++ gcc-g77 gcc-java gcc-objc gdb gettext-tools git guile indent kernel-headers libtool m4 make mercurial nasm oprofile p2c perl pkgconfig pmake python rcs ruby strace subversion ; do if grep \"$PKG\" $TMP/SeTpkgs 1> /dev/null 2> /dev/null ; then echo "$PKG: ADD" >> $TMP/SeTnewtag else echo "$PKG: SKP" >> $TMP/SeTnewtag fi done rm -f $TMP/SeTpkgs