deleting obsolete files
authormwasilew <miloszw@gmail.com>
Tue, 1 May 2007 17:36:20 +0000 (17:36 +0000)
committermwasilew <miloszw@gmail.com>
Tue, 1 May 2007 17:36:20 +0000 (17:36 +0000)
git-svn-id: file:///svnroot/mdictionary/trunk@123 5bde0345-f819-0410-ac75-e5045f9217cc

debian/postinst [deleted file]
debian/postrm [deleted file]
debian/preinst [deleted file]
debian/prerm [deleted file]

diff --git a/debian/postinst b/debian/postinst
deleted file mode 100755 (executable)
index b7966e7..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-
-echo -e "Postinstalling actions..." 
-
-if [ "$1" != "upgrade" ]
-then
-# End automatically added section
-su $USER -c 'gconftool-2 --type string --set /apps/maemo/WhiteStork/Dictionaries/elements/name "Elements Database"'
-su $USER -c 'gconftool-2 --type string --set /apps/maemo/WhiteStork/Dictionaries/elements/path "/usr/share/WhiteStork/dictionaries/elements"'
-su $USER -c 'gconftool-2 --type bool --set /apps/maemo/WhiteStork/Dictionaries/elements/active true'
-su $USER -c 'gconftool-2 --type bool --set /apps/maemo/WhiteStork/Dictionaries/elements/optimized true'
-su $USER -c 'gconftool-2 --type string --set /apps/maemo/WhiteStork/Dictionaries/us-en/name "American - English Dictionary"'
-su $USER -c 'gconftool-2 --type string --set /apps/maemo/WhiteStork/Dictionaries/us-en/path "/usr/share/WhiteStork/dictionaries/us-en"'
-su $USER -c 'gconftool-2 --type bool --set /apps/maemo/WhiteStork/Dictionaries/us-en/active true'
-su $USER -c 'gconftool-2 --type bool --set /apps/maemo/WhiteStork/Dictionaries/us-en/optimized false'
-
-su $USER -c 'gconftool-2 --type string --set /apps/maemo/WhiteStork/Engines/bookmarks/path "/usr/lib/WhiteStork/ws_bookmark.so"'
-su $USER -c 'gconftool-2 --type string --set /apps/maemo/WhiteStork/Dictionaries/bookmarks/name "Bookmarks"'
-su $USER -c 'gconftool-2 --type string --set /apps/maemo/WhiteStork/Dictionaries/bookmarks/path "/usr/share/WhiteStork/dictionaries/bookmarks"'
-su $USER -c 'gconftool-2 --type bool --set /apps/maemo/WhiteStork/Dictionaries/bookmarks/active false'
-su $USER -c 'gconftool-2 --type bool --set /apps/maemo/WhiteStork/Dictionaries/bookmarks/optimized true'
-chmod -R 0777 /usr/share/WhiteStork/dictionaries
-
-su $USER -c 'gconftool-2 --type string --set /apps/maemo/WhiteStork/Engines/xdxf/path "/usr/lib/WhiteStork/engine_xdxf.so"'
-su $USER -c 'gconftool-2 --type string --set /apps/maemo/WhiteStork/Engines/stardict/path "/usr/lib/WhiteStork/engine_stardict.so"'
-
-maemo-select-menu-location whitestork.desktop
-
-fi
\ No newline at end of file
diff --git a/debian/postrm b/debian/postrm
deleted file mode 100755 (executable)
index 75a3c55..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-
-echo -e "Postremoving actions..."
-su $USER -c 'rm -f /etc/others-menu/extra_applications/0112_whitestorkgui.desktop' ;
\ No newline at end of file
diff --git a/debian/preinst b/debian/preinst
deleted file mode 100755 (executable)
index 302910b..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-echo -e "Preinstallation actions..."
diff --git a/debian/prerm b/debian/prerm
deleted file mode 100755 (executable)
index 6279e7f..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-echo -e "Preremoving actions..."
-
-#su $USER -c 'rm -rf /usr/share/WhiteStork'
-
-if [ "$1" != "upgrade" ]
-then
-       echo -e -n "Removing gconf configuration..\n"
-       su $USER -c 'gconftool-2 --recursive-unset /apps/maemo/WhiteStork/Dictionaries'
-       su $USER -c 'gconftool-2 --recursive-unset /apps/maemo/WhiteStork/Engines'
-fi
-
-# End automatically added section