~ubuntu-branches/ubuntu/lucid/xscreensaver/lucid

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
xscreensaver (5.08-0ubuntu4) karmic; urgency=low

  * Install fewer screensavers by default. (LP: #385850)
   - Move all screensavers except fiberlamp, fuzzyflakes,
     antspotlight, glblur, glcells, glmatrix, glschool,
     glslideshow, gltext, and hypertoru to the extra
     packages.
  * Add files split-hacks.sh and split-hacks.config in /debian
    inorder to simplfy moving screensavers between packages. Patch 
    from Debian (Thanks to Tormod Volden):
    http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=539937
  * debian/control:
    - Make xscreensaver-data and xscreensaver-data-extra replace each other
      as files have moved between the two packages. The same is done for
      xscreensaver-gl and xscreensaver-gl-extra

 -- Andrew Starr-Bochicchio <a.starr.b@gmail.com>  Wed, 09 Sep 2009 10:59:31 +0200

xscreensaver (5.08-0ubuntu3) karmic; urgency=low

  * Added an apport package hook (LP: #398007) 

 -- Brian Murray <brian@ubuntu.com>  Mon, 13 Jul 2009 10:22:54 -0700

xscreensaver (5.08-0ubuntu2) karmic; urgency=low

  * Included patch for Phosphor segfault (LP: #357556)

 -- Timothy Pearson <kb9vqf@ubuntu.com>  Mon, 29 June 2009 12:07:00 -0600

xscreensaver (5.08-0ubuntu1) karmic; urgency=low

  * New upstream release (LP: #392374)
    - New hack, `photopile'.
    - Rewrote `sonar' and `jigsaw' as OpenGL programs.
    - Minor tweaks to `maze', `m6502', `hypnowheel', and `timetunnel'.
    - Savers that load images now obey EXIF rotation tags.
    - Arrgh, more RANDR noise!  Fixes this time for rotated screens, and for
      systems where RANDR lies and says the screen size is 0x0.
    - When the password dialog has timed out or been cancelled, don't pop it
      right back up a second time.
    - Password timeouts/cancels don't count as "failed logins".
    - Retired some of the older, less interesting savers:
      say goodbye to `bubbles', `critical', `flag', `forest',
      `glforestfire', `lmorph', `laser', `lightning', `lisa',
      `lissie', `rotor', `sphere', `spiral', `t3d', `vines',
      `whirlygig', and `worm'.
    - Merged `munch' and `mismunch'.
    - Updated `webcollage' to use twitpics.com as well.
  * debian/patches/20_hacks_Makefile.patch:
    - Refreshed
  * debian/patches/24_hacks_xsublim_enable.patch:
    - Refreshed
  * debian/patches/25_xsublim_missing_man_page.patch
    - Put back removed man page
  * debian/patches/53_XScreenSaver.ad.in.patch:
    - Refreshed
  * debian/screensavers-desktop-files/*:
    debian/xscreensaver.files:
    debian/xscreensaver-data-extra.files:
    debian/xscreensaver-gl-extra.files:
    - Updated for new/removed/changed screensavers
  * debian/control: Added Bzr link

 -- Robert Ancell <robert.ancell@canonical.com>  Mon, 29 Jun 2009 09:30:05 +0200

xscreensaver (5.07-0ubuntu3) intrepid; urgency=low

  * Drop xli | xloadimage recommends to universe. Both are in universe, and
    xli is orphaned in Debian.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Thu, 23 Oct 2008 12:17:08 +0200

xscreensaver (5.07-0ubuntu2) intrepid; urgency=low

  * Restore the fix from 5.05-1ubuntu2, which was lost in the latest
    merge:
  * xscreensaver-gl and xscreensaver-gl-extras Recommend xscreensaver |
    gnome-screensaver rather than merely xscreensaver, so that germinate
    won't pull xscreensaver into the desktop (LP: #242495).

 -- Steve Langasek <steve.langasek@ubuntu.com>  Wed, 08 Oct 2008 23:07:41 +0000

xscreensaver (5.07-0ubuntu1) intrepid; urgency=low

  * Upgrade upstream version
  * debian/control: Remove suggest xdaliclock as it is no longer
    included
  * Remove 10_jwz-screensaver-randr-patch-3.patch as it has been merged
    upstream.
  * Add 24_hacks_xsublim_enable.patch as it seems that xsublim was dropped
    from the build files.  There is nothing in the Changelog about it
    so I believe it was accidental.
  * Updating the .desktop files from the XML files using gnome-screensaver's
    utility to do so.  Lots of text updates.  Also:
      * Added: abstractile.desktop
      * Added: cwaves.desktop
      * Added: m6502.desktop
      * Added: skytentacles.desktop
      * Removed: xteevee.desktop
  * xscreensaver-gl-extra.files: Added skytentacles
  * xscreensaver-data-extra.files: Added abstractile, cwaves and m6502
  * xscreensaver-data.files: Remove partial abstractile, m6502 and cwaves

 -- Ted Gould <ted@ubuntu.com>  Thu, 28 Aug 2008 16:15:25 -0500

xscreensaver (5.05-3ubuntu1) intrepid; urgency=low

  * Merge in changes from Debian packaging (in Changelog below)
  * debian/control: Reset build depends to be easier to merge with
    Debian in the future.
  * debian/xscreensaver-gl.files: Reorder files to make merges with
    Debian easier in the future.
  * Removing patch 70_demo_gtk_stfu_removal.patch as the work it was doing
    is now being done by the patch 10_jwz-xscreensaver-randr-patch-3.patch
  * Removing patch 90_ubuntu-xscreensaver-desktop.patch as the work it was 
    doing is now being done by the patch
    10_jwz-xscreensaver-randr-patch-3.patch

 -- Ted Gould <ted@ubuntu.com>  Thu, 28 Aug 2008 10:50:54 -0500

xscreensaver (5.05-3) unstable; urgency=low

  [ Tormod Volden ]
  * debian/patches/10_jwz-xscreensaver-randr-patch-3.patch:
    from upstream, addresses issues with xrandr/xinerama
    (Closes: #482385, #428797, #471920, #453708, #473681, #479715, #480231)
  * fixed typo "screen < real_nscreens" in driver/lock:1527 from above patch
  * drop 61_DualHead-nVidia_bug471920.patch (obsolete)
  * drop 67_XineRama-mode_bug473681.patch (obsolete)
  * fix m6502.o typo in hacks/Makefile.in
  * refresh 53_XScreenSaver.ad.in.patch
  * refresh (disabled) 60_add-ant-hack.patch

  [ Jose Luis Rivas ]
  * add xscreensaver-demo desktop file, thanks to Daniel Dickinson
    (Closes: #480592)
  * update package descriptions (thanks jwz)
  * fix categories in xscreensaver.menu
  * change build-deps from xlibmesa-gl-dev to libgl1-mesa-dev,
    xutils to xutils-dev, x-dev to x11proto-core-dev.
  * bump Standards-Version to 3.8.0
  * add Vcs fields and Homepage to debian/control
  * Flurry is not installed until the bug get fixed (Closes: #484112)

 -- Jose Luis Rivas <ghostbar38@gmail.com>  Tue, 15 Jul 2008 14:48:48 -0430

xscreensaver (5.05-2) unstable; urgency=low

  * (this version was not published)
  * debian/rules: Add `--with-proc-interrupts' to the configure command.
    (Closes: #354559)
  * debian/patches/61_DualHead-nVidia_bug471920.patch:
    Thanks to Vincent Crevot (Closes: #471920)
  * debian/patches/67_XineRama-mode_bug473681.patch:
    Thanks to Lionel Elie Mamane (Closes: #473681)
  * create debian/watch
  * debian/control: fix libpam0g deps to use >= 0.72 instead of >=0.72-1
  * debian/xscreensaver.pam:
    Add common-account for handling account service type (Closes: #475861)

 -- Jose Luis Rivas <ghostbar38@gmail.com>  Fri, 11 Apr 2008 11:56:14 -0430

xscreensaver (5.05-1ubuntu2) intrepid; urgency=low

  * xscreensaver-gl and xscreensaver-gl-extras Recommend xscreensaver |
    gnome-screensaver rather than merely xscreensaver, so that germinate
    won't pull xscreensaver into the desktop (LP: #242495).

 -- Colin Watson <cjwatson@ubuntu.com>  Fri, 04 Jul 2008 17:18:38 +0100

xscreensaver (5.05-1ubuntu1) intrepid; urgency=low

  * Added 70_demo_gtk_stfu_removal.patch to remove some more cases where
    the STFU macro is used such that when the #defines it's used on change
    the compile breaks.  Bad coding style.
  * Removing 82_ubuntu-texturl-fridge.patch in favor of updating the
    53_XScreenSaver.ad.in.patch to include the Ubuntu branding instead
    of the Debian branding.  This should make merges easier as long as
    we use something smart like Bazaar.  Also the Debian version has lots
    of good changes like making it work with /etc/alternates which we
    didn't have.
  * Removing 54_driver_demogtk.patch as it was merged upstream.

 -- Ted Gould <ted@ubuntu.com>  Tue, 17 Jun 2008 09:41:41 -0700

xscreensaver (5.05-1) unstable; urgency=low

  * New upstream release. 
    - fixed overlapping with Xinerama. (Closes: #453708)
    - fixed double-buffering in cubestorm and noof (Closes: #310157)
    - don't warn about about bogus ClientMessages of GNOME (Closes: #191530)
  * debian/control:
    - Added which hacks are in which package to the description field of each
      package. (Closes: #469108)
    - Added a warning that xss-data-extra ships webcollage and may download
      porn from the internet without appropriate filters. (Closes: #458145)
    - Added conflicts with kscreensaver-xsavers previous to 4:3.5.9-1 to
      avoid breakage for KDE users after the package split in 5.04-3.
      (Closes: #469099)
    - Deleted a superfluous x-dev build-depend.
  * debian/screensaver-desktop-files: Added desktop files for cubicgrid,
    hypnowheel and lcdscrub (new hacks)
  * debian/patches/50_driver_screensaver-properties-desktop.patch:
    Use the svg icon we ship in xscreensaver.svg
  * debian/xscreensaver-data-extra.files: Added new hack lcdscrub, removed
    ant hack. (See note below about 60_add-ant-hack.patch)
  * debian/xscreensaver-gl-extra.files: Added new hacks hypnowheel and
    cubicgrid.
  * debian/patches/53_XScreenSaver.ad.in.patch: Extract from the disabled
    52_driver_XScreenSaver.ad.in.patch fixing the gnome-terminal dependency
    (Closes: #470466).
  * debian/patches/60_add-ant-hack.patch: Deactivated for the moment, there
    were several new changes in Makefile.in and XScreenSaver, besides,
    ant doesn't have a man page and hasn't been shipped for a long time.
    Will not be shipped until we find a way to actually make it fit the new
    upstream code.
  * debian/patches/70_fade_oversleep.patch: Dropped, applied upstream.
  * debian/patches/71_endgame_whiter_colour.patch: Dropped, applied upstream.
  * debian/patches/series: Cleaned up.

 -- Jose Luis Rivas <ghostbar38@gmail.com>  Tue, 11 Mar 2008 22:45:00 -0430

xscreensaver (5.04-4ubuntu1) hardy; urgency=low

  * Merge from debian unstable, remaining changes: (LP: #201626)
    - debian/control: add Build-Depends on ubuntu-artwork
    - debian/rules: use /usr/share/backgrounds
    - 82_ubuntu-texturl-fridge.patch: use Ubuntu fridge for rss
    - 91_ubuntu-no-pam-conf: don't ship pam.conf
    - 70_ubuntu-xscreensaver-desktop.patch: name the xscreensaver desktop
      file for what it is to not confuse it with gnome-screensaver
    - debian/rules: don't hide the xscreensaver desktop icon if the
      user insists on installing xscreensaver (LP: #86416)
    - 54_drivers_demogtk.patch: Patching a compile failure with
      GTK+ in Hardy
    - 28_rotate.patch: Add in the gdk pixbuf function to rotate JPEGs and
      TIFFs so that they're the right direction
    - debian/control: Increasing the GTK+ version to 2.12 for the patch
      28_rotate.patch
    - glslideshow.desktop: Changing so that it shows only one image, one
      time and no extra black on the edges.
  * Fixed upstream:
    - install xscreensaver-properties.desktop to right place (LP: #201481)
    - remove planetary-gears screensaver (LP: #196360)

 -- Tormod Volden <debian.tormod@gmail.com>  Thu, 06 Mar 2008 11:01:03 +0100

xscreensaver (5.04-4) unstable; urgency=low

  * debian/control: Add replaces/conflicts to fix upgrades (Closes: #468899)
  * corrected previous changelog entry on xscreensaver-gl-extra

 -- Tormod Volden <debian.tormod@gmail.com>  Sun, 02 Mar 2008 11:41:13 +0100

xscreensaver (5.04-3) unstable; urgency=low

  [ Tormod Volden ]
  * (From Ubuntu) Include .desktop files for hacks (Closes: #410095)
  * debian/xscreensaver-data.files: Skip .desktop file for popsquares
    for now until conflict is sorted out with gnome-screensaver that
    also ships it
  * dropped planetary_gears.desktop (gears goes planetary randomly
    and has no command option for it)
  * 60_add-ant-hack.patch: restore "ant" (disabled upstream in 4.23)
  * Add .desktop description for "ant"
  * (From Ubuntu) Split xscreensaver package into:
    - xscreensaver (core backend without hacks)
    - xscreensaver-data (standard hacks)
    - xscreensaver-data-extra (hacks not installed by default)
  * (From Ubuntu) Split xscreensaver-gl package into:
    - xscreensaver-gl (standard GL hacks)
    - xscreensaver-gl-extra (GL hacks not installed by default)
  * 70_fade_oversleep.patch: don't hang on resume (Closes: #454523)
  * 71_endgame_whiter_colour.patch: better contrast (Closes: #463345)

  [ Jose Luis Rivas ]
  * debian/xscreensaver-gl.files: Deleted interplanetary-gears.desktop since
  it's not shipped.

 -- Jose Luis Rivas <ghostbar38@gmail.com>  Fri, 29 Feb 2008 18:53:35 -0430

xscreensaver (5.04-2ubuntu2) hardy; urgency=low

  * 54_drivers_demogtk.patch: Patching a compile failure with
     GTK+ in Hardy
  * 28_rotate.patch: Add in the gdk pixbuf function to rotate JPEGs and
     TIFFs so that they're the right direction
  * debian/control: Increasing the GTK+ version to 2.12 for the patch
     28_rotate.patch
  * glslideshow.desktop: Changing so that it shows only one image, one
     time and no extra black on the edges.

 -- Ted Gould <ted@ubuntu.com>  Wed, 23 Jan 2008 19:00:20 +0000

xscreensaver (5.04-2ubuntu1) hardy; urgency=low

  * Merge from debian unstable, remaining changes: (LP: #177126)
    - Split xscreensaver into xscreensaver, xscreensaver-data
      (hacks we ship), xscreensaver-data-extra (hacks in universe).
      Split out GL hacks for universe to xscreensaver-gl-extra
    - create and install .desktop files for gnome-screensaver
    - debian/control: add Build-Depends on ubuntu-artwork
    - debian/rules: use /usr/share/backgrounds
    - 60_ubuntu-add-ant-hack.patch: bring back ant hack
    - 62_ubuntu-texturl-fridge.patch: use Ubuntu fridge for rss
    - 65_ubuntu-no-pam-conf: don't ship pam.conf
  * 70_ubuntu-xscreensaver-desktop.patch: name the xscreensaver desktop
    file for what it is to not confuse it with gnome-screensaver
  * debian/control: warn about gnome-screensaver conflict in
    xscreensaver package description (LP: #74727)
  * debian/rules: don't hide the xscreensaver desktop icon if the
    user insists on installing xscreensaver (LP: #86416)
  * 60_ubuntu-add-ant-hack.patch refreshed to include "ant" in
    application defaults (LP: #160669)
  * Fixed upstream: glhanoi assertion failure (LP: #71795)

 -- Tormod Volden <debian.tormod@gmail.com>  Tue, 18 Dec 2007 21:40:55 +0100

xscreensaver (5.04-2) unstable; urgency=low

  [ Tormod Volden ]
  * debian/rules:
   + Moved POT generation from clean to build.
   + xscreensaver.svg is now copied from `debian/` at build time.
  * po/xscreensaver.pot:
   + Is now deleted since it is autogenerated.
  * debian/control:
   + Added libxss-dev, libxtst-dev, libxxf86misc-dev and x-dev as
   build depends.
   + Added quilt and removed dpatch from build-depends.
  * debian/patches/00_maindiffwithorig.patch got split up in:
    - 20_hacks_Makefile.patch: add xpm libs for "maze" hack
    - 22_hacks_barcode.patch: make family-friendly
    - 23_hacks_glx_glsnake.patch: make family-friendly
    - 30_hacks_xanalogtv.patch: use logo-50-bad.xpm
    - 31_utils_images_logo-50-bad-xpm.patch: less colours
    - 50_driver_screensaver-properties-desktop.patch: use svg icon

  [ Jose Luis Rivas ]
  * debian/xscreensaver.files:
   + Added m6502 (without manpage at the moment) and abstractile 
   hacks.
  * debian/xscreensaver-gl.files:
   + Added moebiusgears and lockward hacks. (Closes: #454601)
  * debian/control:
   + Added Tormod Volden as Uploader.
   + Updated to 3.7.3 Standards-Version, no modification needed.
  * debian/xscreensaver.install:
   + Now xscreensaver.svg is in `debian/`.

 -- Jose Luis Rivas <ghostbar38@gmail.com>  Sun, 09 Dec 2007 20:37:38 -0430

xscreensaver (5.04-1ubuntu2) hardy; urgency=low

  * Fix build failure with new glib2.0.

 -- Matthias Klose <doko@ubuntu.com>  Fri, 01 Feb 2008 00:25:15 +0100

xscreensaver (5.04-1ubuntu1) hardy; urgency=low

  * Merge from debian unstable, remaining changes:
    - split xscreensaver into xscreensaver, xscreensaver-data (hacks we ship),
      xscreensaver-data-extra (hacks in universe). split out gl hacks for
      universe to xscreensaver-gl-extra
    - use fridge for rss screensavers
    - create and install .desktop files for gnome-screensaver

 -- Oliver Grawert <ogra@ubuntu.com>  Thu, 06 Dec 2007 09:53:12 +0000

xscreensaver (5.04-1) unstable; urgency=low

  * New upstream release
  * David Moreno Garza (damog) removed from Uploaders field.
  * Fixed authentication bypass (CVE-2007-5585) by upstream (closes: #448157)

 -- Jose Luis Rivas <ghostbar38@gmail.com>  Mon, 26 Nov 2007 14:04:52 -0400

xscreensaver (5.03-3.1) unstable; urgency=high

  * Non-maintainer upload by the testing-security team
  * Include upstream patch to fix crash with gl screensavers, which
    leads to an authentication bypass (Closes: #448157)
    Fixes: CVE-2007-5585

 -- Steffen Joeris <white@debian.org>  Fri, 16 Nov 2007 15:04:15 +1100

xscreensaver (5.03-3) unstable; urgency=low

  * Added `gdm' to the Build-Depends field since is needed to build with
  gdmflexiserver support. (Closes: #436010)
  * The config problems doesn't exists anymore since there's now the original
  XML file, so no changes needed. (Closes: #367791, #405266).
  * debian/rules:
   + Added a line that adds "NoDisplay=true" to 
   gnome-screensaver-properties.desktop. (Closes: #435446)

 -- Jose Luis Rivas <ghostbar38@gmail.com>  Sat, 04 Aug 2007 16:25:39 -0400

xscreensaver (5.03-2) unstable; urgency=low

  * debian/rules, debian/xscreensaver.files, debian/xscreensaver-gl.files:
   + Adding again the `x` at the end of each manpage. 
   (Closes: #435035)

 -- Jose Luis Rivas <ghostbar38@gmail.com>  Sun, 29 Jul 2007 02:22:49 -0400

xscreensaver (5.03-1) unstable; urgency=low

  * New maintainer and uploader (Closes: #428813, #428798)
  * New upstream version packaged (Closes: #407886)
  * No error during authentication (Closes: #180063)
  * No more waiting until mouse moves for starting. (Closes: #257092)
  * Flurry now runs OK. (Closes: #296552)
  * No more crashes during exit of `xscreensaver' (Closes: #273180)
  * Xscreensaver has changed a lot how works with the pam_module and it seems
  as does not ask for password anymore if is not required. (Closes: #303368)
  * XScreensaver turns off both screens if is used with Dual-head on laptops
  tested on a HP and a Siragon notebook. (Closes: #337100)
  * Currently XScreensaver request password everytime, even if Power management
  is enabled. (Closes: #330971)
  * XScreensaver does not longer ignores settings on ~/.xscreensaver anymore
  and modifying settings with `xscreensaver-demo' will save your settings as 
  should and will not be restarted. (Closes: #316931)
  * xscreensaver does properly requests passwords and proccess them as should 
  if that's the case. (Closes: #368600)
  * Now images are rotated as should when using carousel with the EXIF data of
  each JPEG archive. (Closes: #375488)
  * Fontglide is running OK without fonts issues. (Closes: #393140)
  * The apple2 hack was tested and there's no problem. (Closes: #423560)
  * Webcollage renders properly and add images to the collage without emptying
  the screen (tested with nv, nvidia and vesa drivers). (Closes: #317383)
  * Added the `unlock' button to login box. (Closes: #326733)
  * debian/control:
    + Deleted `Uploaders' field.
    + Changed `Maintainer' name and email.
    + Replaced build-depend on `xlibs-data' with `xbitmaps'. (Closes: #419022)
    + Updated `Standard-Versions' to 3.7.2, no changes needed.
    + Added Build-Depend on `dpatch'.
    + Updated `xscreensaver-gl' description with `X.Org' instead of `XFree'.
    + Moved `netpbm' to Depends from Suggests of xscreensaver since it's used by
    packages on `xscreensaver'. (Closes: #376982)
  * debian/rules:
    + Included `dpatch.make' for patching.
    + Changed targets to fits `dpatch' functioning.
    + Changed the way as config.{sub|guess} is deleted, now is moved so isn't 
    showed in the final `diff.gz'.
  * debian/xscreensaver.files:
    + Removed line for adding `gnome-screensaver-properties.desktop' since 
    GNOME ships their own screensaver and the menu entrie in preferences should
    not be added, users should use the another menu entrie. (Closes: #390672)
    + Added new hack `cwaves'.
    + Removed the `x's at the end of every manpage line.
  * debian/xscreensaver-gl.files:
    + Removed the `x's at the end of every manpage line.
    + Added new hacks: `glcells', `glschool', `topblock' and `voronoi'.
  * debian/changelog:
    + Version created and no data modified, was modified in a NMU (4.23-1.1)
    changed to 4.23-0.1 according to debian dev-reference. (Was lintian
    warning).
    + Double date on version 1.27-1, removed the old one, I left the october
    one since is the most obvious (Was lintian warning).
  * debian/patches:
    + Created!
  * debian/patches/00_maindiffwithorig.patch:
    + Created! This patch was created with the end to avoid editing original
    tarball as was before, instead patch's should been used.

 -- Jose Luis Rivas <ghostbar38@gmail.com>  Fri, 13 Jul 2007 17:15:43 -0400

xscreensaver (4.24-5ubuntu3) gutsy; urgency=low

  * SECURITY UPDATE: password bypass when using network authentication.
  * driver/lock.c: upstream fixes applied inline.
  * References
    CVE-2007-1859

 -- Kees Cook <kees@ubuntu.com>  Mon, 11 Jun 2007 12:58:25 -0700

xscreensaver (4.24-5ubuntu2) feisty; urgency=low

  * debian/control: 
    -add libjpeg-progs, netpbm to xscreensaver-data-extras
    Depends. WebCollage needs them (LP: #61775)

 -- Timo Aaltonen <tepsipakki@ubuntu.com>  Sat,  3 Feb 2007 00:33:40 +0200

xscreensaver (4.24-5ubuntu1) feisty; urgency=low

  * Merge from debian unstable.

 -- Oliver Grawert <ogra@ubuntu.com>  Mon, 30 Oct 2006 13:55:08 +0000

xscreensaver (4.24-5) unstable; urgency=low

  * remove /usr/doc/xscreensaver link to finish /usr/doc ->
    /usr/share/doc transition (closes: #380394)

 -- Ralf Hildebrandt <ralf.hildebrandt@charite.de>  Sat, 29 Jul 2006 23:00:43 +0100

xscreensaver (4.24-4ubuntu2) edgy; urgency=low

  * fix location of the gnome-screensaver .desktop files,
    they need to be in /usr/share/applications/screensavers now

 -- Oliver Grawert <ogra@ubuntu.com>  Fri, 21 Jul 2006 16:33:39 +0200

xscreensaver (4.24-4ubuntu1) edgy; urgency=low

  * Merge from debian unstable.

 -- Oliver Grawert <ogra@ubuntu.com>  Fri, 30 Jun 2006 16:27:21 +0100

xscreensaver (4.24-4) unstable; urgency=low

  * we may be building in an environment (e.g. Debian buildd chroot)
    without a proper /proc filesystem. If /proc/interrupts exists,
    then we'll check that it has the bits we need, but otherwise we'll
    just go on faith. Thanks to <skunk@iSKUNK.ORG> (closes: #356821)

 -- Ralf Hildebrandt <ralf.hildebrandt@charite.de>  Thu, 04 May 2006 11:00:43 +0100

xscreensaver (4.24-3) unstable; urgency=high

  * fix build-deps (closes: #364254)

 -- Ralf Hildebrandt <ralf.hildebrandt@charite.de>  Sun, 23 Apr 2006 11:00:43 +0100

xscreensaver (4.24-2) unstable; urgency=low

  * apply patch "xscreensaver-getimage-video: the first video frame should not always be grabbed" (closes: #357907)
  * fix pong manpage typos (closes: #361686)
  * apply patch "xscreensaver-4.16-sanitize-hacks.patch" (closes: #313492)

 -- Ralf Hildebrandt <ralf.hildebrandt@charite.de>  Tue, 11 Apr 2006 11:00:43 +0100

xscreensaver (4.24-1) unstable; urgency=low

  * new upstream release:
  * New versions of cube21, glsnake, celtic. 
  * Fixed startup crash in getgroups() when running setuid. (closes: #302791)
  * Default to not displaying stderr on the saver window. 
  * Fixed bad free() in `Documentation'' button. 
  * Don't try to run hacks that aren't installed (closes: #350029, #309443)
  * Minor fixes to various XML config files and man pages.
  * fix typo in German PO file (closes: #359067)

 -- Ralf Hildebrandt <ralf.hildebrandt@charite.de>  Sun, 26 Mar 2006 11:00:43 +0100

xscreensaver (4.23-4ubuntu8) dapper; urgency=low

  * disable offending glsnake screensavers (closes malone #36743)
  * remove the .desktop alternative again, after discussing the issue with 
    seb128 i agree its not a bug (rejected malone 32385 alongside)
  * make the fridge the default url for rss feeds (closes malone #34829)
  * fix xscreensaver-data.postrm to point to the right config if xscreensaver-gl 
    is still installed (closes malone #33748)
  * added dictionaries-common to xscreensaver-data-extra dependencys (closes
    malone #6498)

 -- Oliver Grawert <ogra@ubuntu.com>  Thu, 18 May 2006 12:09:48 +0200

xscreensaver (4.23-4ubuntu7) dapper; urgency=low

  * make preferences .desktop file an alternative, so it wont be shown if
    gnome-screensaver is installed and selected as alternative

 -- Oliver Grawert <ogra@ubuntu.com>  Thu, 16 Mar 2006 14:21:14 +0100

xscreensaver (4.23-4ubuntu6) dapper; urgency=low

  * add gnome-screensaver planetary_gears.desktop helper file to
    xscreensaver-gl closes malone 33754

 -- Oliver Grawert <ogra@ubuntu.com>  Sun,  5 Mar 2006 03:13:36 +0100

xscreensaver (4.23-4ubuntu5) dapper; urgency=low

  * debian/rules: Add gettext domain to .desktop files to get language pack
    support for them.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Fri, 24 Feb 2006 10:17:03 +0100

xscreensaver (4.23-4ubuntu4) dapper; urgency=low

  * make xscreensaver use /usr/share/backgrounds as default 
    (compile time option) location for image processing screensavers
    and enable random images in the default config (adds build dep to
    ubuntu-artwork that creates this dir. to be moved to a combination
    of a screensaver specific subdir and an ubuntu-artwork-screensaver
    package for default images)
  * move the default config to the -data .deb so it applies for hacks without
    having xscreensaver installed adjust postinst and postrm files accordingly
  * split out packages xscreensaver-data-extra and xscreensaver-gl-extra so
    xscreensaver-data and xscreensaver-gl only contain the hacks we want to
    ship which gains us 5 megabytes on the CD (install the -extra files to get
    the full set of hacks as before)
  * make planet.ubuntu.com the default rss source for rss reading screensavers
  * make sure the ant screensaver is built and installed 

 -- Oliver Grawert <ogra@ubuntu.com>  Mon, 20 Feb 2006 18:41:15 +0100

xscreensaver (4.23-4ubuntu3) dapper; urgency=low

  * add missing gnome-screensaver .desktop helper files to
    xscreensaver-data and xscreensaver-gl

 -- Oliver Grawert <ogra@ubuntu.com>  Sun, 19 Feb 2006 03:05:32 +0100

xscreensaver (4.23-4ubuntu2) dapper; urgency=low

  * fixed build dependencys 

 -- Oliver Grawert <ogra@ubuntu.com>  Mon,  6 Feb 2006 14:05:03 +0100

xscreensaver (4.23-4ubuntu1) dapper; urgency=low

  * merge with debian

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 17 Jan 2006 02:20:00 +0100

xscreensaver (4.23-4) unstable; urgency=high

  * replace xlibs-dev build-depend with the individual libraries that
    the package actually build-depends on (closes: #346855).

 -- Ralf Hildebrandt <ralf.hildebrandt@charite.de>  Mon, 09 Jan 2006 11:00:43 +0100

xscreensaver (4.23-3) unstable; urgency=low

  * driver/timers.c: back out a change from 4.23 leading to screen
    blanking even though the keyboard is in use (closes: #336368).
  * Build-depend on autotools-dev.
  * driver/XScreenSaver.ad.in:
    + Restore RSS modifications that disappeared unexpectedly in a
      previous upload.
    + Now use planet.debian.org instead of .net.
    + Set the newLoginCommand here, not trusting the result of the
      configure test, making the configure.in patch unnecessary
      (closes: #336590).
    + Force gdmflexiserver to start a new flexible X server
      (closes: #337760).
  * utils/images/logo-50-bad.xpm: this is a stripped down (64 colors) 
    version of the logo.
  * hacks/xanalogtv.c: use this version instead (closes: #304344).

 -- Josselin Mouette <joss@debian.org>  Fri,  9 Dec 2005 00:53:01 +0100

xscreensaver (4.23-2ubuntu4) dapper; urgency=low

  * Bump the versioned xscreensaver-data -> xscreensaver Replaces to
    catch the latest file overwrite and allow upgrades to go smoothly.

 -- Adam Conrad <adconrad@ubuntu.com>  Thu,  8 Dec 2005 16:00:22 +1100

xscreensaver (4.23-2ubuntu3) dapper; urgency=low

  *  and actually upload the right source package ...

 -- Oliver Grawert <ogra@ubuntu.com>  Wed,  7 Dec 2005 22:49:24 +0100

xscreensaver (4.23-2ubuntu2) dapper; urgency=low

  * remove the config/README file from the xscreensaver package
    and move it to xscreensaver-data where it belongs

 -- Oliver Grawert <ogra@ubuntu.com>  Wed,  7 Dec 2005 19:58:48 +0100

xscreensaver (4.23-2ubuntu1) dapper; urgency=low

  * resyncronize with debian (drop most ubuntu changes, we'll
    only support the hacks we ship for gnome-screensaver)
  * split out the xscreensaver-data package again
  * fix build dependencys to match ubuntu
  * add a set of .desktop files for selected hacks for usage
    of the xscreensaver-data package with gnome-screensaver

 -- Oliver Grawert <ogra@ubuntu.com>  Wed, 16 Nov 2005 00:23:02 +0100

xscreensaver (4.23-2) unstable; urgency=low

  * Apply NMU patch (why was there an NMU? Hello? Talk to me before doing an NMU!) (Closes: #334193)
  * Fix typo in tangram man page (Closes: #336432)
  * Found out that the upstream already applied the "grayscale option patch" to bubbles (Closes: #331248)
  * Suggest xfishtank (Closes: #335589)

 -- Ralf Hildebrandt <ralf.hildebrandt@charite.de>  Sun, 30 Oct 2005 14:43:43 +0100

xscreensaver (4.23-1.1) unstable; urgency=high

  * NMU.
  * should not kill running xscreensavers (Close: #334193)

 -- Emfox Zhou <EmfoxZhou@gmail.com>  Sun, 30 Oct 2005 01:54:04 +0800

xscreensaver (4.23-1) unstable; urgency=low

  * new upstream (closes: #308668, #195727, #322752, #305528)
    
 -- Ralf Hildebrandt <ralf.hildebrandt@charite.de>  Wed, 26 Sep 2005 15:23:43 +0200

xscreensaver (4.23-0.1) unstable; urgency=high

  * NMU.
  * should not kill running xscreensavers (Close: #334193)

 -- Emfox Zhou <EmfoxZhou@gmail.com>  Sun, 30 Oct 2005 01:54:04 +0800

xscreensaver (4.23-1) unstable; urgency=low

  * new upstream (closes: #308668, #195727, #322752, #305528)
    
 -- Ralf Hildebrandt <ralf.hildebrandt@charite.de>  Wed, 26 Sep 2005 15:23:43 +0200

xscreensaver (4.21-7) unstable; urgency=low

  * fixed fubared patch in lines 1596 to 1603 of file "driver/prefs.c" (closes: #323841)
    thanks to Arnaud Giersch
    
 -- Ralf Hildebrandt <ralf.hildebrandt@charite.de>  Thu, 22 Sep 2005 23:23:43 +0200

xscreensaver (4.21-6) unstable; urgency=low

  * patch against stop_the_insanity() (closes: #323841)
  * patch typo in the whirlygig.6x man page (closes: #326534)
  * patch against run_hack() in driver/demo-Gtk.c (closes: #302777)
  * fix dependencies (closes: #318512)
  * closing old stuff that's already fixed (closes: #118089, #118881, #137073, #145814, #129124)
  * closing old stuff that's WONTFIX (closes: #127276)
  * relax dependency on netpbm (closes: #320446)
  * fix build dependencies for gl and glu
  * fix lintian bugs about debian-control-with-duplicate-fields conflicts: 12, 15
  * fix lintian bug (man pages for flow and intermomentary)
  * fix lintian bug syntax-error-in-debian-changelog line 313 "unrecognised line"

 -- Ralf Hildebrandt <ralf.hildebrandt@charite.de>  Mon, 19 Sep 2005 11:20:43 +0200

xscreensaver (4.21-5) unstable; urgency=low

  * debian/control, debian/rules: remove legacy xscreensaver-gnome and
    xscreensaver-nognome packages.
  * Patch from Martin Pitt <martin.pitt@ubuntu.com> to generate a POT file
    during the package build (closes: #313530):
    + debian/control: build-depend on intltool.
    + debian/rules: run intltool-update in the clean target.
    + po/POTFILES.in: remove driver/xscreensaver-demo.glade which does not
      exist any more.
  * debian/xscreensaver.links: removed, unneeded with GNOME 2.10
    (closes: #312044).
  * po/de.po: patch from Jens Seidel <jensseidel@users.sf.net>
    (closes: #313870).

 -- Josselin Mouette <joss@debian.org>  Wed, 15 Jun 2005 00:34:23 +0200

xscreensaver (4.21-4ubuntu17) breezy; urgency=low

  * updated pt_BR again, fixed to UTF-8

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 11 Oct 2005 21:00:42 +0200

xscreensaver (4.21-4ubuntu16) breezy; urgency=low

  * change new login command to "gmflexiserver -sl" to avoid pop unders
    with multiple locked sessions (#16195)
  * add dependency on ttf-freefont for dots in the lock dialog (#16954)
  * disable webcollage screensaver hack in the settings to prevent
    potential for offensive content (#15847)
  * fixed typo and wrong order of strings in pt_BR translation in
    .desktop file (#16448)
  * fixed tooltip for german translation of .desktop file

 -- Oliver Grawert <ogra@ubuntu.com>  Mon, 10 Oct 2005 01:19:40 +0200

xscreensaver (4.21-4ubuntu15) breezy; urgency=low

  The "all your workhours belong to us" release

  * addded new lock dialog
  * fixed the Replaces line in xscreensaver-data

 -- Oliver Grawert <ogra@ubuntu.com>  Fri, 30 Sep 2005 02:36:55 +0200

xscreensaver (4.21-4ubuntu14) breezy; urgency=low

  * reverted the split
  * added xscreensaver-text and xscreensaver-getimage-* to the -data
    package

 -- Oliver Grawert <ogra@ubuntu.com>  Mon, 19 Sep 2005 19:29:05 +0200

xscreensaver (4.21-4ubuntu13) breezy; urgency=low

  * remove the Conflicts again (not necessary)
  * split out a xscreensaver-utils package for xscreensaver-text and
    xscreensaver-getimage-*
  * added build dependency on libxxf86vm-dev for xinerama support

 -- Oliver Grawert <ogra@ubuntu.com>  Mon, 19 Sep 2005 12:43:06 +0200

xscreensaver (4.21-4ubuntu12) breezy; urgency=low

  * add missing Replaces and Conflicts to xscreensaver-data

 -- Oliver Grawert <ogra@ubuntu.com>  Fri, 16 Sep 2005 17:11:18 +0200

xscreensaver (4.21-4ubuntu11) breezy; urgency=low

  * split out a xscreensaver-data package for usage with
    gnome-screensaver

 -- Oliver Grawert <ogra@ubuntu.com>  Fri, 16 Sep 2005 13:34:16 +0200

xscreensaver (4.21-4ubuntu10) breezy; urgency=low

  * changed the lockscreen background to something more conservative
    closes #14571

 -- Oliver Grawert <ogra@ubuntu.com>  Mon, 12 Sep 2005 12:35:31 +0200

xscreensaver (4.21-4ubuntu9) breezy; urgency=low

  * added lockscreen beautification patch, libfreetype6-dev and dpatch
    build dependencys
  * added ltsp_blankonly patch to make the screen not show expensive
    screensavers over the net if we run a ltsp client

 -- Oliver Grawert <ogra@ubuntu.com>  Thu,  1 Sep 2005 17:37:51 +0200

xscreensaver (4.21-4ubuntu8) breezy; urgency=low

  * Rebuild for the libcairo1 -> libcairo2 transition.  Whee.

 -- Adam Conrad <adconrad@ubuntu.com>  Sat, 20 Aug 2005 00:42:45 +1000

xscreensaver (4.21-4ubuntu7) breezy; urgency=low

  * Add a build-depend on xmkmf, otherwise we FTBFS trying to install
    our app-defaults to /usr/lib/X11 instead of /etc/X11.

 -- Adam Conrad <adconrad@ubuntu.com>  Thu, 18 Aug 2005 23:25:43 +1000

xscreensaver (4.21-4ubuntu6) breezy; urgency=low

  * Update {build-,}depends for the xorg -> mesa transition.

 -- Adam Conrad <adconrad@ubuntu.com>  Thu, 18 Aug 2005 20:00:05 +1000

xscreensaver (4.21-4ubuntu5) breezy; urgency=low

  * Rebuild to get proper libglu1c2 shlibs dependencies.

 -- Adam Conrad <adconrad@ubuntu.com>  Fri, 17 Jun 2005 07:40:30 +0000

xscreensaver (4.21-4ubuntu4) breezy; urgency=low

  * Added build dependency to intltool.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Fri, 10 Jun 2005 13:30:32 +0000

xscreensaver (4.21-4ubuntu3) breezy; urgency=low

  * po/POTFILES.in: Removed driver/xscreensaver-demo.glade which does not
    exist any more.
  * debian/rules: Automatically generate a POT file.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Fri, 10 Jun 2005 12:18:23 +0000

xscreensaver (4.21-4ubuntu2) breezy; urgency=low

  * new upstream release
  * merge most old changes from 4.16
    - removed duplicated menu entrys
    - use planet.ubuntu.com as default url for the rss screensavers
    - enable the default screensavers warty and hoary had enabled
    - fixed the build dependencys (xlibmesa-gl-dev, libglu-dev-xorg,
      libgle3-dev and libxinerama-dev added)
    - turned on power management
    - turned on screen fade
    - turned off screen grabbers
    - turned of debugging
    - switched the help sytem to yelp
    - removed the "Advanced" category from the .desktop file

 -- Oliver Grawert <ogra@ubuntu.com>  Thu,  2 Jun 2005 16:25:20 +0200

xscreensaver (4.21-4) unstable; urgency=low

  * Fix typos (closes: #301317).
  * Fix typos (closes: #301355)
  * Fix metric assload of typos (closes: #312772, #312769, #312768, #312775, #312773, #312774 ,#312782, #312780)
  * Fix metric assload of typos (closes: #312776, #312777, #312785, #312783, #312784, #312786, #312791, #312789)
  * Fix metric assload of typos (closes: #312797, #312796, #312793, #312795, #312798, #312800, #312802, #312803)
  * Apply jwz's patch to phosphor (closes: #308720)
  
 -- Ralf Hildebrandt <ralf.hildebrandt@charite.de>  Sat, 11 Jun 2005 11:20:43 +0200

xscreensaver (4.21-3) unstable; urgency=low

  * Patch by Joachim Breitner to check more frequently if DPMS kicked in (closes: #303374, #286664).

 -- Ralf Hildebrandt <ralf.hildebrandt@charite.de>  Sat, 09 Apr 2005 00:06:43 +0100

xscreensaver (4.21-2) unstable; urgency=low

  * driver/subprocs.c: revert unuseful patch.
  * hacks/bubbles.h: BUBBLES_IO is unused now.
  * debian/copyright: update copyright dates.
  * configure.in: don't check for gdmflexiserver's location, so that we don't
    have to build-depend on gdm.
  * debian/xscreensaver.postinst:
    + send SIGHUP to all running xscreensaver processes.
    + don't call update-menus twice.
  * improve maintainer scripts.
  * driver/XScreenSaver.ad.in: use url mode by default, pointing to
    planet.debian.net's RSS feed.
  * driver/xscreensaver-text: fall back to text file mode when an URL isn't
    found.
  * hacks/webcollage: remove moot patch.
  * driver/Makefile.in, hacks/Makefile.in, hacks/glx/Makefile.in: patch from
    upstream, to avoid patching all the man files.
  * hacks/*.man, hacks/glx/*.man: this makes all these patches unnecessary.
  * hacks/vidwhacker: remove unuseful patch.
  * debian/rules: install debian/changelog even in dummy packages.

 -- Josselin Mouette <joss@debian.org>  Thu, 24 Mar 2005 00:06:43 +0100

xscreensaver (4.21-1) unstable; urgency=low

  * New upstream release (closes: #300804).
    + Correctly repaints the preferences window (closes: #165834).
    + Includes a button to launch gdmflexiserver (closes: #276142).
  * Add myself as a co-maintainer.
  * Update config.guess and config.sub.
  * A bit of cleanup in debian/rules and others.
  * Install a new, SVG logo, based on a (LGPL) Nuvola icon. Use it in the
    menu and replace the XPM logos by pixmaps generated from it.
  * Remove the extra .desktop files (closes: #258955).
  * Enable gdmflexiserver in the configure arguments.
  * Tuning in XScreenSaver.ad.in:
    + Enable DPMS by default.
    + Enable locking by default after some time.
    + Disable grabbing of desktop images (for obvious security reasons).
    + Use fortune by default, not some nonexistent README file.

 -- Josselin Mouette <joss@debian.org>  Tue, 22 Mar 2005 01:20:40 +0100

xscreensaver (4.20-2) unstable; urgency=low

  * Alphabetically sorted *.files, closes: #129265
  * fixed spelling of description, closes: #125564
  * fixed manpage of boxed, closes: #244786
  * fixed manpage of glsnake, closes: #222833
  * 4.20 upstream closes even more bugs, closes: #279982
  * made ISO 8601 time format the default, closes: #279982, #299890
  * Debian has /etc/alternatives which the Gnome and KDE packages use
    Thus XScreensaver should use x-www-browser and x-terminal-emulator
    instead of gnome-terminal and the like, closes: #300285, #276648
  * No more typos in configure.in, closes: #134722
  * Fix in upstream: as of xscreensaver 4.18, if it can't grab both the keyboard and
    mouse, it does not blank the screen.  This means that if you are
    running rdesktop or some long-keyboard-grabbing program, xscreensaver
    will never lock your screen until that grab is released.
    This is still bad, obviously, but perhaps it will confuse people less,
    and -- perhaps -- failing to lock at all is less bad than accidentally
    typing passwords at the wrong window, closes: #105995

 -- Ralf Hildebrandt <ralf.hildebrandt@charite.de>  Sat, 19 Mar 2005 11:06:00 +0100

xscreensaver (4.20-1) unstable; urgency=low

  * New upstream version, closes: #260697, #162390, #235852, #238549,
    #107549, #280513, #286076, #256765, #292283, #280652, #260160
  * KDE xscreensaver.kss was removed in the upstream version
  * fixed various complaints that lintian threw out (fix inconsistent manpages)
  * added manpage for screensaver-properties-capplet (just to have one)
  * applied patch from #222734, closes: #222734
  * added a non-virtual wordlist package to Suggests:, closes #271283
  * changed french localization in one spot, closes: #220204

 -- Ralf Hildebrandt <ralf.hildebrandt@charite.de>  Mon, 14 Mar 2005 08:30:00 +0100

xscreensaver (4.16-1) unstable; urgency=low

  * New upstream version, closes: closes: #250065, #245128, #244468
  * Add build dependency on xlibs-dev, closes: #251621

 -- Karl Ramm <kcr@debian.org>  Sat, 12 Jun 2004 00:15:10 -0400

xscreensaver (4.15-1) unstable; urgency=low

  * New upstream version, closes: #232932, #233457

 -- Karl Ramm <kcr@debian.org>  Thu,  4 Mar 2004 20:21:41 -0500

xscreensaver (4.14-4) unstable; urgency=low

  * disable the traditional password checking code; only use paim.
    closes: #171453

 -- Karl Ramm <kcr@debian.org>  Sun,  2 Nov 2003 14:42:11 -0500

xscreensaver (4.14-3) unstable; urgency=low

  * commit the control file to accomplish the conflicting mentioned
    previously.  my bad.  closes: #218440

 -- Karl Ramm <kcr@debian.org>  Fri, 31 Oct 2003 13:20:59 -0500

xscreensaver (4.14-2) unstable; urgency=low

  * Build the extrusion hack.  closes: #217603, #127067
  * Fix a cvs fumble. closes: #217753
  * xscreensaver-gl: conflict with versions of xscreensaver << 4.14-2 due
    to relocation of extrusion manpage.

 -- Karl Ramm <kcr@debian.org>  Thu, 30 Oct 2003 00:28:02 -0500

xscreensaver (4.14-1) unstable; urgency=low

  * New upstream version.

 -- Karl Ramm <kcr@debian.org>  Sat, 25 Oct 2003 06:00:11 -0400

xscreensaver (4.13-1) unstable; urgency=low

  * New upstream version. closes: #216841
  * Try using sensible-browser to display html.  closes: #173346
  * don't build arch-independent packages in the binary-arch target.
    oops.  closes: #207197
  * do the new pam thing.  closes: #216918

 -- Karl Ramm <kcr@debian.org>  Tue, 21 Oct 2003 14:50:00 -0400

xscreensaver (4.12-1) unstable; urgency=low

  * New upstream version. closes: #198625, #199321
  * Supposedly, 4.11 fixed an X error when starting a hack. closes: #195740

 -- Karl Ramm <kcr@debian.org>  Thu, 21 Aug 2003 00:29:49 -0400

xscreensaver (4.10-1) unstable; urgency=low

  * New upstream version
  * vidwhacker shouldn't bomb out on an unrecognized file type. closes: #192960
  * fixes jigglypuff for me. closes: #192076
  * point the gnome configuration icon at an absolute path.  closes: #191443
  * resurrect xscreensaver-gnome and xscreensaver-nognome in an attempt to
    unconfuse people. closes: #191212, #191967

 -- Karl Ramm <kcr@debian.org>  Thu, 29 May 2003 00:27:25 -0400

xscreensaver (4.09-3) unstable; urgency=low

  * add libjpeg62-dev and an explicit xlibmesa-dev to build-depends,
    closes: #191117

 -- Karl Ramm <kcr@debian.org>  Tue, 29 Apr 2003 10:22:22 -0400

xscreensaver (4.09-2) unstable; urgency=low

  * build against gnome2 and gtk2. closes: #190914, #184961
  * Building for the gnome2 control-center allows us to not depend on all
    of gnome, which means we can fold -gnome and -nognome into the main
    xscreensaver pacakge, making everyone's life simpler.  xscreensaver
    now conflicts-replaces-provides xscreensaver-gnome and
    xscreensaver-nognome.  closes: #170361

 -- Karl Ramm <kcr@debian.org>  Sun, 27 Apr 2003 23:29:32 -0400

xscreensaver (4.09-1) unstable; urgency=low

  * Another new upstream version.  closes: #185218
  * fix rounding error in ifs, thanks to sam@zoy.org, closes: #186291

 -- Karl Ramm <kcr@debian.org>  Thu,  3 Apr 2003 00:32:01 -0500

xscreensaver (4.06-1) unstable; urgency=low

  * new upstream version.
  * fix gnome2 config menu icon, closes: #169848
  * circuit segfault fixed upstream, closes: #170970
  * patch config file for glplanet, does not completely fix 173209
  * disable the paranoia leading to the "PAM: brk grew by 8k" messages
    closes: #169608
  * note in the xscreensaver manpage that one should not lightly mess with
    one's .fvwm2rc. closes: #167848
  * webcollage mimics netscape when talking to images.google.com.
    closes: #163563
  
 -- Karl Ramm <kcr@debian.org>  Tue, 31 Dec 2002 23:42:16 -0500

xscreensaver (4.05-10) unstable; urgency=low

  * build against libcapplet1-dev, closes: #168058, #163180
  * don't lock up switching hacks if ther's only one random hack
    selected. closes: #168821

 -- Karl Ramm <kcr@debian.org>  Thu, 14 Nov 2002 13:38:51 -0500

xscreensaver (4.05-9) unstable; urgency=low

  * Build conflict with libgkt2.0-dev, closes: #154964

 -- Karl Ramm <kcr@debian.org>  Wed, 31 Jul 2002 11:37:31 -0400

xscreensaver (4.05-8) unstable; urgency=low

  * append an 'x' to the filenames of the hack manpages.
  [I am getting *really* sick of this]
    closes: #154584
  * remove the undocumented symlink for screensaver-properties-capplet
    closes: #154533

 -- Karl Ramm <kcr@debian.org>  Sun, 28 Jul 2002 12:11:57 -0400

xscreensaver (4.05-7) unstable; urgency=low

  * move xscreensaver hack manpages to section six: closes: #154188
  * more general cleanup.

 -- Karl Ramm <kcr@debian.org>  Fri, 26 Jul 2002 22:52:02 -0400

xscreensaver (4.05-6) unstable; urgency=low

  * fix Makefile.in.in that puts locales somewhere desperately
    wrong.  Closes: #154205

 -- Karl Ramm <kcr@debian.org>  Wed, 24 Jul 2002 22:34:36 -0400

xscreensaver (4.05-5) unstable; urgency=low

  * update config.guess and config.sub from
  http://subversions.gnu.org/cgi-bin/viewcvs/config/config/

 -- Karl Ramm <kcr@debian.org>  Wed, 24 Jul 2002 19:10:55 -0400

xscreensaver (4.05-4) unstable; urgency=low

  * actually strip the hacks.

 -- Karl Ramm <kcr@debian.org>  Wed, 24 Jul 2002 12:13:19 -0400

xscreensaver (4.05-3) unstable; urgency=low

  * attempt to get my version of the package that I want to maintain
    before this NMU.

 -- Karl Ramm <kcr@debian.org>  Wed, 24 Jul 2002 10:59:27 -0400

xscreensaver (4.05-2.1) unstable; urgency=low

  * NMU, Sponsored by Colin Walters <walters@debian.org>
   - official maintainer has been MIA for a while
  * New upstream release
   - Closes: #146032, #146864, #148515, #150031, #136759, #134076,
     #121803, #119141, #123363, #107551, #117906, #120550, #148232,
     #122999, #113437, #90489, #134722, #117787, #118089, #118881,
     #137073, #148811, #132109, #129124, #62887, #85620
   - Some of the above bugs should have been closed a long tme ago.
  * Build with libgle3
  * Clean up debian/rules, use debhelper
  * Don't print "unrecognised ClientMessage" messages. Unnecessary.
  * Don't suggest xli or xloadimage anymore, we use gdk-pixbuf
  * Don't call x-terminal-emulator with +sb (Closes: #145814)
  * Remove driver/xscreensaver.kss on clean, so it isn't included in diff
  * Allow null passwords through PAM. This doesn't work exactly as it
    should, but now if you have a blank password, typing anything in
    the password box will get you out of a locked screen. (Closes: #43670)
  * Start xscreensaver with X if ~/.xscreensaver exists 
    - reference bug #127276

 -- Ari Pollak <compwiz@aripollak.com>  Thu, 18 Jul 2002 12:17:37 -0400

xscreensaver (4.05-1) unstable; urgency=low

  * It is a tale told by an idiot, full of sound and fury, signifying nothing.
  * New upstream release. closes: #148232

 -- Karl Ramm <kcr@debian.org>  Sun, 21 Jul 2002 17:05:40 -0400

xscreensaver (3.34-3) unstable; urgency=low

  * add build-dep on libgnome-dev.  closes: #128953, #133924, #141544

 -- Karl Ramm <kcr@debian.org>  Sun,  7 Apr 2002 12:17:37 -0400

xscreensaver (3.34-2) unstable; urgency=low

  * New maintainer.  closes: #139388

 -- Karl Ramm <kcr@debian.org>  Tue,  2 Apr 2002 10:47:31 -0500

xscreensaver (3.34-1.1) unstable; urgency=low

  * Non-maintainer upload.
  * Make /etc/X11/app-defaults/XScreenSaver-* conffiles
    (closes: #132101, #132109).

 -- Colin Watson <cjwatson@debian.org>  Mon, 11 Feb 2002 02:53:03 +0000

xscreensaver (3.34-1) unstable; urgency=low

  * New upstream version (Closes: #105372, #117331)
  * Added libcapplet-dev to Build-depends

 -- Larry Daffner <vizzie@airmail.net>  Tue,  6 Nov 2001 10:22:26 -0600

xscreensaver (3.33-5) unstable; urgency=low

  * Added Replaces: lines for older xscreensaver (Closes: #11752)
  * Moved KDE file to the right place (closes : #117700)

 -- Larry Daffner <vizzie@airmail.net>  Wed, 31 Oct 2001 13:38:32 -0600

xscreensaver (3.33-4) unstable; urgency=low

  * new packages for binaries with/without GNOME

 -- Larry Daffner <vizzie@airmail.net>  Fri, 26 Oct 2001 09:40:24 -0500

xscreensaver (3.33-3) unstable; urgency=low

  * Removed dependency on removed package "xv" (Closes: #112395)
  * Changed build-depends from xlibmesa-dev to libgl-dev (Closes: #104582)
  * Include time.h in prefs.c to fix IA64 (Closes: #112973)
  * Changed speedmine to ework around Alpha FP foo (Closes: #108596)
  * Added note to README.gl about memory usage and GL
    screensavers. (Closes: #112849)
  * Fixed spelling error in molecule manpage (Closes: #100915)
  * Shut up message about unknown client messages. (Closes: #109453)
  * Fixed command line defaults for xaos (Closes: #99797)

 -- Larry Daffner <vizzie@airmail.net>  Fri, 21 Sep 2001 17:52:17 -0500

xscreensaver (3.33-2) unstable; urgency=low

  * Added Build-Depends (Closes: #104040)
  * Upgraded to latest Standards-Version.

 -- Larry Daffner <vizzie@airmail.net>  Mon,  9 Jul 2001 23:05:46 -0500

xscreensaver (3.33-1) unstable; urgency=low

  * New upstream version (Closes: #97975)
  * Applied patch to fix gcc3.0 build (Closes: #99373)
  * Updated xaos command line (Closes: #(9797)
  * Move the gl postrm to the right name (Closes: #103605)

 -- Larry Daffner <vizzie@airmail.net>  Fri,  6 Jul 2001 12:20:32 -0500

xscreensaver (3.32-2) unstable; urgency=low

  * Added conflicts for old funny-manpages (Closes: #96446)
  * Update menu entries to /usr/bin/xscreensaver{,-command}
    (Closes: #97237)
  * Remove /usr/doc symlink on removal (Closes: #97788)
  * "Upgrade" from suidmanager usage (Closes: #97789)
  * Add proper KDE files (Closes: #88321)

 -- Larry Daffner <vizzie@airmail.net>  Thu, 17 May 2001 20:33:12 -0500

xscreensaver (3.32-1) unstable; urgency=low

  * New upstream version (Closes: #963432)

 -- Larry Daffner <vizzie@airmail.net>  Fri,  4 May 2001 17:03:31 -0500

xscreensaver (3.31-3) unstable; urgency=low

  * app-defaults files were mistakenly left out. Correct that.
    (Closes: #95683)
  * Move the whole works under /usr instead of /usr/X11R6 (Closes: #94355)

 -- Larry Daffner <vizzie@airmail.net>  Sun, 29 Apr 2001 21:31:04 -0500

xscreensaver (3.31-2) unstable; urgency=low

  * Put xscreensaver-gl-helper back in the right package
  * Fix postinst for debhelper (Closes: #94291)

 -- Larry Daffner <vizzie@airmail.net>  Tue, 17 Apr 2001 21:19:12 -0500

xscreensaver (3.31-1) unstable; urgency=low

  * New upstream version
  * Moved hacks to directory /usr/X11R6/lib/xscreensaver. This will not be
    a problem for the most part (except that the xworm hack is new just
    worm again), since xscreensaver adds this directory to the
    path. However, people running hacks by hand will have to add this
    directory to their path. (Closes: #92055)

 -- Larry Daffner <vizzie@airmail.net>  Fri, 13 Apr 2001 09:59:19 -0500

xscreensaver (3.30-1) unstable; urgency=low

  * New upstream version
  * Fix to upstream manpage to document current DPMS behavior. (Closes:
    #90491) 

 -- Larry Daffner <vizzie@airmail.net>  Mon, 26 Mar 2001 18:42:30 -0600

xscreensaver (3.29-3) unstable; urgency=low

  * Added safety valve to rules file to prevent nVidia brain damage
    (Closes: #88530)

 -- Larry Daffner <vizzie@airmail.net>  Sun,  4 Mar 2001 19:12:54 -0600

xscreensaver (3.29-2) unstable; urgency=low

  * Move gltext hack to correct package (Closes: #88366)

 -- Larry Daffner <vizzie@airmail.net>  Sat,  3 Mar 2001 19:56:16 -0600

xscreensaver (3.29-1) unstable; urgency=low

  * New upstream version

 -- Larry Daffner <vizzie@airmail.net>  Thu,  1 Mar 2001 20:41:39 -0600

xscreensaver (3.28-3) unstable; urgency=low

  * Rebuild to fix nVidia dain bramage.

 -- Larry Daffner <vizzie@airmail.net>  Wed, 21 Feb 2001 02:42:39 -0600

xscreensaver (3.28-2) unstable; urgency=low

  * hyperball manpage already included upstream. Don't install.
  * Fix thinko to REALLY add KDE integration

 -- Larry Daffner <vizzie@airmail.net>  Mon, 19 Feb 2001 13:13:34 -0600

xscreensaver (3.28-1) unstable; urgency=low

  * New upstream version
  * Use dh_movefiles to separate packages (Closes: #84591)
  * Add KDEDIR to build process to ensure .kss file gets installed
    (Closes: #84253)
  * Disabled webcollage by default (Closes: #79258)
  * Fixed path to link to remove in postinst

 -- Larry Daffner <vizzie@airmail.net>  Mon,  5 Feb 2001 13:32:58 -0600

xscreensaver (3.26-7) unstable; urgency=low

  * Use rm -f to undo dependency (Closes: #79206, #79209)

 -- Larry Daffner <vizzie@airmail.net>  Sat,  9 Dec 2000 17:30:05 -0600

xscreensaver (3.26-6) unstable; urgency=low

  * Don't install bogus screensaver-properties; clean up (Closes: #79119)

 -- Larry Daffner <vizzie@airmail.net>  Fri,  8 Dec 2000 16:35:07 -0600

xscreensaver (3.26-5) unstable; urgency=low

  * Recompile to fix bad link (Closes: #78229)
  * Really move app-defaults (Closes: #78289)

 -- Larry Daffner <vizzie@airmail.net>  Tue, 28 Nov 2000 21:25:56 -0600

xscreensaver (3.26-4) unstable; urgency=low

  * Recompile for XFree 4 (Closes: #77967)

 -- Larry Daffner <vizzie@airmail.net>  Mon, 27 Nov 2000 01:39:12 -0600

xscreensaver (3.26-3) unstable; urgency=low

  * Move gflux and xscreensaver-gl-helper to xscreensaver-gl (Closes: #77850)

 -- Larry Daffner <vizzie@airmail.net>  Thu, 23 Nov 2000 16:47:06 -0600

xscreensaver (3.26-2) unstable; urgency=low

  * Configure --without-gnome (Closes: #77677)

 -- Larry Daffner <vizzie@airmail.net>  Tue, 21 Nov 2000 22:16:50 -0600

xscreensaver (3.26-1) unstable; urgency=low

  * New upstream version (Closes: #75404)
  * Use x-terminal-emulator to display (Closes: #59076)

 -- Larry Daffner <vizzie@airmail.net>  Mon, 20 Nov 2000 20:46:21 -0600

xscreensaver (3.25-2) unstable; urgency=low

  * Figure gl visuals correctly for utah-glx

 -- Larry Daffner <vizzie@airmail.net>  Fri,  1 Sep 2000 23:28:11 -0500

xscreensaver (3.25-1) unstable; urgency=low

  * New upstream version

 -- Larry Daffner <vizzie@airmail.net>  Thu, 31 Aug 2000 14:07:17 -0500

xscreensaver (3.24-1) unstable; urgency=low

  * New upstream version

 -- Larry Daffner <vizzie@airmail.net>  Wed, 19 Apr 2000 14:40:58 -0500

xscreensaver (3.22-7) unstable frozen; urgency=medium

  * Upload into frozen

 -- Larry Daffner <vizzie@airmail.net>  Fri, 28 Jan 2000 22:15:48 -0600

xscreensaver (3.22-6) unstable; urgency=low

  * Fix perl dependency -> perl5 instead (Closes: Bug#56436)

 -- Larry Daffner <vizzie@airmail.net>  Thu, 27 Jan 2000 19:42:53 -0600

xscreensaver (3.22-5) frozen unstable; urgency=low

  * Added extra suggests/depends for some scripts (Closes: #56298)

 -- Larry Daffner <vizzie@airmail.net>  Thu, 27 Jan 2000 00:47:35 -0600

xscreensaver (3.22-4) unstable; urgency=low

  * Recompile AGAIN to fix mesa extra svgalib dependency (closes: #55538)

 -- Larry Daffner <vizzie@airmail.net>  Tue, 18 Jan 2000 20:14:57 -0600

xscreensaver (3.22-3) frozen unstable; urgency=low

  * Recompile to fix missing mesa dependency (Closes: #55508

 -- Larry Daffner <vizzie@airmail.net>  Mon, 17 Jan 2000 21:56:16 -0600

xscreensaver (3.22-2) unstable; urgency=low

  * Explicitly exclude kerberos (Closes: #54995)

 -- Larry Daffner <vizzie@airmail.net>  Thu, 13 Jan 2000 19:23:07 -0600

xscreensaver (3.22-1) unstable; urgency=low

  * New upstream version (Closes: #52262)
  * Make sure PAM config is installed (Closes: #52184)
  * Add missing dependencies (Closes: #52506)

 -- Larry Daffner <vizzie@airmail.net>  Sat,  1 Jan 2000 14:44:06 -0600

xscreensaver (3.21-3) unstable; urgency=low

  * Added Suggests: www-browser (Closes: #51142)
  * Don't remove webcollage - it's no longer necessary (Closes: #51260)

 -- Larry Daffner <vizzie@airmail.net>  Sun, 28 Nov 1999 19:44:08 -0600

xscreensaver (3.21-2) unstable; urgency=low

  * fixed inadvertent worm-xworm in appdefaults (fixup in rules) (Closes:
    #51005) 
  * Changed image program Depends: to Recommends:
  * Changed suidregister to mode 2755 instead of 4755 (Closes: #44907)

 -- Larry Daffner <vizzie@airmail.net>  Mon, 22 Nov 1999 23:42:37 -0600

xscreensaver (3.21-1) unstable; urgency=low

  * New upstream version (Closes: #50827)
  * Make compatibility symlinks in /usr/doc (Closes: #47799)
  * Build with GTK instead of lesstif (Closes: #39032, #47657)

 -- Larry Daffner <vizzie@airmail.net>  Sun, 21 Nov 1999 00:42:08 -0600

xscreensaver (3.17-5) unstable; urgency=low

  * Recompiled with new lesstif

 -- Larry Daffner <vizzie@airmail.net>  Sat, 16 Oct 1999 11:13:52 -0500

xscreensaver (3.17-4) unstable; urgency=low

  * Changed "worm" to "xworm" in appdefaults file. (Fixes: #45840)

 -- Larry Daffner <vizzie@airmail.net>  Mon, 11 Oct 1999 23:24:21 -0500

xscreensaver (3.17-3) unstable; urgency=low

  * Fixed source URL in debian/copyright (Fixes: #35139)
  * Suidunregister sonar in postrm (Fixes: #44511)
  * Webcollage removed from debian package (Fixes: #44419, #43459)
  * Removed bashism from rules file (Fixes: #43660)

 -- Larry Daffner <vizzie@airmail.net>  Mon, 13 Sep 1999 21:25:05 -0500

xscreensaver (3.17-2) unstable; urgency=low

  * Previous version contained the wrong PAM config file. Fixed.
  * Updated to standards version 3.0.1.0

 -- Larry Daffner <vizzie@airmail.net>  Sat, 31 Jul 1999 11:58:22 -0500

xscreensaver (3.17-1) unstable; urgency=low

  * New upstream version
  * renamed "worm" to "xworm"
  * Fixed webcollage to look in /usr/share/dict/words

 -- Larry Daffner <vizzie@airmail.net>  Thu, 29 Jul 1999 21:47:32 -0500

xscreensaver (3.15-1) unstable; urgency=low

  * New upstream version

 -- Larry Daffner <vizzie@airmail.net>  Tue, 22 Jun 1999 20:07:59 -0500

xscreensaver (3.13-2) unstable; urgency=low

  * Register sonar with suidmanager to allow configuring for ping mode
    (disabled by default)

 -- Larry Daffner <vizzie@airmail.net>  Mon,  7 Jun 1999 23:45:46 -0500

xscreensaver (3.13-1) unstable; urgency=low

  * New upstream version

 -- Larry Daffner <vizzie@airmail.net>  Wed,  2 Jun 1999 23:24:16 -0500

xscreensaver (3.10-2) unstable; urgency=low

  * Fixed installation of PAM defaults file.

 -- Larry Daffner <vizzie@airmail.net>  Thu, 13 May 1999 20:55:38 -0500

xscreensaver (3.10-1) unstable; urgency=low

  * New upstream version
  * Configured in support for PAM
  * Cleaner way of moving app defaults into the right place

 -- Larry Daffner <vizzie@airmail.net>  Wed, 28 Apr 1999 22:04:00 -0500

xscreensaver (3.08-1) unstable; urgency=low

  * New upstream version

 -- Larry Daffner <vizzie@airmail.net>  Wed, 24 Mar 1999 22:22:44 -0600

xscreensaver (3.07-3) unstable; urgency=low

  * Fixed typo in postinst (Fixes: #34829)

 -- Larry Daffner <vizzie@airmail.net>  Sat, 20 Mar 1999 09:49:30 -0600

xscreensaver (3.07-2) unstable; urgency=low

  * Added postrm to unregister on removal (Fixes: #34590)

 -- Larry Daffner <vizzie@airmail.net>  Mon, 15 Mar 1999 19:45:18 -0600

xscreensaver (3.07-1) unstable; urgency=low

  * New upstream version

 -- Larry Daffner <vizzie@airmail.net>  Thu,  7 Jan 1999 22:19:15 -0600

xscreensaver (2.34-1) unstable; urgency=low

  * New upstream version
  * New OpenGL hacks bubble3d and glplanet added to xscreensaver-gl

 -- Larry Daffner <vizzie@airmail.net>  Tue, 13 Oct 1998 23:55:09 -0500

xscreensaver (2.30-1) unstable; urgency=low

  * New upstream version  

 -- Larry Daffner <vizzie@airmail.net>  Fri, 25 Sep 1998 21:30:37 -0500

xscreensaver (2.27-2) unstable; urgency=low

  * Added menu file (Fixes: #26425)

 -- Larry Daffner <vizzie@airmail.net>  Mon,  7 Sep 1998 13:40:46 -0500

xscreensaver (2.27-1) unstable; urgency=low

  * New upstream version, including new gl hack "lament"

 -- Larry Daffner <vizzie@airmail.net>  Tue,  1 Sep 1998 20:41:32 -0500

xscreensaver (2.24-1) unstable; urgency=low

  * new upstream version

 -- Larry Daffner <vizzie@airmail.net>  Mon,  6 Jul 1998 23:29:36 -0500

xscreensaver (2.20-1) unstable; urgency=low

  * New upstream release; new screenhacks

 -- Larry Daffner <vizzie@airmail.net>  Fri,   12 Jun 1998 16:35:22 -0500

xscreensaver (2.16-3) frozen unstable; urgency=low

  * Add into frozen as well

 -- Larry Daffner <vizzie@airmail.net>  Fri,  3 Apr 1998 18:40:09 -0600

xscreensaver (2.16-2) unstable; urgency=low

  * recompiled to pick up dependency on lesstifg (fixes: #20568)

 -- Larry Daffner <vizzie@airmail.net>  Thu,  2 Apr 1998 22:24:48 -0600

xscreensaver (2.16-1) unstable; urgency=low

  * New upstream version
  * Updated to standards version 2.4.0.0 (no changes)
  * fixed dependency on fortune

 -- Larry Daffner <vizzie@airmail.net>  Wed, 25 Feb 1998 22:53:58 -0600

xscreensaver (2.15-3) unstable; urgency=low

  * Compile with Lesstif dialogs
  * Updated to standards version 2.1.2.2
  * Corrected incorrect file install for XScreenSaver-nogl
  * Use suidregister for xsreensaver

 -- Larry Daffner <vizzie@airmail.net>  Mon,  9 Feb 1998 20:54:21 -0600

xscreensaver (2.15-2) unstable; urgency=low

  * Fixed typo in control file (fixes Bug#17516)

 -- Larry Daffner <vizzie@airmail.net>  Mon, 26 Jan 1998 19:02:01 -0600

xscreensaver (2.15-1) unstable; urgency=low

  * New upstream version (Fixes #16271)

 -- Larry Daffner <vizzie@airmail.net>  Thu, 22 Jan 1998 23:45:06 -0600

xscreensaver (2.14-1) unstable; urgency=low

  * New upstream version
  * Re-enabled decayscreen and slidescreen - they should work now.

 -- Larry Daffner <vizzie@airmail.net>  Tue, 23 Dec 1997 01:24:57 -0600

xscreensaver (2.10-4) unstable; urgency=low

  * Disabled the slidescreen and decayscreen hacks by default (Bug #15780)

 -- Larry Daffner <vizzie@airmail.net>  Wed, 10 Dec 1997 20:45:01 -0600

xscreensaver (2.10-3) unstable; urgency=low

  * Fixed bad symlink /usr/doc/xscreensaver-gl

 -- Larry Daffner <vizzie@airmail.net>  Mon, 10 Nov 1997 19:18:37 -0600

xscreensaver (2.10-2) unstable; urgency=low

  * New subpackage: xscreensaver-gl
  * Compiled OpenGL hacks

 -- Larry Daffner <vizzie@airmail.net>  Sun,  9 Nov 1997 10:41:24 -0600

xscreensaver (2.10-1) unstable; urgency=low

  * New upstream version

 -- Larry Daffner <vizzie@airmail.net>  Fri, 31 Oct 1997 07:46:09 +0000

xscreensaver (2.07-2) unstable; urgency=low

  * Recompiled with xpm4g (Fixes Bug#12965)

 -- Larry Daffner <vizzie@airmail.net>  Wed, 17 Sep 1997 23:35:38 -0500

xscreensaver (2.07-1) unstable; urgency=low

  * New upstream version
  * Recompiled for libc6

 -- Larry Daffner <vizzie@airmail.net>  Sun, 14 Sep 1997 20:59:51 -0500

xscreensaver (1.27-2) unstable; urgency=low

  * Minor tweak to rules file
  * Rebuilt to catch updated dependencies

 -- Larry Daffner <vizzie@airmail.net>  Mon, 24 Feb 1997 19:05:50 -0600

xscreensaver (1.27-1) unstable; urgency=low

  * New upstream version

 -- Larry Daffner <vizzie@airmail.net>  Wed, 2 Oct 1996 22:20:14 -0500

xscreensaver (1.26-1) unstable; urgency=low

  * New package

 -- Larry Daffner <vizzie@airmail.net>  Wed, 2 Oct 1996 14:43:42 -0500