summaryrefslogtreecommitdiffstats
path: root/ubuntu/_base/tdebase/debian/tdebase-data-trinity.preinst
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 /ubuntu/_base/tdebase/debian/tdebase-data-trinity.preinst
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 'ubuntu/_base/tdebase/debian/tdebase-data-trinity.preinst')
-rw-r--r--ubuntu/_base/tdebase/debian/tdebase-data-trinity.preinst59
1 files changed, 0 insertions, 59 deletions
diff --git a/ubuntu/_base/tdebase/debian/tdebase-data-trinity.preinst b/ubuntu/_base/tdebase/debian/tdebase-data-trinity.preinst
deleted file mode 100644
index 9c62c3209..000000000
--- a/ubuntu/_base/tdebase/debian/tdebase-data-trinity.preinst
+++ /dev/null
@@ -1,59 +0,0 @@
-#! /bin/sh -e
-
-FILE="/etc/xdg/menus/kde-applications-merged/tde-essential.menu"
-SUBDIR="/etc/xdg/menus/kde-applications-merged"
-
-case "$1" in
-
- upgrade)
- mkdir -p /etc/xdg/menus.kde4
-# rm -rf /etc/xdg/menus.kde4
- rm -f /etc/trinity/debian/d-adventure.desktop
- rm -f /etc/trinity/debian/d-arcade.desktop
- rm -f /etc/trinity/debian/d-board.desktop
- rm -f /etc/trinity/debian/d-card.desktop
- rm -f /etc/trinity/debian/d-databases.desktop
- rm -f /etc/trinity/debian/d-debian.desktop
- rm -f /etc/trinity/debian/d-emulators.desktop
- rm -f /etc/trinity/debian/d-hamradio.desktop
- rm -f /etc/trinity/debian/d-help.desktop
- rm -f /etc/trinity/debian/d-lock.desktop
- rm -f /etc/trinity/debian/d-math.desktop
- rm -f /etc/trinity/debian/d-modules.desktop
- rm -f /etc/trinity/debian/d-puzzles.desktop
- rm -f /etc/trinity/debian/d-root-window.desktop
- rm -f /etc/trinity/debian/d-save.desktop
- rm -f /etc/trinity/debian/d-screen.desktop
- rm -f /etc/trinity/debian/d-shells.desktop
- rm -f /etc/trinity/debian/d-sports.desktop
- rm -f /etc/trinity/debian/d-strategy.desktop
- rm -f /etc/trinity/debian/d-technical.desktop
- rm -f /etc/trinity/debian/d-tetris-like.desktop
- rm -f /etc/trinity/debian/d-text.desktop
- rm -f /etc/trinity/debian/d-toys.desktop
- rm -f /etc/trinity/debian/d-viewers.desktop
- rm -f /etc/trinity/debian/d-window-managers.desktop
- rm -f /etc/trinity/debian/d-xshells.desktop
-
- if [ -L "$SUBDIR" ] || [ ! -d "$SUBDIR" ]; then exit 0; fi
- if [ -f "$FILE" ]; then rm -f "$FILE"; fi
- rmdir --ignore-fail-on-non-empty "$SUBDIR"
- ;;
-
- install)
- mkdir -p /etc/xdg/menus.kde4
- ;;
-
- abort-upgrade)
- ;;
-
- *)
- echo "preinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-
-esac
-
-#DEBHELPER#
-
-exit 0