mirror of
git://slackware.nl/current.git
synced 2024-12-30 10:24:23 +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! :-)
35 lines
1.3 KiB
Text
35 lines
1.3 KiB
Text
mkdir -p $PKG/etc/X11
|
|
mv $PKG/usr/lib/X11/xdm $PKG/etc/X11
|
|
ln -sf ../../../etc/X11/xdm $PKG/usr/lib/X11/xdm
|
|
|
|
#( cd $PKG/usr/lib/X11
|
|
# mv xdm $PKG/etc/X11
|
|
# ln -sf ../../../etc/X11/xdm .
|
|
#)
|
|
|
|
mkdir -p $PKG/usr/doc/xdm-$MODULAR_PACKAGE_VERSION
|
|
mv $PKG/etc/X11/xdm/Xsession $PKG/usr/doc/xdm-$MODULAR_PACKAGE_VERSION/Xsession.orig
|
|
mv $PKG/etc/X11/xdm/Xsetup_0 $PKG/usr/doc/xdm-$MODULAR_PACKAGE_VERSION/Xsetup_0.orig
|
|
|
|
cp -a $CWD/post-install/xdm/Xsession $PKG/etc/X11/xdm/Xsession
|
|
cp -a $CWD/post-install/xdm/Xsetup_0 $PKG/etc/X11/xdm/Xsetup_0
|
|
|
|
chown root:root $PKG/etc/X11/xdm/Xsession $PKG/etc/X11/xdm/Xsetup_0
|
|
chmod 0755 $PKG/etc/X11/xdm/Xsession $PKG/etc/X11/xdm/Xsetup_0
|
|
|
|
for conffile in \
|
|
Xaccess Xreset Xresources Xservers Xsession Xsetup_0 Xstartup Xwilling \
|
|
GiveConsole TakeConsole xdm-config ../app-defaults/Chooser ;
|
|
do
|
|
# Use awk to strip leading blank lines... weird bug that cropped up in the
|
|
# pre Slackware-14.1 development cycle.
|
|
awk "/[^ ]/ { copy=1 }; copy { print }" $PKG/etc/X11/xdm/${conffile} > $PKG/etc/X11/xdm/${conffile}.new
|
|
touch -r $PKG/etc/X11/xdm/${conffile} $PKG/etc/X11/xdm/${conffile}.new
|
|
rm -f $PKG/etc/X11/xdm/${conffile}
|
|
#mv $PKG/etc/X11/xdm/${conffile} $PKG/etc/X11/xdm/${conffile}.new ;
|
|
done
|
|
|
|
mkdir -p $PKG/var/lib/xdm
|
|
chown root:root $PKG/var/lib/xdm
|
|
chmod 755 $PKG/var/lib/xdm
|
|
|