diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-28 20:25:19 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-29 17:17:40 -0500 |
commit | 3032ce580f99e781f534ffa6cad45bd039950b58 (patch) | |
tree | 0afe14c4e741a6007bd36bd21a4530823da05b7a /desktop/icewm | |
parent | a9df89a5db47bc7e6bda28b205a6fb1155bfa4cb (diff) | |
download | slackbuilds-3032ce580f99e781f534ffa6cad45bd039950b58.tar.gz |
desktop/icewm: Fixed (Don't clobber config files)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'desktop/icewm')
-rw-r--r-- | desktop/icewm/doinst.sh | 15 | ||||
-rw-r--r-- | desktop/icewm/icewm.SlackBuild | 6 |
2 files changed, 18 insertions, 3 deletions
diff --git a/desktop/icewm/doinst.sh b/desktop/icewm/doinst.sh index a9ca196938..ca452f155f 100644 --- a/desktop/icewm/doinst.sh +++ b/desktop/icewm/doinst.sh @@ -1,3 +1,18 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/X11/xinit/xinitrc.icewm.new + if [ -x /usr/bin/update-desktop-database ]; then /usr/bin/update-desktop-database -q usr/share/applications 2>/dev/null fi diff --git a/desktop/icewm/icewm.SlackBuild b/desktop/icewm/icewm.SlackBuild index cee6037256..f478f59e40 100644 --- a/desktop/icewm/icewm.SlackBuild +++ b/desktop/icewm/icewm.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=icewm VERSION=${VERSION:-1.3.7} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -105,8 +105,8 @@ gzip -9c doc/icewm.1.man > $PKG/usr/man/man1/icewm.1.gz # Add xinitrc for xwmconfig(1) mkdir -p $PKG/etc/X11/xinit -cat $CWD/xinitrc.icewm > $PKG/etc/X11/xinit/xinitrc.icewm -chmod 0755 $PKG/etc/X11/xinit/xinitrc.icewm +cat $CWD/xinitrc.icewm > $PKG/etc/X11/xinit/xinitrc.icewm.new +chmod 0755 $PKG/etc/X11/xinit/xinitrc.icewm.new # Add icewm as a session choice for !kdm desktop managers mkdir -p $PKG/usr/share/xsessions |