summaryrefslogtreecommitdiffstats
path: root/dilos/tdebase/debian/kfind-trinity.postinst
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-11-15 21:15:11 +0800
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-11-15 21:15:11 +0800
commit98095beb82f000d888dfa15bada80376c48df837 (patch)
treedadbf7de3432fa5cbf95c42733d19d5cf0508034 /dilos/tdebase/debian/kfind-trinity.postinst
parentf3d5de18f2bdf89d5923d560420ae23cac051cb8 (diff)
downloadtde-packaging-98095beb82f000d888dfa15bada80376c48df837.tar.gz
tde-packaging-98095beb82f000d888dfa15bada80376c48df837.zip
DEB: adjusted to new 'core' folder for main packages.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'dilos/tdebase/debian/kfind-trinity.postinst')
-rw-r--r--dilos/tdebase/debian/kfind-trinity.postinst45
1 files changed, 0 insertions, 45 deletions
diff --git a/dilos/tdebase/debian/kfind-trinity.postinst b/dilos/tdebase/debian/kfind-trinity.postinst
deleted file mode 100644
index 48d0ee2f8..000000000
--- a/dilos/tdebase/debian/kfind-trinity.postinst
+++ /dev/null
@@ -1,45 +0,0 @@
-#! /bin/sh -e
-
-if [ "${BASEDIR:=/}" = "/" ]; then
- BASEDIR=""
-fi
-
-package_name=kfind-trinity
-
-divert_remove()
- {
- divert=`dpkg-divert --listpackage "$1"`
- if [ -n "$divert" ] && [ "$divert" = "LOCAL" ]; then
- dpkg-divert --remove --local --rename "$1"
- fi
- if [ -n "$divert" ] && [ "$divert" = "$package_name" ]; then
- dpkg-divert --remove --package $package_name --rename "$1"
- fi
- }
-
-case "$1" in
-
- configure)
- divert_remove /usr/share/icons/hicolor/16x16/apps/kfind.png
- divert_remove /usr/share/icons/hicolor/22x22/apps/kfind.png
- divert_remove /usr/share/icons/hicolor/32x32/apps/kfind.png
- divert_remove /usr/share/icons/hicolor/48x48/apps/kfind.png
- divert_remove /usr/share/icons/hicolor/64x64/apps/kfind.png
- ;;
-
- install)
- ;;
-
- abort-upgrade)
- ;;
-
- *)
- echo "preinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-
-esac
-
-#DEBHELPER#
-
-exit 0