~ted/ubuntu/karmic/vim/add-breaks

« back to all changes in this revision

Viewing changes to debian/vim-variant.prerm

  • Committer: Bazaar Package Importer
  • Author(s): Fabien Tassin
  • Date: 2008-05-25 14:10:50 UTC
  • Revision ID: james.westby@ubuntu.com-20080525141050-vyijse496x8ci718
Tags: 1:7.1.293-3ubuntu1
* Merge from debian unstable (LP: #234766), remaining changes:
  - Enable detection of GNU screen as a mouse-capable terminal.
  - Add NoDisplay=true to gvim.desktop.
  - Drop vim-lesstif package and lesstif2-dev build-dependency.
  - Build-depend on libxt-dev.
  - Restore a number of Conflicts/Replaces and include
    /usr/share/man/ru.{KOI8-R,UTF-8}{,/man1}, both to help with upgrade
    problems from 6.06.
  - Enable Python interpreter on basic builds.
  - Create a .pot file for translations.
  - Disable autoindent, line-wrapping, and backup files by default.
  - Omni completion for Launchpad bugs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
}
46
46
 
47
47
case "$1" in
48
 
  remove)
 
48
  # only remove in remove/deconfigure so we don't disrupt users' preferences
 
49
  remove|deconfigure)
49
50
    case "$pkg" in
50
51
      vim-gnome) # gnome enabled variants
51
52
        remove_gnome_alternative
52
 
        ;;
 
53
        ;;
53
54
    esac
54
55
    remove_variant_alternative
55
56
    ;;
 
57
 
 
58
  upgrade|failed-upgrade)
 
59
    ;;
 
60
 
 
61
  *)
 
62
    echo "prerm called with unknown argument \`$1'" >&2
 
63
    exit 0
 
64
    ;;
56
65
esac
57
66
 
58
67
#DEBHELPER#