mirror of
git://slackware.nl/current.git
synced 2025-01-15 15:41:54 +01:00
76fc4757ac
Mon Nov 4 17:08:47 UTC 2013 Slackware 14.1 x86_64 stable is released! It's been another interesting release cycle here at Slackware bringing new features like support for UEFI machines, updated compilers and development tools, the switch from MySQL to MariaDB, and many more improvements throughout the system. Thanks to the team, the upstream developers, the dedicated Slackware community, and everyone else who pitched in to help make this release a reality. 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. Have fun! :-)
80 lines
3.9 KiB
Bash
80 lines
3.9 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 XAP (X APPLICATIONS)" \
|
|
--checklist "Please confirm the packages you wish to install \
|
|
from series XAP. 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." \
|
|
20 70 10 \
|
|
"MPlayer" "Media player" "on" \
|
|
"audacious" "A media player of the XMMS lineage" "on" \
|
|
"audacious-plugins" "Plugins for Audacious to support media types" "on" \
|
|
"blackbox" "Minimalist and fast window manager" "on" \
|
|
"blueman" "Graphical Bluetooth manager" "on" \
|
|
"ddd" "X frontend for the GNU gdb debugger" "on" \
|
|
"electricsheep" "A distributed screensaver program" "on" \
|
|
"fluxbox" "Window manager based on blackbox" "on" \
|
|
"fvwm" "FVWM window manager" "on" \
|
|
"geeqie" "A lightweight picture viewing program" "on" \
|
|
"gftp" "A multithreaded FTP client" "on" \
|
|
"gimp" "GNU Image Manipulation Program" "on" \
|
|
"gkrellm" "Graphical system monitor utility" "on" \
|
|
"gnuchess" "Chess playing programs" "on" \
|
|
"gnuplot" "Gnuplot function plotting utility" "on" \
|
|
"gucharmap" "Unicode character map" "on" \
|
|
"gv" ".ps/.pdf viewer based on Ghostview" "on" \
|
|
"imagemagick" "ImageMagick image utilities" "on" \
|
|
"mozilla-firefox" "Mozilla Firefox web browser" "on" \
|
|
"mozilla-thunderbird" "Mozilla Thunderbird email client" "on" \
|
|
"network-manager-applet" "NetworkManager Applet" "on" \
|
|
"pan" "Pan newsreader (good for Reading News)" "on" \
|
|
"pidgin" "GTK+ based messaging program" "on" \
|
|
"rdesktop" "Remote Desktop Protocol client" "on" \
|
|
"rxvt" "Lightweight xterm alternative" "on" \
|
|
"sane" "Scanner Access Now Easy" "on" \
|
|
"seamonkey" "SeaMonkey Application Suite" "on" \
|
|
"seyon" "A complete telecommunications package" "on" \
|
|
"vim-gvim" "X/GTK+ GUI add-on for the VIM editor" "on" \
|
|
"windowmaker" "GNU window manager for X" "on" \
|
|
"x11-ssh-askpass" "X11-based SSH passphrase dialog" "on" \
|
|
"x3270" "x3270 - IBM host access tool" "on" \
|
|
"xaos" "Fast real-time fractal zoomer/viewer" "on" \
|
|
"xchat" "IRC client for X" "on" \
|
|
"xfractint" "Fractint for X" "on" \
|
|
"xgames" "A collection of games for X" "on" \
|
|
"xine-lib" "Multimedia player libraries" "on" \
|
|
"xine-ui" "Multimedia player (user interface)" "on" \
|
|
"xlockmore" "A screen saver and locker for X" "on" \
|
|
"xmms" "An audio player similar to WinAmp" "on" \
|
|
"xpaint" "A color painting/image editing program" "on" \
|
|
"xpdf" "Portable Document Format (PDF) viewer" "on" \
|
|
"xsane" "X interface to Scanner Access Now Easy" "on" \
|
|
"xscreensaver" "A screen saver and locker for X" "on" \
|
|
"xv" "XV GIF/TIFF/JPEG/PostScript Image Viewer" "on" \
|
|
2> $TMP/SeTpkgs
|
|
if [ $? = 1 -o $? = 255 ]; then
|
|
rm -f $TMP/SeTpkgs
|
|
> $TMP/SeTnewtag
|
|
for pkg in \
|
|
MPlayer audacious audacious-plugins blackbox blueman ddd electricsheep fluxbox fvwm geeqie gftp gimp gkrellm gnuchess gnuplot gucharmap gv imagemagick mozilla-firefox mozilla-thunderbird network-manager-applet pan pidgin rdesktop rxvt sane seamonkey seyon vim-gvim windowmaker x11-ssh-askpass x3270 xaos xchat xfractint xgames xine-lib xine-ui xlockmore xmms xpaint xpdf xsane xscreensaver xv \
|
|
; do
|
|
echo "$pkg: SKP" >> $TMP/SeTnewtag
|
|
done
|
|
exit
|
|
fi
|
|
cat /dev/null > $TMP/SeTnewtag
|
|
for PACKAGE in \
|
|
MPlayer audacious audacious-plugins blackbox blueman ddd electricsheep fluxbox fvwm geeqie gftp gimp gkrellm gnuchess gnuplot gucharmap gv imagemagick mozilla-firefox mozilla-thunderbird network-manager-applet pan pidgin rdesktop rxvt sane seamonkey seyon vim-gvim windowmaker x11-ssh-askpass x3270 xaos xchat xfractint xgames xine-lib xine-ui xlockmore xmms xpaint xpdf xsane xscreensaver xv \
|
|
; do
|
|
if grep "\(^\| \)$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
|