~ubuntu-branches/ubuntu/oneiric/dvipost/oneiric

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: Bazaar Package Importer
  • Author(s): Per Olofsson, Sven Hoexter, Per Olofsson
  • Date: 2008-06-08 13:15:56 UTC
  • Revision ID: james.westby@ubuntu.com-20080608131556-s91znxuox5bushec
Tags: 1.1-3
[ Sven Hoexter ]
* Added Vcs-* fields to control.
* Moved the pseudo Homepage field into the new official Homepage field.

[ Per Olofsson ]
* Added debian/watch.
* Trailing slash in Homepage field.
* Recommend TeX instead of depending on it. Only recommend texlive-
  base-bin, tetex no longer in Debian.
* Switch to debhelper v7, with a much smaller debian/rules.
* Build-Depend on texlive-latex-base so that 'make test' can be run by
  dh auto_test. Drop patches 3-4 so that configure detects tex again.
* Let upstream's make system install dvipost.sty instead of doing it
  ourselves. Pass LATEX variable to make install so it installs in the
  right place. Drop patch 02.makefile.in.dpatch.
* Drop patch system to reduce complexity.
* Use dh_installtex to manage registration of dvipost.sty instead of
  calling texhash manually from postinst/postrm.
* No need to install manpage manually, done by make install.
* Install NOTES as documentation.
* Bump Standards-Version to 3.8.0 (no changes).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh -e
2
 
 
3
 
case "$1" in
4
 
     remove)
5
 
        texhash
6
 
     ;;
7
 
 
8
 
     upgrade|purge|failed-upgrade|abort-install|abort-upgrade|disappear)
9
 
 
10
 
     ;;
11
 
 
12
 
    *)
13
 
        echo "postrm called with unknown argument \`$1'" >&2
14
 
        exit 1
15
 
 
16
 
esac
17
 
 
18
 
#DEBHELPER#