aboutsummaryrefslogtreecommitdiff
blob: 3ae8f302c27af54657d6f459de69d6a3bdfa507b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
# ChangeLog for gentoo-vdr-scripts
# $Id$

  06 Mar 2012; Joerg Bornkessel <hd_brummy@gentoo.org> etc/init.d/vdr:
  svdrp_command function now included

  05 Mar 2012; Joerg Bornkessel <hd_brummy@gentoo.org>
  usr/share/vdr/rcscript/pre-start-30-parameter.sh:
  fixed --rcu handling, used from >=media-video/vdr-1.7.25 in plugin
  media-video/vdr-rcu

*gentoo-vdr-scripts-0.5.1 (24 Feb 2012)

  24 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org> bump.sh, etc/init.d/vdr:
  last changes for svdrpsend/svdrpsend.pl handling

*gentoo-vdr-scripts-0.5.0 (24 Feb 2012)

  23 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org>
  usr/share/vdr/rcscript/pre-start-50-shutdown.sh:
  move to new sudo handling, /etc/sudoers entry is depricated

  22 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org>
  +usr/share/portage/config/sets/Makefile, usr/Makefile:
  install fix for #bug 331453

  22 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org> +etc/sudoers.d/Makefile:
  another makefile for new sudoers handling

  21 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org> +etc/sudoers.d/vdr,
  etc/Makefile:
  some adds for new sudoers handling

*gentoo-vdr-scripts-0.5.0_rc2 (20 Feb 2012)

  20 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org>
  usr/share/vdr/rcscript/post-start-50-svdrp.sh:
  typo fixed

*gentoo-vdr-scripts-0.5.0_rc1 (19 Feb 2012)

  17 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org>
  usr/share/vdr/rcscript/post-start-05-plugins.sh,
  usr/share/vdr/shutdown/pre-shutdown-05-time-calculations.sh,
  usr/share/vdr/rcscript/pre-start-10-chuid.sh,
  usr/share/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh,
  usr/share/vdr/rcscript/pre-start-20-dvb-device.sh,
  usr/share/vdr/rcscript/watchdog-restart-20-modules.sh,
  usr/share/vdr/shutdown/pre-shutdown-40-time.sh,
  usr/share/vdr/rcscript/pre-start-45-locales.sh,
  usr/share/vdr/rcscript/pre-start-45-nptl-check.sh,
  usr/share/vdr/shutdown/periodic-50-epgscan.sh,
  usr/share/vdr/rcscript/pre-start-50-shutdown.sh,
  usr/share/vdr/rcscript/post-start-50-svdrp.sh,
  usr/share/vdr/rcscript/post-start-60-check-syslog-errors.sh,
  usr/share/vdr/rcscript/pre-start-60-check-syslog-errors.sh,
  usr/share/vdr/rcscript/pre-start-98-wait-conditions.sh,
  usr/share/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  usr/sbin/acpi-wakeup.sh, usr/sbin/dvb-reload-modules, usr/sbin/rtc-wakeup.sh,
  usr/sbin/vdr-get-header-checksum, usr/sbin/vdr-watchdogd,
  usr/share/vdr/bin/vdrrecord-gate.sh, usr/share/vdr/bin/vdrshutdown-gate.sh,
  usr/share/vdr/bin/vdrshutdown-periodic-thread.sh,
  usr/share/vdr/bin/vdrshutdown-really.sh,
  usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh,
  usr/share/vdr/dvdchanger/dvdchanger_readdvd.sh,
  usr/share/vdr/dvdchanger/dvdchanger_writedvd.sh,
  usr/share/vdr/inc/commands-functions.sh, usr/share/vdr/inc/functions.sh,
  usr/share/vdr/inc/rc-functions.sh, usr/share/vdr/inc/svdrpcmd.sh,
  usr/share/vdr/inc/time.sh:
  Qouting, whitespace, minor fixes

  17 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org>
  usr/share/vdr/shutdown/periodic-50-epgscan.sh,
  usr/share/vdr/rcscript/post-start-50-svdrp.sh,
  +usr/share/vdr/inc/svdrpcmd.sh, usr/share/vdr/bin/vdrrecord-gate.sh,
  usr/share/vdr/bin/vdrshutdown-gate.sh,
  usr/share/vdr/bin/vdrshutdown-periodic-thread.sh,
  usr/share/vdr/bin/vdrshutdown-really.sh,
  usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh,
  usr/share/vdr/dvdchanger/dvdchanger_readdvd.sh,
  usr/share/vdr/dvdchanger/dvdchanger_writedvd.sh:
  svdrpsend.pl/svdrpsend detection, command will works now with all vdr
  versions

*gentoo-vdr-scripts-0.4.10.1 (13 Feb 2012)

  13 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org> ChangeLog:
  moved now alls svdrpsend.pl to svdrpsend

  12 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org>
  +usr/share/vdr/shutdown/shutdown-custom_cmd.sh,
  -usr/share/vdr/bin/shutdown-custom_cmd.sh:
  moved shutdown-custom script in the right dir

*gentoo-vdr-scripts-0.4.10 (08 Feb 2012)

  08 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org>
  +usr/share/vdr/bin/shutdown-custom_cmd.sh, etc/conf.d/vdr.shutdown,
  etc/init.d/vdr, usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
  moved svdrpsend.pl to svdrpsend command, used from vdr-1.7.23

  08 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org>
  +usr/share/vdr/bin/shutdown-custom_cmd.sh, etc/conf.d/vdr.shutdown,
  etc/init.d/vdr, usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
  add custom shutdown command, bug 389371

  07 Feb 2012; Joerg Bornkessel <hd_brummy@gentoo.org> ChangeLog:
  added paludis/cave support to vdrplugin-rebuild script, bug 394251

*gentoo-vdr-scripts-0.4.9 (09 Oct 2011)

  09 Oct 2011; Joerg Bornkessel <hd_brummy@gentoo.org> etc/conf.d/vdr,
  etc/init.d/vdr, etc/init.d/wakeup-reboot-halt:
  fix for depricated opts warning in newer openrc

*gentoo-vdr-scripts-0.4.8 (25 Jan 2011)

  24 Jan 2011; Joerg Bornkessel <hd_brummy@gentoo.org>
  +usr/share/portage/config/sets/vdr.conf:
  merged vdr-plugin-rebuild set for Portage-2.2; bug #331453

  18 Dec 2010; Matthias Schwarzott <zzam@gentoo.org> etc/conf.d/vdr.shutdown:
  Improve description of SHUTDOWN_SYSTOHC

*gentoo-vdr-scripts-0.4.8_rc2 (07 Dec 2010)

*gentoo-vdr-scripts-0.4.8_rc1 (05 Dec 2010)

  14 Nov 2010; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  usr/share/vdr/bin/vdrshutdown-really.sh, usr/share/vdr/inc/functions.sh:
  Improve error handling of reading files with timestamps.

  06 Sep 2010; Joerg Bornkessel <hd_brummy@gentoo.org>
  usr/share/vdr/rcscript/pre-start-30-parameter.sh,
  usr/share/vdr/rcscript/post-start-50-svdrp.sh, etc/conf.d/vdr,
  usr/share/vdr/inc/rc-functions.sh:
  fix syntax error

*gentoo-vdr-scripts-0.4.7 (05 Sep 2010)

  23 Feb 2010; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-45-nptl-check.sh, etc/conf.d/vdr:
  Change default of FORCE_OLD_THREADS to no. Suggested by chub in
  #gentoo-vdr.

  17 Nov 2009; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-30-parameter.sh, etc/init.d/vdr:
  Use new lirc socket path if it exists. Now depend on virtual service lirc
  to be able to use different lirc daemons.

*gentoo-vdr-scripts-0.4.6 (31 Jan 2009)

  31 Jan 2009; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
  Simplify marking system for reboot. No longer calc timestamps. This will
  work regardless of timezone settings. Tested by ploto from vdr-portal.de

*gentoo-vdr-scripts-0.4.5 (28 Aug 2008)

*gentoo-vdr-scripts-0.4.5_rc2 (14 Aug 2008)

  07 Aug 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-really.sh:
  Remove svdrp queue as we are already forked to background.

  07 Aug 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-really.sh,
  usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
  Simplify checking for needed reboot.

*gentoo-vdr-scripts-0.4.5_rc1 (02 Aug 2008)

*gentoo-vdr-scripts-0.4.5_pre3 (31 Jul 2008)

  31 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-really.sh,
  usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
  Fix shutdown not working.

*gentoo-vdr-scripts-0.4.5_pre2 (30 Jul 2008)

  30 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-really.sh,
  usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
  Add full path to wakeup-helper.

  30 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-really.sh:
  Fixed wakeup times did not work, fix it. Thanks to berti for noticing.

  30 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
  Simplify shutdown code a bit.

  30 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  +usr/share/vdr/bin/vdrshutdown-gate.sh,
  usr/share/vdr/bin/vdrshutdown-really.sh,
  usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
  Add nnew mini-script to call the new root-parts of shutdown.

  30 Jul 2008; Matthias Schwarzott <zzam@gentoo.org> ++,
  -usr/share/vdr/bin/vdrshutdown-gate.sh:
  Move old user-part of shutdown to sudo entry point.

  30 Jul 2008; Matthias Schwarzott <zzam@gentoo.org> ++,
  -usr/share/vdr/bin/vdrshutdown-really.sh:
  Moved old root-part of shutdown to temp name.

  30 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-45-locales.sh:
  Check locale setup as does all users of it, checking LC_ALL LC_CTYPE LANG.
  Improved log output of locale setup.

  29 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-45-locales.sh:
  Tried to improve messages of locale handling code. Removed LC_MESSAGES=C
  setting.

  29 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  -usr/share/vdr/rcscript/pre-start-45-utf8-check.sh, ++:
  Renamed file that handles locales to reflect that.

*gentoo-vdr-scripts-0.4.5_pre1 (07 Jul 2008)

  06 Jul 2008; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Try to handle signals in init-script better. Make sure that vdr does not
  run if init-script gets killed, and at end of stop.

  06 Jul 2008; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr,
  usr/sbin/vdr-watchdogd:
  Changed message about died vdr process.

  06 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/post-start-50-svdrp.sh,
  usr/share/vdr/rcscript/post-start-60-check-syslog-errors.sh,
  usr/share/vdr/rcscript/pre-start-60-check-syslog-errors.sh,
  etc/conf.d/vdr, etc/init.d/vdr, usr/share/vdr/inc/rc-functions.sh:
  Run post-start addons also when vdr did not start. This will print syslog
  output then. Add config-setting to disable syslog parsing.

  06 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-20-dvb-device.sh,
  usr/share/vdr/rcscript/pre-start-40-config-files.sh,
  usr/share/vdr/rcscript/post-start-50-svdrp.sh, etc/conf.d/vdr,
  usr/share/vdr/inc/rc-functions.sh:
  Simplified waitfor function. Renamed DEVICE_CHECK to DVB_DEVICE_WAIT. Make
  timeout non-fatal.

  06 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-really.sh,
  usr/share/vdr/inc/plugin-functions.sh, usr/share/vdr/inc/rc-functions.sh,
  usr/share/vdr/inc/shutdown-functions.sh,
  vdrplugin-rebuild/vdrplugin-rebuild:
  Do not use header-path hardcoded in commands.

  06 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-10-chuid.sh, etc/conf.d/vdr:
  Add possibility to enable --userdump.

  06 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/plugin-functions.sh:
  Rename variable.

  06 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/shutdown/pre-shutdown-05-time-calculations.sh,
  usr/share/vdr/shutdown/pre-shutdown-10-check-enabled.sh,
  usr/share/vdr/rcscript/pre-start-10-chuid.sh,
  usr/share/vdr/rcscript/pre-start-20-dvb-device.sh,
  usr/share/vdr/rcscript/watchdog-restart-20-modules.sh,
  usr/share/vdr/shutdown/pre-shutdown-30-check-logins.sh,
  usr/share/vdr/rcscript/pre-start-30-parameter.sh,
  usr/share/vdr/rcscript/pre-start-45-nptl-check.sh,
  usr/share/vdr/shutdown/periodic-50-epgscan.sh,
  usr/share/vdr/rcscript/pre-start-50-shutdown.sh,
  usr/share/vdr/shutdown/pre-shutdown-99-periodic-thread.sh, etc/conf.d/vdr,
  etc/init.d/vdr, usr/share/vdr/bin/vdrshutdown-gate.sh,
  usr/share/vdr/inc/functions.sh, usr/share/vdr/inc/plugin-functions.sh,
  usr/share/vdr/inc/rc-functions.sh,
  usr/share/vdr/inc/shutdown-functions.sh,
  usr/share/vdr/shutdown/wakeup-none.sh:
  Use yesno from openrc, but provide replacement for older baselayout.

  04 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  vdrplugin-rebuild/vdrplugin-rebuild:
  Add hack to use an existing checksum file if plugin-name != ebuild-name.

  04 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  vdrplugin-rebuild/vdrplugin-rebuild:
  Let vdrplugin-rebuild match all plugins installed by an ebuild.

  04 Jul 2008; Matthias Schwarzott <zzam@gentoo.org> etc/conf.d/vdr,
  usr/share/vdr/inc/plugin-functions.sh:
  Add setting to disable patchlevel check.

  03 Jul 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-10-chuid.sh, etc/conf.d/vdr:
  Add config-setting to disable usage of the vdr -u option.

  29 Jun 2008; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown, usr/share/vdr/bin/vdrshutdown-gate.sh,
  usr/share/vdr/bin/vdrshutdown-really.sh:
  Remove 'Shutdown is retried soon' message. Reduce DRY_SHUTDOWN to one
  single point.

  24 Jun 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-98-wait-conditions.sh:
  Fix typo.

  21 Jun 2008; Matthias Schwarzott <zzam@gentoo.org>
  vdrplugin-rebuild/vdrplugin-rebuild:
  Do not print ignored plugins.

  21 Jun 2008; Matthias Schwarzott <zzam@gentoo.org>
  vdrplugin-rebuild/vdrplugin-rebuild:
  Added option to only rebuild packages that have a different header
  checksum than current vdr.

  21 Jun 2008; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Moved clearing of logfile to better place right at start.

  21 Jun 2008; Matthias Schwarzott <zzam@gentoo.org> usr/sbin/Makefile,
  +usr/sbin/vdr-get-header-checksum, usr/share/vdr/inc/plugin-functions.sh:
  Factored out checksum creation to extra executable.

  19 Jun 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/watchdog-restart-20-modules.sh,
  usr/sbin/dvb-reload-modules:
  Add commands for reload and for only unload of modules.

  17 Jun 2008; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Simplify openvt usage.

  17 Jun 2008; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr,
  usr/share/vdr/inc/functions.sh, usr/share/vdr/inc/plugin-functions.sh,
  usr/share/vdr/inc/rc-functions.sh:
  No longer check old location for addons and the caps file.

  17 Jun 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/post-stop-05-plugins.sh,
  usr/share/vdr/rcscript/post-start-05-plugins.sh,
  usr/share/vdr/rcscript/pre-stop-95-plugins.sh,
  usr/share/vdr/rcscript/pre-start-95-plugins.sh, etc/init.d/vdr,
  usr/share/vdr/inc/plugin-functions.sh:
  Cleanup of init-script and plugin loader structure.

  15 Jun 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/post-stop-05-plugins.sh,
  usr/share/vdr/rcscript/post-start-05-plugins.sh,
  usr/share/vdr/rcscript/pre-stop-95-plugins.sh,
  usr/share/vdr/rcscript/pre-start-95-plugins.sh, etc/init.d/vdr,
  usr/share/vdr/inc/plugin-functions.sh:
  Cleanup of plugin loading code.

  15 Jun 2008; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Fix watchdogrestart for now by running stop and start in subshells.

  12 Jun 2008; Matthias Schwarzott <zzam@gentoo.org>
  -usr/share/vdr/rcscript/pre-stop-10-watchdog.sh,
  -usr/share/vdr/rcscript/post-start-90-watchdog.sh, etc/init.d/vdr,
  usr/share/vdr/inc/rc-functions.sh:
  Move watchdog code directly into init-script.

  02 Jun 2008; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Remove forgotten line.

  30 May 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh,
  usr/share/vdr/shutdown/pre-shutdown-99-periodic-thread.sh, etc/init.d/vdr,
  usr/share/vdr/inc/rc-functions.sh:
  Small cleanup.

  29 May 2008; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr,
  -usr/share/vdr/inc/message-functions.sh,
  usr/share/vdr/inc/rc-functions.sh:
  Absorbed message-functions into init-script.

  29 May 2008; Matthias Schwarzott <zzam@gentoo.org>
  -usr/sbin/vdr-inform-watchdog.sh, usr/sbin/vdr-watchdogd:
  Rewrite of vdr-watchdog.

  21 May 2008; Matthias Schwarzott <zzam@gentoo.org>
  vdrplugin-rebuild/vdrplugin-rebuild:
  Do not produce errors when no plugins were skipped at last start.

  21 May 2008; Matthias Schwarzott <zzam@gentoo.org>
  vdrplugin-rebuild/vdrplugin-rebuild:
  Allow to only merge plugins that are enabled, or ones that were skipped at
  last vdr start.

  21 May 2008; Matthias Schwarzott <zzam@gentoo.org>
  vdrplugin-rebuild/vdrplugin-rebuild:
  Remove dead code.

  21 May 2008; Matthias Schwarzott <zzam@gentoo.org>
  vdrplugin-rebuild/vdrplugin-rebuild:
  Simplified cmdline parsing. Allowing to pass parameters to emerge.

  21 May 2008; Matthias Schwarzott <zzam@gentoo.org>
  vdrplugin-rebuild/vdrplugin-rebuild:
  Renamed old stuff that still had module in the name. Removed external
  commands add/del.

  21 May 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/commands-functions.sh,
  usr/share/vdr/inc/language-functions.sh:
  Simplified code.

  21 May 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-10-chuid.sh, etc/init.d/vdr,
  usr/share/vdr/inc/message-functions.sh:
  Simplified code.

  21 May 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/watchdog-restart-20-modules.sh, usr/sbin/Makefile,
  +usr/sbin/dvb-reload-modules:
  Moved code to reload dvb modules into a seperate executable called
  dvb-reload-modules.

*gentoo-vdr-scripts-0.4.4 (20 Apr 2008)

  20 Apr 2008; Matthias Schwarzott <zzam@gentoo.org> Makefile, +bump.sh:
  Added info make-target. Added bump helper script.

  20 Apr 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/sbin/acpi-wakeup.sh:
  More baselayout-2 fixes for acpi wakeup. Fixes wrong utc detection.

  19 Apr 2008; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown, usr/share/vdr/shutdown/shutdown-reboot.sh:
  Give an explicit name to the automagic reboot handling - auto.

  19 Apr 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-45-utf8-check.sh:
  Make charmap handling more verbose and fix some export/usage order. Bug
  #217906

  19 Apr 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/post-start-60-check-syslog-errors.sh:
  Print name of log-file in every case when errors are detected.

  19 Apr 2008; Matthias Schwarzott <zzam@gentoo.org>
  etc/init.d/wakeup-reboot-halt:
  Make special option mark_for_reboot work with baselayout-1, Reported by
  gehlhajo, http://www.vdr-portal.de/board/thread.php?threadid=76283

  19 Apr 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-30-parameter.sh, etc/conf.d/vdr:
  Added VDR_CHARSET_OVERRIDE support

  31 Mar 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/post-stop-05-plugins.sh,
  usr/share/vdr/rcscript/post-start-05-plugins.sh,
  usr/share/vdr/rcscript/pre-stop-95-plugins.sh,
  usr/share/vdr/rcscript/pre-start-95-plugins.sh,
  usr/share/vdr/inc/plugin-functions.sh:
  Add better error handling, like for disk full condition.

  31 Mar 2008; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Let init-script not silently fail at stop.

*gentoo-vdr-scripts-0.4.3 (23 Feb 2008)

  20 Feb 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/shutdown/shutdown-reboot.sh:
  Add mount /boot for lilo, due to http://bugs.gentoo.org/show_bug.cgi?id=207105

  18 Feb 2008; Matthias Schwarzott <zzam@gentoo.org>
  etc/init.d/wakeup-reboot-halt, usr/share/vdr/shutdown/shutdown-reboot.sh:
  Move mark-file logic for reboot completely into init-script.

  17 Feb 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-really.sh,
  usr/share/vdr/shutdown/shutdown-reboot.sh,
  usr/share/vdr/shutdown/wakeup-acpi.sh,
  usr/share/vdr/shutdown/wakeup-none.sh,
  usr/share/vdr/shutdown/wakeup-nvram.sh,
  usr/share/vdr/shutdown/wakeup-rtc.sh:
  Cleanup message handling for wakeup modules.

  17 Feb 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-gate.sh:
  No longer write count of forced tests to osd.

  13 Feb 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-50-shutdown.sh, README.shutdown,
  etc/conf.d/vdr.shutdown, usr/share/vdr/bin/vdrshutdown-really.sh,
  usr/share/vdr/inc/shutdown-functions.sh,
  usr/share/vdr/shutdown/wakeup-acpi.sh,
  usr/share/vdr/shutdown/wakeup-none.sh,
  usr/share/vdr/shutdown/wakeup-nvram.sh,
  usr/share/vdr/shutdown/wakeup-rtc.sh:
  More wakeup simplifications. Now try more than 1 wakeup-method until one
  successes.

  13 Feb 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/shutdown/Makefile:
  Now always install wakeup-nvram helper.

  13 Feb 2008; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-50-shutdown.sh, README.shutdown,
  usr/sbin/Makefile, usr/sbin/acpi-wakeup.sh, +usr/sbin/rtc-wakeup.sh,
  usr/share/vdr/bin/vdrshutdown-really.sh,
  usr/share/vdr/shutdown/wakeup-acpi.sh,
  usr/share/vdr/shutdown/wakeup-none.sh,
  usr/share/vdr/shutdown/wakeup-nvram.sh,
  +usr/share/vdr/shutdown/wakeup-rtc.sh:
  Simplified wakeup logic a bit. Moved rtc-wakeup to own files.

  15 Dec 2007; Matthias Schwarzott <zzam@gentoo.org>
  vdrplugin-rebuild/vdrplugin-rebuild:
  Let vdrplugin-rebuild detect and fix corrupt plugin database.

  10 Dec 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/sbin/acpi-wakeup.sh, usr/share/vdr/shutdown/wakeup-acpi.sh:
  Fix wakeup-call logic to work with old and new acpi/rtc interface.

  16 Oct 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/sbin/acpi-wakeup.sh:
  Updated acpi-wakeup to also work with new rtc-interface.

*gentoo-vdr-scripts-0.4.2 (08 Oct 2007)

  08 Oct 2007; Matthias Schwarzott <zzam@gentoo.org> Makefile,
  +vdrplugin-rebuild/Makefile, +vdrplugin-rebuild/vdrplugin-rebuild:
  Added vdrplugin-rebuild to gentoo-vdr-scripts.

*gentoo-vdr-scripts-0.4.1 (04 Oct 2007)

  04 Oct 2007; Matthias Schwarzott <zzam@gentoo.org> usr/share/vdr/Makefile,
  +usr/share/vdr/dvdchanger/Makefile,
  +usr/share/vdr/dvdchanger/dvdchanger_readdvd.sh,
  +usr/share/vdr/dvdchanger/dvdchanger_writedvd.sh:
  Added vdr-dvd-scripts.

  04 Oct 2007; Matthias Schwarzott <zzam@gentoo.org> Makefile,
  +etc/Makefile, +etc/conf.d/Makefile, +etc/init.d/Makefile,
  +etc/vdr/Makefile, +etc/vdr/commands/Makefile, +etc/vdr/reccmds/Makefile,
  +usr/Makefile, usr/bin/Makefile, +usr/sbin/Makefile,
  +usr/share/vdr/Makefile, +usr/share/vdr/bin/Makefile,
  +usr/share/vdr/inc/Makefile, +usr/share/vdr/rcscript/Makefile,
  +usr/share/vdr/record/Makefile, +usr/share/vdr/shutdown/Makefile:
  Make install now is distributed over makefiles in every directory.

  03 Oct 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-30-parameter.sh, etc/conf.d/vdr:
  Added parameter to modify VDR niceness.

  25 Sep 2007; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr,
  usr/sbin/vdr-inform-watchdog.sh:
  Do not set path to killall.

  25 Sep 2007; Matthias Schwarzott <zzam@gentoo.org> etc/conf.d/vdr.cd-dvd:
  Added burnspeed setting to vdr.cd-dvd conf file.

  10 Jul 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-60-check-syslog-errors.sh:
  Added more possible log file names for syslog scanning.

  10 Jul 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/post-start-60-check-syslog-errors.sh,
  usr/share/vdr/rcscript/pre-start-60-check-syslog-errors.sh:
  For checking syslog, do not read whole files, but just seek into them with
  help of stat/dd.

  10 Jul 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/post-start-60-check-syslog-errors.sh:
  Does not only show nice plugin failures, but also nicify the other errors.

  09 Jul 2007; Matthias Schwarzott <zzam@gentoo.org>
  +usr/share/vdr/rcscript/post-start-60-check-syslog-errors.sh,
  +usr/share/vdr/rcscript/pre-start-60-check-syslog-errors.sh:
  Added a log parser to display critical errors that only show up in syslog.

*gentoo-vdr-scripts-0.4.0 (07 Jul 2007)

  07 Jul 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/plugin-functions.sh:
  Do write more log files about failed plugins.

  03 Jul 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-45-utf8-check.sh, etc/conf.d/vdr:
  Added locale selection for >=vdr-1.5.3, no longer drop locales to C, but
  autoselect utf8 one if avail and none selected systemwide or in vdr config.

  23 Jun 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-95-plugins.sh,
  usr/share/vdr/inc/plugin-functions.sh:
  Only store loaded plugins for usage at stopping.

*gentoo-vdr-scripts-0.3.10 (12 Jun 2007)

  11 Jun 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-98-wait-conditions.sh,
  usr/sbin/vdr-watchdogd:
  Removed some bash operators.

  11 Jun 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-20-dvb-device.sh,
  usr/share/vdr/rcscript/pre-start-98-wait-conditions.sh:
  Added a message about DEVICE_CHECK if the dvb-device check fails,
  http://www.vdr-portal.de/board/thread.php?threadid=65303

  08 Jun 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/shutdown/pre-shutdown-40-time.sh:
  Allow forcing of shutdown at forbidden times.

  04 Jun 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-really.sh:
  Do not rely on bash variable UID.

  04 Jun 2007; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Be sure to need net, and need lirc if configured.

  04 Jun 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/message-functions.sh:
  Removed header-line of startlog.

  02 Jun 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/plugin-functions.sh:
  Do not show error if to be deleted file does not exist.

  02 Jun 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/plugin-functions.sh:
  Added missing variables.

  02 Jun 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/rc-functions.sh:
  Added einfo_level1/2 for compatibility with rcaddons using them.

  02 Jun 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-95-plugins.sh,
  usr/share/vdr/inc/message-functions.sh,
  usr/share/vdr/inc/plugin-functions.sh:
  Summary view of failed plugins.

  02 Jun 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/watchdog-restart-20-modules.sh,
  usr/share/vdr/rcscript/pre-start-45-nptl-check.sh,
  usr/share/vdr/rcscript/pre-start-50-shutdown.sh,
  usr/share/vdr/rcscript/pre-start-95-plugins.sh, etc/init.d/vdr,
  usr/share/vdr/inc/message-functions.sh,
  usr/share/vdr/inc/plugin-functions.sh, usr/share/vdr/inc/rc-functions.sh:
  Easier message handling.

  30 May 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-gate.sh:
  remove shutdown-time-written file before rewrite it.

  30 May 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh:
  No longer check noad at shutdown, as it now has a dedicated script.

  30 May 2007; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown, usr/share/vdr/bin/vdrshutdown-gate.sh,
  usr/share/vdr/bin/vdrshutdown-really.sh:
  Added easy debug setting for shutdown.

  30 May 2007; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.watchdogd, usr/share/vdr/inc/rc-functions.sh:
  Enabled external watchdog by default.

  30 May 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/watchdog-restart-20-modules.sh,
  etc/conf.d/vdr.watchdogd, etc/init.d/vdr, usr/sbin/vdr-watchdogd,
  usr/share/vdr/inc/rc-functions.sh:
  Removed sleeps for watchdogrestart. Removed logging by default for watchdog.

  30 May 2007; Matthias Schwarzott <zzam@gentoo.org> Makefile,
  +usr/bin/Makefile, +usr/bin/wait_on_pid.c, usr/sbin/vdr-watchdogd:
  Added some small binary to wait for a process to exit.

  12 May 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-really.sh:
  Fixed last arithmetic expression.

  10 May 2007; Matthias Schwarzott <zzam@gentoo.org> usr/sbin/vdr-watchdogd:
  Fix external watchdog with dash shell.

  10 May 2007; Matthias Schwarzott <zzam@gentoo.org> Makefile:
  Revert old nicer Makefile, but force bash on it.

  08 May 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-95-plugins.sh,
  usr/share/vdr/shutdown/pre-shutdown-99-periodic-thread.sh, Makefile,
  usr/sbin/acpi-wakeup.sh, usr/share/vdr/bin/vdrshutdown-gate.sh,
  usr/share/vdr/inc/message-functions.sh,
  usr/share/vdr/inc/plugin-functions.sh, usr/share/vdr/inc/rc-functions.sh,
  usr/share/vdr/inc/time.sh:
  Removed more bashish code.

  08 May 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-gate.sh:
  Rename shutdown_common to shutdown_abort_common.

  24 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-gate.sh:
  Added better check for usable pre-shutdown hook.

  24 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-gate.sh:
  Fixed quoting of the queued commands in shutdown-gate.

*gentoo-vdr-scripts-0.3.9 (23 Apr 2007)

  18 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/rc-functions.sh:
  Also stop watchdog if it was disabled while vdr was still running.

  18 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/rc-functions.sh:
  Make start-stop-daemon get the correct state of the watchdog.

  17 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  usr/share/vdr/bin/vdrshutdown-really.sh,
  usr/share/vdr/inc/plugin-functions.sh:
  Removed more bash stuff.

  17 Apr 2007; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Only load external files when needed.

  17 Apr 2007; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Correctly evaluate quoted parameters.

  17 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/rc-functions.sh:
  Does not try to load non-existant addon.

  16 Apr 2007; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr,
  usr/share/vdr/inc/plugin-functions.sh, usr/share/vdr/inc/rc-functions.sh:
  Removed bash specific array code.

  16 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/rc-functions.sh:
  Removed more bash specific code.

  16 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/rc-functions.sh:
  Check shell syntax before executing an addon.

  16 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrrecord-gate.sh:
  Giving $@ as parameter to the record-hook scripts to also support more
  parameters the future can bring, suggested by Markus Holter
  <markus.holter@gmail.com>.

  16 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/functions.sh:
  Removed more bash specific code.

  16 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-gate.sh, usr/share/vdr/inc/functions.sh,
  usr/share/vdr/inc/plugin-functions.sh, usr/share/vdr/inc/rc-functions.sh:
  Removed more bash specific code.

  16 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/watchdog-restart-20-modules.sh, etc/init.d/vdr,
  usr/share/vdr/inc/language-functions.sh, usr/share/vdr/inc/time.sh:
  Removed more bash specific code.

  16 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/sbin/acpi-wakeup.sh, usr/share/vdr/bin/vdrshutdown-gate.sh,
  usr/share/vdr/inc/plugin-functions.sh, usr/share/vdr/inc/rc-functions.sh:
  Replaced bash specific arithmetics.

  16 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/shutdown/periodic-50-epgscan.sh,
  usr/share/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  README.shutdown, usr/share/vdr/bin/vdr-bg.sh,
  usr/share/vdr/bin/vdrrecord-gate.sh,
  usr/share/vdr/bin/vdrshutdown-gate.sh,
  usr/share/vdr/bin/vdrshutdown-periodic-thread.sh,
  usr/share/vdr/bin/vdrshutdown-really.sh:
  Removed more bash specific code.

  16 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-10-chuid.sh,
  usr/share/vdr/rcscript/pre-stop-10-watchdog.sh,
  usr/share/vdr/rcscript/pre-start-20-dvb-device.sh,
  usr/share/vdr/rcscript/watchdog-restart-20-modules.sh,
  usr/share/vdr/rcscript/pre-start-30-parameter.sh,
  usr/share/vdr/rcscript/pre-start-40-config-files.sh,
  usr/share/vdr/rcscript/pre-start-45-nptl-check.sh,
  usr/share/vdr/rcscript/pre-start-45-utf8-check.sh,
  usr/share/vdr/rcscript/pre-start-50-shutdown.sh,
  usr/share/vdr/rcscript/post-start-50-svdrp.sh,
  usr/share/vdr/rcscript/post-start-90-watchdog.sh,
  usr/share/vdr/rcscript/pre-start-95-plugins.sh,
  usr/share/vdr/rcscript/pre-start-98-wait-conditions.sh, README.shutdown,
  etc/init.d/vdr, etc/init.d/wakeup-reboot-halt, usr/sbin/acpi-wakeup.sh,
  usr/share/vdr/inc/commands-functions.sh, usr/share/vdr/inc/functions.sh,
  usr/share/vdr/inc/language-functions.sh,
  usr/share/vdr/inc/message-functions.sh,
  usr/share/vdr/inc/plugin-functions.sh, usr/share/vdr/inc/rc-functions.sh,
  usr/share/vdr/inc/shutdown-functions.sh, usr/share/vdr/inc/time.sh:
  Removed more bash specific code.

  16 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/sbin/acpi-wakeup.sh, usr/sbin/vdr-inform-watchdog.sh,
  usr/sbin/vdr-watchdogd:
  Removed bash specific code.

  16 Apr 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/shutdown/pre-shutdown-05-time-calculations.sh,
  usr/share/vdr/shutdown/pre-shutdown-10-check-enabled.sh,
  usr/share/vdr/shutdown/pre-shutdown-30-check-logins.sh,
  usr/share/vdr/shutdown/pre-shutdown-40-time.sh,
  usr/share/vdr/shutdown/periodic-50-epgscan.sh,
  usr/share/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  usr/share/vdr/shutdown/shutdown-reboot.sh,
  usr/share/vdr/shutdown/wakeup-acpi.sh,
  usr/share/vdr/shutdown/wakeup-none.sh,
  usr/share/vdr/shutdown/wakeup-nvram.sh:
  Removed bash specific code.

  15 Apr 2007; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Completely remove dvbsplash support to finally stop all problems.

  19 Mar 2007; Joerg Bornkessel <hd_brummy@gentoo.org> ChangeLog:
  moved 'set log level' from Expert Settings to Debug Options

  13 Mar 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/plugin-functions.sh:
  Replaced which by bash-builtin type -p, as which is not garanteed to exist.

*gentoo-vdr-scripts-0.3.8 (31 Jan 2007)

  22 Jan 2007; Matthias Schwarzott <zzam@gentoo.org> etc/conf.d/vdr:
  Set default log-level to 3 to make logs more usefull.

  22 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/post-start-50-svdrp.sh, etc/conf.d/vdr:
  Make the time to wait for running vdr configurable.

  22 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/watchdog-restart-20-modules.sh:
  Other fix for reloading modules as reverse does not work.

  22 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/watchdog-restart-20-modules.sh:
  Reverse list of modules for watchdog-reloading them, to solve problem with
  not explicite depends for dvb_attach.

  22 Jan 2007; Matthias Schwarzott <zzam@gentoo.org> README.shutdown:
  Add description of used shutdown-tmp-files.

  21 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  etc/vdr/commands/commands.system.conf,
  etc/vdr/commands/commands.system.conf.de,
  usr/share/vdr/inc/message-functions.sh:
  Move start-log file to tmp-folder.

  21 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/plugin-functions.sh:
  Do no longer call check_plugin when stopping to not modify list of plugins.

  21 Jan 2007; Matthias Schwarzott <zzam@gentoo.org> TODO, etc/init.d/vdr,
  usr/share/vdr/inc/plugin-functions.sh:
  Store list of plugins when starting vdr, to call correct rcaddons at stopping.

  21 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-40-config-files.sh:
  Now creating empty channels.conf if none exists.

  13 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/shutdown/wakeup-none.sh:
  Let code use yes/no like conf-file suggested already.

  13 Jan 2007; Matthias Schwarzott <zzam@gentoo.org> Makefile:
  Also install none-wakeup.

  12 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown, usr/share/vdr/shutdown/wakeup-none.sh:
  Added option to control behaviour of none-wakeup-method when timers exist.

  11 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-gate.sh:
  Some text cleanups.

  11 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-gate.sh,
  +usr/share/vdr/shutdown/wakeup-none.sh:
  Added first version of no-operation wakeup. Moved shutdown-now message around.

  11 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  trunk/usr/share/vdr/bin/vdrshutdown-gate.sh,
  trunk/usr/share/vdr/bin/vdrshutdown-really.sh:
  Use exitcodes different from sudo.

  10 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown, usr/share/vdr/bin/vdrshutdown-gate.sh,
  usr/share/vdr/bin/vdrshutdown-really.sh:
  Fixed names of debug-variables for shutdown.

  10 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-gate.sh:
  Moved some code into dedicated functions.

  10 Jan 2007; Matthias Schwarzott <zzam@gentoo.org> README.shutdown,
  usr/share/vdr/bin/vdrshutdown-gate.sh:
  Remove global TRY_AGAIN variable from interface to pre-shutdown-hooks.

  10 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/shutdown/pre-shutdown-10-check-enabled.sh, README.shutdown,
  usr/share/vdr/bin/vdrshutdown-gate.sh:
  Remove global EXITCODE variable.

  10 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/bin/vdrshutdown-gate.sh:
  Move check for user shutdown into forced-shutdown-check-function.

  10 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-50-shutdown.sh:
  No longer hard disable shutdown if there are things todo, warn only now.

  04 Jan 2007; Matthias Schwarzott <zzam@gentoo.org> README.shutdown,
  usr/share/vdr/bin/vdrshutdown-really.sh,
  usr/share/vdr/shutdown/wakeup-nvram.sh:
  Removed fixed variable name from interface to wakeup-method.

  04 Jan 2007; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-50-shutdown.sh, README.shutdown,
  usr/share/vdr/bin/vdrshutdown-really.sh,
  usr/share/vdr/shutdown/wakeup-acpi.sh,
  usr/share/vdr/shutdown/wakeup-nvram.sh:
  Removed using a variable for return-values (SHUTDOWN_EXITCODE). Renamed
  function set_wakeup to wakeup_set. Added function wakeup_check.

  21 Dec 2006; Matthias Schwarzott <zzam@gentoo.org> TODO:
  Updated TODO-file.

*gentoo-vdr-scripts-0.3.7 (07 Nov 2006)

  18 Oct 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-95-plugins.sh,
  usr/share/vdr/inc/plugin-functions.sh:
  Moved the reader for new plugin-conf-system to correct place, as then only
  start-rcaddons will work.

  18 Oct 2006; Matthias Schwarzott <zzam@gentoo.org> Makefile:
  Make VERSION overwritable for developer.

  11 Oct 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-95-plugins.sh, etc/conf.d/vdr,
  +etc/conf.d/vdr.plugins, usr/share/vdr/inc/plugin-functions.sh:
  Now read plugins to load from a dedicated config-file.

  11 Oct 2006; Matthias Schwarzott <zzam@gentoo.org> README:
  Incrementing version-number to 0.3.7.

  11 Oct 2006; Matthias Schwarzott <zzam@gentoo.org> Makefile:
  Now also create directories via the install-command.

  11 Oct 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-95-plugins.sh:
  More nicer indenting.

  09 Oct 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-95-plugins.sh,
  usr/share/vdr/inc/plugin-functions.sh, usr/share/vdr/inc/rc-functions.sh:
  Added Log-Message to inform about skipped Plugins.

  08 Oct 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-98-wait-conditions.sh:
  Changed prerequisits-message.

  08 Oct 2006; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Added prefix to cmdline-message.

  08 Oct 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/plugin-functions.sh:
  Removed header-line for skipped plugins.

  08 Oct 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/rc-functions.sh:
  Moved msg about waittime to new category debug.

  08 Oct 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/rc-functions.sh:
  Removed prefix from einfo_level1 and 2.

  07 Oct 2006; Matthias Schwarzott <zzam@gentoo.org> etc/conf.d/vdr,
  etc/init.d/vdr, usr/share/vdr/inc/rc-functions.sh:
  Make showing vdr-version number at startup-time configurable, but disabled
  by default.

  07 Oct 2006; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr,
  usr/share/vdr/inc/rc-functions.sh:
  Changed debug-code to write out a correctly quoted command-line, suggested
  by cduerr from vdr-portal.de.

  07 Oct 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-95-plugins.sh:
  Only add space when _EXTRAOPTS contains anything.

  07 Oct 2006; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Change to root directory when starting/stoping vdr.

  05 Oct 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-45-nptl-check.sh:
  Removed warning about nptl-only system.

  17 Jul 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/watchdog-restart-20-modules.sh, etc/init.d/vdr,
  usr/share/vdr/bin/vdrrecord-gate.sh,
  usr/share/vdr/bin/vdrshutdown-gate.sh,
  usr/share/vdr/bin/vdrshutdown-periodic-thread.sh,
  usr/share/vdr/bin/vdrshutdown-really.sh,
  usr/share/vdr/inc/commands-functions.sh, usr/share/vdr/inc/functions.sh,
  usr/share/vdr/inc/language-functions.sh,
  usr/share/vdr/inc/message-functions.sh,
  usr/share/vdr/inc/plugin-functions.sh, usr/share/vdr/inc/rc-functions.sh,
  usr/share/vdr/inc/shutdown-functions.sh, usr/share/vdr/inc/time.sh:
  Added comments to the head of the scripts.

*gentoo-vdr-scripts-0.3.6 (09 Jul 2006)

  09 Jul 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-30-parameter.sh,
  usr/share/vdr/rcscript/pre-start-50-shutdown.sh,
  usr/share/vdr/shutdown/pre-shutdown-99-periodic-thread.sh, Makefile,
  usr/share/vdr/bin/vdrrecord-gate.sh,
  usr/share/vdr/bin/vdrshutdown-gate.sh,
  usr/share/vdr/inc/message-functions.sh:
  Changed every reference to /usr/lib/vdr/bin.

  09 Jul 2006; Matthias Schwarzott <zzam@gentoo.org> -usr/lib/vdr/bin
  +usr/share/vdr/bin:
  Moved usr/lib/vdr/bin to usr/share/vdr/bin

  06 Jul 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/commands-functions.sh:
  Chown the merged commands-file to vdr:vdr, solves problems with restrictive
  umask-value, reported by timonator at #gentoo-vdr.

  25 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown:
  Changed default-conf-filename for nvram-wakeup to nvram-wakeup.conf to match
  other distros and wiki.

  19 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/rcscript/pre-start-95-plugins.sh,
  usr/share/vdr/inc/plugin-functions.sh:
  Make SKIP_PLUGIN work also for stopping vdr, not only for start.

*gentoo-vdr-scripts-0.3.5 (16 Jun 2006)

  16 Jun 2006; Matthias Schwarzott <zzam@gentoo.org> Makefile:
  Do not create /var/vdr/video

  16 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/inc/time.sh:
  More bufixes for the forbidden-time-check.

  16 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/share/vdr/shutdown/pre-shutdown-40-time.sh:
  Bugfix forbidden-times shutdown stopper. Reported by Roland May
  <tinitus@web.de>.

  16 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscripts -> usr/share/vdr/rcscripts, Makefile,
  README.vdrcaps, usr/share/vdr/inc/rc-functions.sh:
  Moved rcscript-dir to /usr/share

  16 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown -> usr/share/vdr/shutdown, Makefile,
  README.shutdown, usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh,
  usr/share/vdr/inc/shutdown-functions.sh:
  Moved shutdown-dir to /usr/share

  16 Jun 2006; Matthias Schwarzott <zzam@gentoo.org> Makefile,
  usr/lib/vdr/bin/vdrrecord-gate.sh, usr/lib/vdr/record -> usr/share/vdr/record:
  Moved record-dir to /usr/share

  16 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/inc -> usr/share/vdr/inc
  usr/share/vdr/rcscript/pre-start-40-config-files.sh, Makefile,
  etc/init.d/vdr, usr/lib/vdr/bin/vdrrecord-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-really.sh:
  Moved include-dir to /usr/share

  16 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/inc/functions.sh:
  Can read capabilities-file from new location under /usr/share

  16 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/inc/plugin-functions.sh, usr/lib/vdr/inc/rc-functions.sh:
  Autodetect path to vdr-plugins from vdr-Make.config.

  16 Jun 2006; Matthias Schwarzott <zzam@gentoo.org> Makefile:
  changed makefile to only one install-target

  13 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown:
  Corrected typo in description of BLOCK_SHUTDOWN_INTERVALS, reported by
  Roland May <tinitus@web.de>.

  13 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh, etc/conf.d/vdr:
  Modified parameter MUTE, to act like described in comment, reported by
  Roland May <tinitus@web.de>.

  11 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdr-bg.sh, usr/lib/vdr/bin/vdrrecord-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  Better quoting of . Better debug support.

  11 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/post-stop-05-plugins.sh,
  usr/lib/vdr/rcscript/post-start-05-plugins.sh,
  usr/lib/vdr/rcscript/pre-start-10-chuid.sh,
  usr/lib/vdr/rcscript/pre-stop-10-watchdog.sh,
  usr/lib/vdr/rcscript/pre-start-20-dvb-device.sh,
  usr/lib/vdr/rcscript/watchdog-restart-20-modules.sh,
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh,
  usr/lib/vdr/rcscript/pre-start-40-config-files.sh,
  usr/lib/vdr/rcscript/pre-start-45-nptl-check.sh,
  usr/lib/vdr/rcscript/pre-start-45-utf8-check.sh,
  usr/lib/vdr/rcscript/pre-start-50-shutdown.sh,
  usr/lib/vdr/rcscript/post-start-90-watchdog.sh,
  usr/lib/vdr/rcscript/pre-stop-95-plugins.sh,
  usr/lib/vdr/rcscript/pre-start-95-plugins.sh:
  Every addon now returns a proper exitcode.

  11 Jun 2006; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Startscript now soft-depends on coldplug to ensure it started before.

  10 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-40-time.sh, usr/lib/vdr/bin/vdr-bg.sh,
  usr/lib/vdr/bin/vdrrecord-gate.sh, usr/lib/vdr/bin/vdrshutdown-gate.sh:
  Fork all processes started by vdr to background. Fixed some 1 line bugs.

  10 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  +usr/lib/vdr/shutdown/pre-shutdown-40-time.sh,
  usr/lib/vdr/shutdown/pre-shutdown-10-check-allowed.sh ->
  usr/lib/vdr/shutdown/pre-shutdown-10-check-enabled.sh,
  etc/conf.d/vdr.shutdown, +usr/lib/vdr/inc/time.sh:
  Added option to forbid shutdowns in specified time-intervals. Renamed one
  script

  09 Jun 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/post-start-50-svdrp.sh,
  usr/lib/vdr/rcscript/pre-start-98-wait-conditions.sh, etc/init.d/vdr,
  usr/lib/vdr/inc/rc-functions.sh:
  Changed error-code handling. Changed message for timeout at vdr-start.

*gentoo-vdr-scripts-0.3.4 (31 Mai 2006)

  31 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-45-utf8-check.sh, etc/conf.d/vdr:
  new utf8-wipeout strategy, relocated IR-setting in conf-file.

  29 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/wakeup-acpi.sh:
  Added an explicit warning about a missing /proc/acpi/alarm.

*gentoo-vdr-scripts-0.3.3 (17 Mai 2006)

  17 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-05-time-calculations.sh,
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  corrected invalid use of < and > to compare integers

  17 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-05-time-calculations.sh:
  Do not abort shutdown when there is no next timer defined. Fix by PanamaJack
  from vdr-portal.de.

*gentoo-vdr-scripts-0.3.2 (13 Mai 2006)

  13 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  -usr/lib/vdr/shutdown/pre-shutdown-05-fixed-wakeup.sh,
  +usr/lib/vdr/shutdown/pre-shutdown-05-time-calculations.sh,
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  Catch running timer and block shutdown in that case

  12 May 2006; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr,
  usr/lib/vdr/inc/message-functions.sh, usr/lib/vdr/inc/rc-functions.sh:
  Better handling of vdr-start-log. Explicitly state now that no errors occured.

  10 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown:
  Corrected reference to other shutdown setting in comment.

  10 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  +usr/lib/vdr/shutdown/pre-shutdown-05-fixed-wakeup.sh,
  etc/conf.d/vdr.shutdown:
  Added code for daily wakeup. Code by Michael Brakemeier
  <michael@brakemeier.de>.

  10 May 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  Added code to block shutdown when debugging.

  10 May 2006; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr,
  usr/lib/vdr/inc/functions.sh, usr/lib/vdr/inc/message-functions.sh:
  Fixed writing vdr-start-log

  09 May 2006; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  Changed "need net" to "use net" to not kill vdr when shutting down the
  network. Suggested by Martin Brodbeck <Martin@brodbeck-online.net>.

*gentoo-vdr-scripts-0.3.1 (03 Mai 2006)

  02 May 2006; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr,
  usr/lib/vdr/inc/plugin-functions.sh, usr/lib/vdr/inc/rc-functions.sh:
  Corrected reading of VDR-version, reported by Harri Kukkonen
  <harrik@gmail.com>, use APIVERSION for newer vdrs

*gentoo-vdr-scripts-0.3.0 (21 Mar 2006)

  21 Mar 2006; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown, usr/lib/vdr/bin/vdrshutdown-gate.sh:
  made shutdown retry time configurable

  18 Mar 2006; Matthias Schwarzott <zzam@gentoo.org> +README.shutdown:
  added description of shutdown-addon-modules

  15 Mar 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-50-shutdown.sh,
  +usr/lib/vdr/rcscript/post-start-92-messages.sh,
  +etc/vdr/commands/commands.system.conf,
  +etc/vdr/commands/commands.system.conf.de, usr/lib/vdr/inc/functions.sh,
  +usr/lib/vdr/inc/message-functions.sh,
  usr/lib/vdr/inc/plugin-functions.sh, usr/lib/vdr/inc/rc-functions.sh:
  First version of log-management

  15 Mar 2006; Matthias Schwarzott <zzam@gentoo.org> Makefile, README:
  added packaging make-target dist

  15 Mar 2006; Joerg Bornkessel <hd_brummy@gentoo.org>
  usr/lib/vdr/inc/plugin-functions.sh:
  set to higher warn level in skip_plugin, on suggestion by M.Guenther

  15 Mar 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/inc/plugin-functions.sh:
  use consistent sort order for checksums - use existing vdr checksum if possible

  14 Mar 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/inc/plugin-functions.sh, usr/lib/vdr/inc/rc-functions.sh:
  added check for mismatching patchlevel (=wrong header files) of plugins

*gentoo-vdr-scripts-0.2.4 (05 Mar 2006)

  04 Mar 2006; Matthias Schwarzott <zzam@gentoo.org> Makefile,
  +etc/vdr/commands/commands.custom.conf.de:
  added example for translated commands-file

  04 Mar 2006; Matthias Schwarzott <zzam@gentoo.org> +etc/conf.d/vdr.cd-dvd:
  Added config-file for cd&dvd devices used by some plugins

  02 Mar 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh, TODO, etc/conf.d/vdr:
  Set default log-level to 1

  28 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  cosmetics on shutdown-code

  28 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/inc/rc-functions.sh:
  do not print message about not defined function in addon

  28 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/inc/language-functions.sh:
  only read setup.conf if existing

  28 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-45-nptl-check.sh:
  changed debug-message for NPTL-off to be less confusing

  22 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-50-shutdown.sh,
  usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-really.sh, usr/lib/vdr/inc/functions.sh,
  usr/lib/vdr/inc/rc-functions.sh, usr/lib/vdr/inc/shutdown-functions.sh:
  changed inclusion of caps

  21 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/post-stop-05-plugins.sh,
  usr/lib/vdr/rcscript/post-start-05-plugins.sh,
  usr/lib/vdr/rcscript/pre-stop-95-plugins.sh,
  usr/lib/vdr/rcscript/pre-start-95-plugins.sh,
  +usr/lib/vdr/inc/plugin-functions.sh, usr/lib/vdr/inc/rc-functions.sh:
  copied some plugin-load-functions to its own file

  21 Feb 2006; Matthias Schwarzott <zzam@gentoo.org> etc/conf.d/vdr:
  added correction of comments in conf-file already added to 0.2.2 ebuild

  21 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-50-shutdown.sh, etc/init.d/vdr,
  usr/lib/vdr/bin/vdrrecord-gate.sh, usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-really.sh,
  usr/lib/vdr/inc/commands-functions.sh, +usr/lib/vdr/inc/functions.sh:
  created loader for shell include files

  12 Feb 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-40-config-files.sh:
  replaced /usr/bin/sed by /bin/sed

  31 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-10-chuid.sh:
  corrected error in handling of chuid-option for newer vdr-versions

*gentoo-vdr-scripts-0.2.3 (31 Jan 2006)

  31 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  set default shutdown retry time to 5min

  21 Jan 2006; Matthias Schwarzott <zzam@gentoo.org> etc/conf.d/vdr:
  corrected wrong comment in config-file

  09 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  +usr/lib/vdr/rcscript/pre-start-10-chuid.sh, TODO, etc/init.d/vdr:
  enable use of chuid integrated into vdr-1.3.38

  09 Jan 2006; Matthias Schwarzott <zzam@gentoo.org> README.shutdown-jobs,
  +README.vdrcaps, TODO:
  documentation updates

*gentoo-vdr-scripts-0.2.2 (07 Jan 2006)

  07 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/inc/commands-functions.sh,
  +usr/lib/vdr/inc/language-functions.sh:
  commands can now be localized

*gentoo-vdr-scripts-0.2.1 (06 Jan 2006)

  06 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  show message on OSD when doing shutdown

  06 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/inc/commands-functions.sh, usr/lib/vdr/inc/rc-functions.sh:
  some small fixes for changes before

  06 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-40-config-files.sh,
  +usr/lib/vdr/inc/commands-functions.sh:
  moved commands-file handling into seperate file

  05 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-50-shutdown.sh, Makefile,
  etc/init.d/vdr, usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-really.sh,
  +usr/lib/vdr/inc/shutdown-functions.sh,
  -usr/lib/vdr/rcscript/functions-shutdown.sh
  +usr/lib/vdr/inc/rc-functions.sh
  --usr/lib/vdr/rcscript/functions.sh:
  moved include-files

  05 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-50-shutdown.sh:
  Make it clearer how to get more shutdown/wakeup-methods.

  05 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh:
  some work on shutdown / periodic-thread

*gentoo-vdr-scripts-0.2 (03 Jan 2006)

  03 Jan 2006; Matthias Schwarzott <zzam@gentoo.org> +README.shutdown-jobs,
  TODO:
  a bit cleanup of documentation

  03 Jan 2006; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown:
  added new reboot-script to config-file

  03 Jan 2006; Matthias Schwarzott <zzam@gentoo.org> Makefile,
  +etc/init.d/wakeup-reboot-halt, usr/lib/vdr/shutdown/shutdown-reboot.sh:
  new method to do reboot without modifying bootmanager

*gentoo-vdr-scripts-0.2_alpha6 (31 Dec 2005)

  30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/periodic-50-epgscan.sh,
  usr/lib/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  +etc/conf.d/vdr.periodic.epgscan, -etc/conf.d/vdr.shutdown.epgscan,
  +etc/conf.d/vdr.periodic.general, etc/conf.d/vdr.shutdown:
  changed configuration-settings for periodic jobs

  30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh:
  added missing function

  30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  added message queue

  30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  code cosmetics

  30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh:
  base time-calculation on thread end-time, not start-time

  30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh,
  usr/lib/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh:
  now starting shutdown at end of periodic-thread, can now force shutdown when
  thread runs

  30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  small changes to time-calculations

  30 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdrshutdown-gate.sh:
  implement new technique of shutdown-retry via new patched svdrp-command down

*gentoo-vdr-scripts-0.2_alpha5 (29 Dec 2005)

  29 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/sbin/acpi-wakeup.sh:
  changed date-specification a bit to work with newest coreutils

  28 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  +usr/lib/vdr/shutdown/periodic-50-epgscan.sh, Makefile,
  +etc/conf.d/vdr.shutdown.epgscan:
  added example periodic-function

  28 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-10-check-allowed.sh,
  usr/lib/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh,
  +usr/lib/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
  etc/conf.d/vdr.shutdown, usr/lib/vdr/bin/vdrshutdown-gate.sh,
  +usr/lib/vdr/bin/vdrshutdown-periodic-thread.sh:
  first try with periodic-thread at shutdown

  28 Dec 2005; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr:
  corrected bug with wrong call order of functions in stop-script

  28 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-40-config-files.sh, Makefile, TODO,
  usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-really.sh,
  usr/lib/vdr/rcscript/functions-shutdown.sh:
  made extra tmp-directores for shutdown and config-file-merging

  28 Dec 2005; Matthias Schwarzott <zzam@gentoo.org> Makefile:
  added chown to Makefile

  27 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/sbin/acpi-wakeup.sh:
  Changed disabling wakeup, problem reported by ilmusy from vdr-portal.de

  27 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh:
  added more shutdown-blockers

  24 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh:
  added dvdauthor to list of shutdown-blocking programs

*gentoo-vdr-scripts-0.2_alpha4 (21 Dec 2005)

  20 Dec 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  added warning on osd when vdr was restarted by watchdog

  20 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/bin/vdrshutdown-really.sh,
  usr/lib/vdr/shutdown/wakeup-nvram.sh:
  can remember reboot-setting even if shutdown aborted

  20 Dec 2005; Matthias Schwarzott <zzam@gentoo.org>
  +usr/lib/vdr/rcscript/pre-start-45-utf8-check.sh, TODO:
  added utf8-workaround

  29 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  +usr/lib/vdr/rcscript/post-stop-05-plugins.sh,
  +usr/lib/vdr/rcscript/post-start-05-plugins.sh,
  usr/lib/vdr/rcscript/pre-stop-10-watchdog.sh,
  usr/lib/vdr/rcscript/pre-start-20-dvb-device.sh,
  usr/lib/vdr/rcscript/watchdog-restart-20-modules.sh,
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh,
  usr/lib/vdr/rcscript/pre-start-40-config-files.sh,
  usr/lib/vdr/rcscript/pre-start-45-nptl-check.sh,
  usr/lib/vdr/rcscript/pre-start-50-shutdown.sh,
  usr/lib/vdr/rcscript/post-start-50-svdrp.sh,
  usr/lib/vdr/rcscript/post-start-90-watchdog.sh,
  +usr/lib/vdr/rcscript/pre-stop-95-plugins.sh,
  +usr/lib/vdr/rcscript/pre-start-95-plugins.sh,
  +usr/lib/vdr/rcscript/pre-start-98-wait-conditions.sh, etc/init.d/vdr,
  usr/lib/vdr/rcscript/functions.sh:
  created functions called in each addon

  25 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/shutdown-reboot.sh:
  corrected bootmanager handling at reboot

*gentoo-vdr-scripts-0.2_alpha3 (15 Nov 2005)

  15 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh:
  Enable force of shutdown for running programs

  15 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh, etc/conf.d/vdr:
  Made config-file nicer and changed default for INTERNAL_WATCHDOG to 60s.

  15 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-10-check-allowed.sh,
  usr/lib/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh,
  usr/lib/vdr/shutdown/pre-shutdown-30-check-logins.sh,
  etc/conf.d/vdr.shutdown, usr/lib/vdr/bin/vdrshutdown-gate.sh,
  usr/lib/vdr/rcscript/functions-shutdown.sh:
  added possibility to force a shutdown

  14 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/shutdown/pre-shutdown-10-check-allowed.sh,
  usr/lib/vdr/shutdown/pre-shutdown-30-check-logins.sh, TODO,
  etc/conf.d/vdr.shutdown, usr/lib/vdr/shutdown/shutdown-reboot.sh:
  Made shutdown-config nicer, added special grub-option, check for logins at
  every shutdown.

  14 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh:
  Corrected typo in variable name.

*gentoo-vdr-scripts-0.2_alpha2 (05 Nov 2005)

  05 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh, etc/conf.d/vdr:
  added config-option to give special parameters to vdr

  05 Nov 2005; Matthias Schwarzott <zzam@gentoo.org>
  +usr/lib/vdr/rcscript/pre-start-45-nptl-check.sh, etc/conf.d/vdr,
  etc/init.d/vdr:
  added detection of nptl-only systems for thread-handling

  04 Nov 2005; Matthias Schwarzott <zzam@gentoo.org> etc/conf.d/vdr,
  etc/conf.d/vdr.shutdown:
  A bit better documentation of config files.

  31 Oct 2005; Matthias Schwarzott <zzam@gentoo.org>
  etc/conf.d/vdr.shutdown, usr/lib/vdr/shutdown/wakeup-nvram.sh:
  Added config-variable to be used for nvram-options not available otherwise.

*gentoo-vdr-scripts-0.2_alpha1 (29 Oct 2005)

  25 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  added options to switch to used terminal and to force a vdr-start as root

  24 Oct 2005; Matthias Schwarzott <zzam@gentoo.org>
  etc/init.d/vdr,usr/lib/vdr/rcscript/pre-start-30-parameter.sh:
  removed call of env
  moved terminal-handling completely to /etc/init.d/vdr
  use openvt to start with terminal

*gentoo-vdr-scripts-0.1 (21 Oct 2005)

  20 Oct 2005; Matthias Schwarzott <zzam@gentoo.org>
  usr/lib/vdr/bin/vdr-bg.sh:
  added script to start commands in background

  20 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  Revert last change, as it has problems with terminal-option.

  20 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> etc/init.d/vdr,
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh:
  Use start-stop-daemon option --background instead of &.

*gentoo-vdr-scripts-0.1_alpha10 (19 Oct 2005)

  19 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> etc/conf.d/vdr,
  usr/lib/vdr/rcscript/post-start-50-svdrp.sh:
  added config-setting for hostname to use for svdrp startup check

  18 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> TODO,
  usr/lib/vdr/rcscript/pre-start-30-parameter.sh,etc/init.d/vdr:
  TERMINAL-config-option works now.

*gentoo-vdr-scripts-0.1_alpha9 (12 Oct 2005)

  12 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  Preparation for better retry of failed shutdown.

  11 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  more cosmetic changes

  11 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  Small code cosmetics for shutdown, and one bugfix to always use
  default-wakeup-method acpi when noting is set.

*gentoo-vdr-scripts-0.1_alpha8 (08 Oct 2005)

  08 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  added test for logged in users when shutdown

  08 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  added missing config-file-entry

*gentoo-vdr-scripts-0.1_alpha7 (08 Oct 2005)

  08 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  a bit cleanup for watchdog

  07 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  renamed wakeup files

  06 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  added set of record-scripts

  03 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  test for working wakeup at start of vdr

*gentoo-vdr-scripts-0.1_alpha6 (03 Oct 2005)

  03 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  Split shutdown in multiple files

*gentoo-vdr-scripts-0.1_alpha5 (02 Oct 2005)

  02 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  added test for good sudoers-entry

  02 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  working wakeup time setting

  02 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  Install shutdown config file

  02 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  install shutdown control scripts

  02 Oct 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog,
  etc/conf.d/vdr, +etc/conf.d/vdr.shutdown:
  first try of shutdown-scripts

  12 Sep 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  Bugfixed parameter handling.

*gentoo-vdr-scripts-0.1_alpha4 (12 Sep 2005)

  11 Sep 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  enables >=vdr-1.3.32 to use vfat runtime option

  09 Sep 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  create missing video directory at start

  09 Sep 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  moved default video directory to /var/vdr/video

*gentoo-vdr-scripts-0.1_alpha3 (09 Sep 2005)

  07 Sep 2005; Matthias Schwarzott <zzam@gentoo.org>:
  made time calculation for acpi more correct

  31 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  fixed typo

  31 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  added setting of startup volume and channel

  29 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  small cleanup of config file

  25 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  added vdr option --terminal

  18 Aug 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  external watchdog per default off

  18 Aug 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  added options for setting infra-red control type

  17 Aug 2005; Matthias Schwarzott <zzam@gentoo.org> ChangeLog:
  changed comments and config-file-settings for watchdogs to make the
  difference intern vdr watchdog - extern watchdog more clear

*gentoo-vdr-scripts-0.1_alpha2 (14 Aug 2005)

  14 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  enabled watchdog to automagically find and reload dvb driver modules

  14 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  added watchdog handling
  introduced debug-level, to hide some output messages

  13 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  corrected creation of commands.conf

*gentoo-vdr-scripts-0.1_alpha1 (12 Aug 2005)

  12 Aug 2005; Matthias Schwarzott <zzam@gentoo.org>:
  added script for creation of commands.conf
  and reccmds.conf files

  27 Jul 2005; Matthias Schwarzott <zzam@gentoo.org>:
  First created package of scripts.
  Scripts are from either me or
  imported from gentoo.de repository