summaryrefslogtreecommitdiffstats
path: root/ubuntu/precise/applications
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-12-03 19:58:52 +0100
committerSlávek Banko <slavek.banko@axis.cz>2013-12-03 19:58:52 +0100
commit730df33c514f3f07144abfc979f08a7127ed0de9 (patch)
tree867babe376d9a6db21edf2be3ee8367dac68c22a /ubuntu/precise/applications
parentaa94cd3c574a442956f905b05988839e1d964575 (diff)
downloadtde-packaging-730df33c514f3f07144abfc979f08a7127ed0de9.tar.gz
tde-packaging-730df33c514f3f07144abfc979f08a7127ed0de9.zip
Fix removing diverts from renamed packages on Debian and Ubuntu
Diffstat (limited to 'ubuntu/precise/applications')
-rw-r--r--ubuntu/precise/applications/tdeio-umountwrapper/debian/preinst15
-rw-r--r--ubuntu/precise/applications/tdesudo/debian/preinst16
2 files changed, 28 insertions, 3 deletions
diff --git a/ubuntu/precise/applications/tdeio-umountwrapper/debian/preinst b/ubuntu/precise/applications/tdeio-umountwrapper/debian/preinst
index a4d27d2cd..a258f8481 100644
--- a/ubuntu/precise/applications/tdeio-umountwrapper/debian/preinst
+++ b/ubuntu/precise/applications/tdeio-umountwrapper/debian/preinst
@@ -30,9 +30,18 @@ mkdir -p /opt/trinity/share/apps/d3lphin/servicemenus/
case "$1" in
install)
# remove old diversions if present
- dpkg-divert --package kio-umountwrapper-trinity --rename --remove /opt/trinity/share/apps/konqueror/servicemenus/media_safelyremove.desktop || true
- dpkg-divert --package kio-umountwrapper-trinity --rename --remove /opt/trinity/share/apps/dolphin/servicemenus/media_safelyremove.desktop || true
- dpkg-divert --package kio-umountwrapper-trinity --rename --remove /opt/trinity/share/apps/d3lphin/servicemenus/media_safelyremove.desktop || true
+ divert=`dpkg-divert --listpackage "/opt/trinity/share/apps/konqueror/servicemenus/media_safelyremove.desktop"`
+ if [ -n "$divert" ] && [ "$divert" = "kio-umountwrapper-trinity" ]; then
+ dpkg-divert --package kio-umountwrapper-trinity --rename --remove /opt/trinity/share/apps/konqueror/servicemenus/media_safelyremove.desktop
+ fi
+ divert=`dpkg-divert --listpackage "/opt/trinity/share/apps/dolphin/servicemenus/media_safelyremove.desktop"`
+ if [ -n "$divert" ] && [ "$divert" = "kio-umountwrapper-trinity" ]; then
+ dpkg-divert --package kio-umountwrapper-trinity --rename --remove /opt/trinity/share/apps/dolphin/servicemenus/media_safelyremove.desktop
+ fi
+ divert=`dpkg-divert --listpackage "/opt/trinity/share/apps/d3lphin/servicemenus/media_safelyremove.desktop"`
+ if [ -n "$divert" ] && [ "$divert" = "kio-umountwrapper-trinity" ]; then
+ dpkg-divert --package kio-umountwrapper-trinity --rename --remove /opt/trinity/share/apps/d3lphin/servicemenus/media_safelyremove.desktop
+ fi
# add new diversions
dpkg-divert --package $package_name \
diff --git a/ubuntu/precise/applications/tdesudo/debian/preinst b/ubuntu/precise/applications/tdesudo/debian/preinst
index 770dfaacb..9633ba544 100644
--- a/ubuntu/precise/applications/tdesudo/debian/preinst
+++ b/ubuntu/precise/applications/tdesudo/debian/preinst
@@ -11,15 +11,30 @@ fi
case "$1" in
install)
+ # remove old diversions if present
+ divert=`dpkg-divert --listpackage "/usr/trinity/bin/kdesu"`
+ if [ -n "$divert" ] && [ "$divert" = "kdesudo-trinity" ]; then
+ dpkg-divert --remove --package kdesudo-trinity --rename /usr/trinity/bin/kdesu
+ fi
+ divert=`dpkg-divert --listpackage "/opt/trinity/bin/kdesu"`
+ if [ -n "$divert" ] && [ "$divert" = "kdesudo-trinity" ]; then
+ dpkg-divert --remove --package kdesudo-trinity --rename /opt/trinity/bin/kdesu
+ fi
+
+ # add new diversion
dpkg-divert --package $package_name \
--divert /opt/trinity/bin/tdesu.distrib \
--rename /opt/trinity/bin/tdesu
;;
+
upgrade)
+ # remove old diversion if present
divert=`dpkg-divert --listpackage "/usr/trinity/bin/tdesu"`
if [ -n "$divert" ] && [ "$divert" = "$package_name" ]; then
dpkg-divert --remove --package $package_name --rename "/usr/trinity/bin/tdesu"
fi
+
+ # add new diversion
divert=`dpkg-divert --listpackage "/opt/trinity/bin/tdesu"`
if [ -z "$divert" ]; then
dpkg-divert --package $package_name \
@@ -27,6 +42,7 @@ case "$1" in
--rename /opt/trinity/bin/tdesu
fi
;;
+
abort-upgrade)
;;
*) echo "$0: didn't understand being called with \`$1'" 1>&2