mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
9664bee729
Wed Sep 26 01:10:42 UTC 2012 Slackware 14.0 x86_64 stable is released! We're perfectionists here at Slackware, so this release has been a long time a-brewing. But we think you'll agree that it was worth the wait. Slackware 14.0 combines modern components, ease of use, and flexible configuration... our "KISS" philosophy demands it. The ISOs are off to be replicated, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. Please consider supporting the Slackware project by picking up a copy from store.slackware.com. We're taking pre-orders now, and offer a discount if you sign up for a subscription. Thanks to everyone who helped make this happen. The Slackware team, the upstream developers, and (of course) the awesome Slackware user community. Have fun! :-)
82 lines
3.7 KiB
Bash
82 lines
3.7 KiB
Bash
#!/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 --title "SELECTING PACKAGES FROM SERIES D (PROGRAM DEVELOPMENT)" \
|
|
--checklist "Please confirm the packages you wish to install \
|
|
from series D. Use the UP/DOWN keys to scroll through the list, and \
|
|
the SPACE key to deselect any items you don't want to install. \
|
|
Press ENTER when you are \
|
|
done." 22 72 12 \
|
|
"autoconf" "GNU source autoconfig system" "on" \
|
|
"automake" "GNU makefile generator" "on" \
|
|
"binutils" "GNU C compiler utilities" "on" \
|
|
"bison" "GNU bison parser generator" "on" \
|
|
"ccache" "Fast Compiler Cache" "on" \
|
|
"clisp" "CLISP Common Lisp" "on" \
|
|
"cmake" "Cross platform make utility" "on" \
|
|
"cscope" "Source code browser" "on" \
|
|
"cvs" "Concurrent Versions System" "on" \
|
|
"dev86" "8086 assembler/loader" "on" \
|
|
"distcc" "gcc frontend to use networked machines" "on" \
|
|
"doxygen" "Source code documentation generator" "on" \
|
|
"flex" "Fast lexical analyzer generator" "on" \
|
|
"gcc" "GNU gcc-4.7.1 C compiler" "on" \
|
|
"gcc-g++" "GNU C++ compiler for gcc" "on" \
|
|
"gcc-gfortran" "GNU Fortran 95/2003/2008 compiler for gcc" "on" \
|
|
"gcc-gnat" "GNU Ada83/95/2005/2012 compiler for gcc" "on" \
|
|
"gcc-go" "GNU Go compiler for gcc" "on" \
|
|
"gcc-java" "GNU Java compiler for gcc" "on" \
|
|
"gcc-objc" "GNU Objective-C compiler for gcc" "on" \
|
|
"gdb" "The GNU debugger" "on" \
|
|
"gettext-tools" "GNU internationalization devel package" "on" \
|
|
"git" "A directory content manager" "on" \
|
|
"gperf" "Generates hash functions" "on" \
|
|
"guile" "GNU extension language library" "on" \
|
|
"indent" "Change the indenting style of a C program" "on" \
|
|
"intltool" "Internationalization utilities" "on" \
|
|
"kernel-headers" "Linux kernel include files" "on" \
|
|
"libtool" "GNU libtool library support script" "on" \
|
|
"llvm" "LLVM compiler toolkit" "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" \
|
|
"pkg-config" "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" \
|
|
"slacktrack" "Tracks a source installation to make a package" "on" \
|
|
"strace" "Traces program execution" "on" \
|
|
"subversion" "Subversion version control system" "on" \
|
|
"swig" "Simplified Wrapper and Interface Generator" "on" \
|
|
"yasm" "The Yasm Modular Assembler" "on" \
|
|
2> $TMP/SeTpkgs
|
|
if [ $? = 1 -o $? = 255 ]; then
|
|
rm -f $TMP/SeTpkgs
|
|
> $TMP/SeTnewtag
|
|
for pkg in \
|
|
autoconf automake binutils bison ccache clisp cmake cscope cvs dev86 distcc doxygen flex gcc gcc-g++ gcc-gfortran gcc-gnat gcc-go gcc-java gcc-objc gdb gettext-tools git gperf guile indent intltool kernel-headers libtool llvm m4 make mercurial nasm oprofile p2c perl pkg-config pmake python rcs ruby slacktrack strace subversion swig yasm \
|
|
; do
|
|
echo "$pkg: SKP" >> $TMP/SeTnewtag
|
|
done
|
|
exit
|
|
fi
|
|
cat /dev/null > $TMP/SeTnewtag
|
|
for PACKAGE in \
|
|
autoconf automake binutils bison ccache clisp cmake cscope cvs dev86 distcc doxygen flex gcc gcc-g++ gcc-gfortran gcc-gnat gcc-go gcc-java gcc-objc gdb gettext-tools git gperf guile indent intltool kernel-headers libtool llvm m4 make mercurial nasm oprofile p2c perl pkg-config pmake python rcs ruby slacktrack strace subversion swig yasm \
|
|
; 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
|