~noskcaj/ubuntu/saucy/sflphone/merge-1.2.3-2

« back to all changes in this revision

Viewing changes to tools/build-system/launchpad/sflphone-client-gnome/debian/postrm

  • Committer: Package Import Robot
  • Author(s): Francois Marier
  • Date: 2012-02-18 21:47:09 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120218214709-6362d71gqdsdkrj5
Tags: 1.0.2-1
* New upstream release
  - remove logging patch (applied upstream)
  - update s390 patch since it was partially applied upstream
* Include the Evolution plugin as a separate binary package

* Fix compilation issues on SH4 (closes: #658987)
* Merge Ubuntu's binutils-gold linking fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# postrm script for sflphone
 
3
#
 
4
# see: dh_installdeb(1)
 
5
 
 
6
set -e
 
7
 
 
8
# summary of how this script can be called:
 
9
#        * <postrm> `remove'
 
10
#        * <postrm> `purge'
 
11
#        * <old-postrm> `upgrade' <new-version>
 
12
#        * <new-postrm> `failed-upgrade' <old-version>
 
13
#        * <new-postrm> `abort-install'
 
14
#        * <new-postrm> `abort-install' <old-version>
 
15
#        * <new-postrm> `abort-upgrade' <old-version>
 
16
#        * <disappearer's-postrm> `disappear' <overwriter>
 
17
#          <overwriter-version>
 
18
# for details, see http://www.debian.org/doc/debian-policy/ or
 
19
# the debian-policy package
 
20
 
 
21
if [ "$1" = "purge" ]
 
22
then
 
23
 
 
24
  # remove the user config file
 
25
  rm -f $HOME/.sflphone/sflphonedrc
 
26
 
 
27
fi
 
28
 
 
29
# dh_installdeb will replace this with shell code automatically
 
30
# generated by other debhelper scripts.
 
31
 
 
32
#DEBHELPER#
 
33
 
 
34
exit 0
 
35
 
 
36