~ubuntu-branches/ubuntu/saucy/libgphoto2/saucy-proposed

« back to all changes in this revision

Viewing changes to debian/libgphoto2-2.postrm

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2013-07-31 07:00:09 UTC
  • mfrom: (1.4.4)
  • Revision ID: package-import@ubuntu.com-20130731070009-enrbvg3hry64cxl1
Tags: 2.5.2-0ubuntu1
* New upstream release.
* Drop 01-increase_max_entries.patch, 02-libusbx_no_debug.patch,
  03-libusbx-fixes.patch: fixed upstream.
* Add libxml2-dev build dependency for new optional features.
* ABI changes: libgphoto2-2 → libgphoto2-6,
  libgphoto2-port0 → libgphoto2-port10
* debian/libgphoto2-dev-doc.install: Adjust to changed HTML API doc folder
  name.
* debian/libgphoto2-port10.install: Adjust for changed libgphoto-port ABI.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
 
3
 
PACKAGE="libgphoto2"
4
 
 
5
 
set -e
6
 
 
7
 
case "$1" in
8
 
    remove)
9
 
        rm -f /usr/share/hal/fdi/information/20thirdparty/$PACKAGE.fdi || true
10
 
        rm -f /usr/share/hal/fdi/information/10freedesktop/10-camera-$PACKAGE.fdi || true
11
 
        rm -f /usr/share/hal/fdi/information/10freedesktop/10-camera-$PACKAGE-device.fdi || true
12
 
        ;;
13
 
 
14
 
    purge|disappear|upgrade|failed-upgrade|abort-install|abort-upgrade)
15
 
        ;;
16
 
 
17
 
    *)
18
 
        echo "postrm called with unknown argument \`$1'" >&2
19
 
        exit 1
20
 
esac
21
 
 
22
 
#DEBHELPER#
23
 
 
24
 
exit 0