Gentoo Archives: gentoo-commits

From: "Matthias Schwarzott (zzam)" <zzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-vdr r586 - in gentoo-vdr-scripts/trunk: . etc/conf.d usr/share/vdr/rcscript
Date: Sat, 19 Apr 2008 08:16:39
Message-Id: E1Jn8FJ-0004yO-BS@stork.gentoo.org
1 Author: zzam
2 Date: 2008-04-19 08:16:28 +0000 (Sat, 19 Apr 2008)
3 New Revision: 586
4
5 Modified:
6 gentoo-vdr-scripts/trunk/ChangeLog
7 gentoo-vdr-scripts/trunk/etc/conf.d/vdr
8 gentoo-vdr-scripts/trunk/usr/share/vdr/rcscript/pre-start-30-parameter.sh
9 Log:
10 Added VDR_CHARSET_OVERRIDE support
11
12 Modified: gentoo-vdr-scripts/trunk/ChangeLog
13 ===================================================================
14 --- gentoo-vdr-scripts/trunk/ChangeLog 2008-03-31 19:23:06 UTC (rev 585)
15 +++ gentoo-vdr-scripts/trunk/ChangeLog 2008-04-19 08:16:28 UTC (rev 586)
16 @@ -1,6 +1,10 @@
17 # ChangeLog for gentoo-vdr-scripts
18 # $Id$
19
20 + 19 Apr 2008; Matthias Schwarzott <zzam@g.o>
21 + usr/share/vdr/rcscript/pre-start-30-parameter.sh, etc/conf.d/vdr:
22 + Added VDR_CHARSET_OVERRIDE support
23 +
24 31 Mar 2008; Matthias Schwarzott <zzam@g.o>
25 usr/share/vdr/rcscript/post-stop-05-plugins.sh,
26 usr/share/vdr/rcscript/post-start-05-plugins.sh,
27
28 Modified: gentoo-vdr-scripts/trunk/etc/conf.d/vdr
29 ===================================================================
30 --- gentoo-vdr-scripts/trunk/etc/conf.d/vdr 2008-03-31 19:23:06 UTC (rev 585)
31 +++ gentoo-vdr-scripts/trunk/etc/conf.d/vdr 2008-04-19 08:16:28 UTC (rev 586)
32 @@ -38,6 +38,15 @@
33 # default: use system-wide setting, and if none found, guess some utf8 locale
34 #LANG="en_GB.utf8"
35
36 +# According to "ETSI EN 300 468" the default character set fo SI data is
37 +# ISO6937. But unfortunately some broadcasters actually use ISO-8859-9 or
38 +# other encodings, but fail to correctly announce that.
39 +# To fix this you can set the charset VDR assumes when none is specified
40 +# by the broadcaster. Better: Complain at your broadcaster.
41 +#
42 +# Using vdr-1.6 you can fix it this way:
43 +# If you subscribed to premiere (german pay tv) you may want ISO8859-15.
44 +#VDR_CHARSET_OVERRIDE="ISO8859-15"
45
46 ###########################################################
47 # Special Audio Options #
48
49 Modified: gentoo-vdr-scripts/trunk/usr/share/vdr/rcscript/pre-start-30-parameter.sh
50 ===================================================================
51 --- gentoo-vdr-scripts/trunk/usr/share/vdr/rcscript/pre-start-30-parameter.sh 2008-03-31 19:23:06 UTC (rev 585)
52 +++ gentoo-vdr-scripts/trunk/usr/share/vdr/rcscript/pre-start-30-parameter.sh 2008-04-19 08:16:28 UTC (rev 586)
53 @@ -3,6 +3,8 @@
54 # parameters of start-stop-daemon
55 [ -n "${VDR_NICENESS}" ] && add_daemonctrl_param --nicelevel "${VDR_NICENESS}"
56
57 + # Set environment
58 + [ -n "${VDR_CHARSET_OVERRIDE}" ] && export VDR_CHARSET_OVERRIDE
59
60 # parameters of vdr
61 add_param "--watchdog=${INTERNAL_WATCHDOG:-60}"
62
63 --
64 gentoo-commits@l.g.o mailing list