summaryrefslogtreecommitdiffstats
path: root/debian/comerr-dev.postrm
diff options
context:
space:
mode:
Diffstat (limited to 'debian/comerr-dev.postrm')
-rw-r--r--debian/comerr-dev.postrm36
1 files changed, 36 insertions, 0 deletions
diff --git a/debian/comerr-dev.postrm b/debian/comerr-dev.postrm
new file mode 100644
index 0000000..8f9e679
--- /dev/null
+++ b/debian/comerr-dev.postrm
@@ -0,0 +1,36 @@
+#!/bin/sh
+
+# Abort on error.
+set -e
+
+symlink_match()
+{
+ local SYMLINK="$1"
+ local SYMLINK_TARGET="$2"
+
+ [ "$(readlink "$SYMLINK")" = "$SYMLINK_TARGET" ] || \
+ [ "$(readlink -f "$SYMLINK")" = "$SYMLINK_TARGET" ]
+}
+
+SYMLINK=/usr/share/doc/comerr-dev
+SYMLINK_TARGET=libcomerr2
+SYMLINK_TARGET2=libcom-err2
+
+if [ "$1" = "purge" ] && [ -h "${SYMLINK}.dpkg-backup" ]
+then
+ rm -f "${SYMLINK}.dpkg-backup"
+fi
+if [ "$1" = "abort-install" -o "$1" = "abort-upgrade" ] &&
+ [ -n "$2" ] && [ ! -e "$SYMLINK" ] && [ -h "${SYMLINK}.dpkg-backup" ]
+then
+ if symlink_match "${SYMLINK}.dpkg-backup" "$SYMLINK_TARGET" ||
+ symlink_match "${SYMLINK}.dpkg-backup" "$SYMLINK_TARGET2"
+ then
+ echo "Restoring backup of $SYMLINK ..."
+ mv "${SYMLINK}.dpkg-backup" "$SYMLINK"
+ fi
+fi
+
+#DEBHELPER#
+
+exit 0