annotate debian/postrm @ 26720:d68c3cd43cd4
Change subtitle selection order by giving "indirect" ways of specifying the
desired subtitle track the least priority.
Selection of displayed subtitles by language (-slang) and default track
attribute is only performed if all other ways have failed. They are not
directly controllable by the user (especially default tracks), therefore they
should not override -sub, -vobsub and even auto-subs.
Based on a patch by Sergey Malkovsky (mplayer.win32_gmail_com).
author |
eugeni |
date |
Mon, 12 May 2008 20:40:39 +0000 |
parents |
02309ce6fc22 |
children |
|
rev |
line source |
7214
|
1 #!/bin/sh
|
|
2
|
|
3 set -e
|
|
4
|
|
5 if [ "$1" = "purge" ]; then
|
8908
|
6 if [ -e /usr/share/debconf/confmodule ]; then
|
|
7 # Source debconf library.
|
|
8 . /usr/share/debconf/confmodule
|
|
9 # Remove my changes to the db.
|
|
10 db_purge
|
|
11 fi
|
|
12
|
|
13 if [ -d /etc/mplayer/ ]; then
|
|
14 rm -rf /etc/mplayer/
|
|
15 fi
|
7214
|
16 fi
|
8911
|
17
|
|
18 #DEBHELPER#
|