From 0229d96159745b3aa42f479da9364749ebb88736 Mon Sep 17 00:00:00 2001 From: LukenShiro Date: Tue, 11 May 2010 22:54:45 +0200 Subject: network/efax-gtk: Added to 12.1 repository --- network/efax-gtk/doinst.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 network/efax-gtk/doinst.sh (limited to 'network/efax-gtk/doinst.sh') diff --git a/network/efax-gtk/doinst.sh b/network/efax-gtk/doinst.sh new file mode 100644 index 000000000000..6b799e87d652 --- /dev/null +++ b/network/efax-gtk/doinst.sh @@ -0,0 +1,24 @@ +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/efax-gtkrc.new + +# Update desktop menu and mime database +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -x /usr/bin/update-mime-database ]; then + /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 +fi + -- cgit v1.2.3