~ubuntu-branches/ubuntu/saucy/luatex/saucy

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2009-12-25 09:47:05 UTC
  • mfrom: (1.1.9 upstream) (4.2.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091225094705-y33rpflo8t4u9nag
Tags: 0.50.0-1
* new upstream release
* disable fix-hurd-ftbfs patch, included upstream
* disable upstram-fixes, included upstream
* disable ubuntu_libpoppler-0.11, not needed anymore

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
#
3
 
# luatex postrm
4
 
 
5
 
# as long as we ship texdoclua in luatex (and not in texlive-base-bin)
6
 
# let's remove the diversion added by preinst.
7
 
 
8
 
if [ "$1" = remove ] 
9
 
then
10
 
   dpkg-divert --remove --package luatex --rename \
11
 
          --divert /usr/bin/texdoc.notluatex /usr/bin/texdoc
12
 
   dpkg-divert --remove --package luatex --rename \
13
 
          --divert /usr/share/man/man1/texdoc.notluatex.1.gz \
14
 
          /usr/share/man/man1/texdoc.1.gz
15
 
fi
16
 
 
17
 
#DEBHELPER#
18
 
 
19
 
exit 0