~ubuntu-branches/ubuntu/maverick/uim/maverick

« back to all changes in this revision

Viewing changes to debian/uim-common.prerm

  • Committer: Bazaar Package Importer
  • Author(s): Masahito Omote
  • Date: 2008-06-25 19:56:33 UTC
  • mfrom: (3.1.18 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080625195633-8jljph4rfq00l8o7
Tags: 1:1.5.1-2
* uim-tcode: provide tutcode-custom.scm, tutcode-bushudic.scm
  and tutcode-rule.scm (Closes: #482659)
* Fix FTBFS: segv during compile (Closes: #483078).
  I personally think this bug is not specific for uim but is a optimization
  problem on gcc-4.3.1. (https://bugs.freedesktop.org/show_bug.cgi?id=16477)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
set -e
3
 
 
4
 
case "$1" in
5
 
    remove|deconfigure)
6
 
        if [ -f /usr/bin/uim-module-manager ]; then
7
 
                for i in tutcode tcode byeoru viqr \
8
 
                         ipa-x-sampa hangul latin pyload; do
9
 
                        /usr/bin/uim-module-manager \
10
 
                                --path /etc/uim --unregister $i
11
 
                done
12
 
        fi
13
 
    ;;
14
 
    upgrade|failed-upgrade)
15
 
    ;;
16
 
    *)
17
 
    echo "prerm called with unknown argument \`$1'" >&2
18
 
    exit 1
19
 
   ;;
20
 
esac
21
 
 
22
 
#DEBHELPER#
23
 
 
24
 
exit 0
25