~ubuntu-branches/ubuntu/hardy/uim/hardy

« back to all changes in this revision

Viewing changes to debian/uim-common.preinst

  • Committer: Bazaar Package Importer
  • Author(s): Masahito Omote
  • Date: 2007-04-21 03:46:09 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070421034609-gpcurkutp8vaysqj
Tags: 1:1.4.1-3
* Switch to dh_gtkmodules for the gtk 2.10 transition (Closes:
  #419318)
  - debian/control: Add ${misc:Depends} and remove libgtk2.0-bin on
    uim-gtk2.0.
  - debian/uim-gtk2.0.post{inst,rm}: Removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
# see: dh_installdeb(1)
 
4
 
 
5
set -e
 
6
 
 
7
# summary of how this script can be called:
 
8
#        * <new-preinst> `install'
 
9
#        * <new-preinst> `install' <old-version>
 
10
#        * <new-preinst> `upgrade' <old-version>
 
11
#        * <old-preinst> `abort-upgrade' <new-version>
 
12
# for details, see http://www.debian.org/doc/debian-policy/ or
 
13
# the debian-policy package
 
14
 
 
15
 
 
16
case "$1" in
 
17
    install)
 
18
    ;;
 
19
    upgrade)
 
20
    ;;
 
21
 
 
22
    abort-upgrade)
 
23
    ;;
 
24
 
 
25
    *)
 
26
        echo "preinst called with unknown argument \`$1'" >&2
 
27
        exit 1
 
28
    ;;
 
29
esac
 
30
 
 
31
# dh_installdeb will replace this with shell code automatically
 
32
# generated by other debhelper scripts.
 
33
 
 
34
#DEBHELPER#
 
35
 
 
36
exit 0
 
37
 
 
38