~ubuntu-branches/ubuntu/gutsy/alsa-lib/gutsy

« back to all changes in this revision

Viewing changes to debian/libasound2.postrm

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach
  • Date: 2005-01-16 19:34:04 UTC
  • Revision ID: james.westby@ubuntu.com-20050116193404-iqr2qs5wnsth73sh
Tags: 1.0.8-1
* New upstream release
  (Closes: #290034 "libasound2 1.0.7 causing problems with XMMS")
* Thomas Hood:
  - Eliminate 10_pcm_wait_assertion.dpatch (applied upstream)
  - examples/asound.conf_dmix
    + Simplify
    + Mention /usr/share/doc/libasound2-doc/html/conf.html
  - debian/rules 
    + Eliminate debian/libasound2.shlibs; instead, use
         dh_makeshibs -V'libasound2 (>> 1.0.8)'
      (Version bumped up from 1.0.5)
    + Add -n option to dh_makeshlibs -plibasound2-plugins so that
      no ldconfig is done in libasound2-plugins's post(rm|inst).
      Eliminates lintian warning postinst-has-useless-call-to-ldconfig
* Jordi Mallach:
  - debian/rules: minor simplification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
set -e
 
3
 
 
4
case "$1" in
 
5
purge)
 
6
        # Remove very old cruft
 
7
        if [ -L /usr/doc/alsalib0.3.0 ]; then
 
8
                rm -f /usr/doc/alsalib0.3.0
 
9
        fi
 
10
        ;;
 
11
esac
 
12
 
 
13
#DEBHELPER#
 
14