~ubuntu-branches/ubuntu/jaunty/urlview/jaunty

« back to all changes in this revision

Viewing changes to debian/prerm

  • Committer: Bazaar Package Importer
  • Author(s): Edward Betts
  • Date: 2001-08-02 22:26:35 UTC
  • Revision ID: james.westby@ubuntu.com-20010802222635-r671vc1exgx9s01d
Tags: 0.9-2.1
* NMU with maintainer permission.
* debian/README.Debian: corrected spelling error (developped -> developed)
* debian/control: added Build-Depends
* debian/control: updated Standards-Version to 3.5.6
* debian/copyright: fixed location of GPL (Closes: Bug#79751)
* debian/copyright: cleaned up
* debian/doc-base_urlview: document id corrected (Closes: Bug#85451)
* debian/rules: work around for Bug#90870 (<HTML> missing from urlview.html)
* debian/rules: added -isp to dpkg-gencontrol
* debian/url_handler.sh: use x-terminal-emulator (Closes: Bug#74736)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
set -e
 
3
 
 
4
# doc-base
 
5
if command -v install-docs >/dev/null 2>&1; then
 
6
        install-docs -r urlview
 
7
fi
 
8
 
 
9
# Change the docs to the new FHS
 
10
if [ \( "$1" = "upgrade" -o "$1" = "remove" \) \
 
11
       -a -L /usr/doc/urlview ]; then
 
12
        rm -f /usr/doc/urlview
 
13
fi
 
14
exit 0