~ubuntu-branches/ubuntu/lucid/kdebase/lucid

« back to all changes in this revision

Viewing changes to debian/konqueror.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2009-05-05 13:55:26 UTC
  • mfrom: (0.1.5 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090505135526-ft8ym3kz8qg1mjhj
Tags: 4:4.2.2-1ubuntu1
* Merge with Debian, reamaining changes:
  - Keep our -kde4 replaces/conflicts
  - Do not re-add optional, unsatisfiable kdesktop dependency for libkonq5
  - Add newline to the end of kwrite.lintian-overrides
  - kubuntu_04_hide_kfind.diff, access though dolphin
  - kubuntu_05_konsole_colour_scheme.diff, much easier on the eyes
  - kubuntu_06_simple_aboutpage.diff, treat konqeror as a web browser
  - kubuntu_09_trash_kcm_in_dolphin.diff, from trunk
  - kubuntu_10_konq_scans_nsplugins_at_startup.diff, scan for new plugins
  - kubuntu_11_svn954343_dolphin_prefix.diff, from trunk
  - kubuntu_12_folderview_retry.diff, fixes folderview on live CD

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
set -e
3
 
 
4
 
if [ "$1" = "configure" ] ; then
5
 
        update-alternatives --quiet --install /usr/bin/x-www-browser x-www-browser \
6
 
                /usr/bin/konqueror 45
7
 
fi
 
1
#! /bin/sh -e
 
2
 
 
3
case "$1" in
 
4
    configure)
 
5
        update-alternatives --install /usr/bin/x-www-browser x-www-browser /usr/bin/konqueror 100
 
6
    ;;
 
7
 
 
8
    abort-upgrade|abort-remove|abort-deconfigure)
 
9
    ;;
 
10
 
 
11
    *)
 
12
        echo "postinst called with unknown argument \`$1'" >&2
 
13
        exit 1
 
14
    ;;
 
15
esac
 
16
 
 
17
#DEBHELPER#
 
18
 
 
19
exit 0