summaryrefslogtreecommitdiff
blob: d53ecb8abfd1e13c48c4630dc55f703fcd7a39a4 (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
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
# ChangeLog for app-admin/syslog-ng
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/syslog-ng/ChangeLog,v 1.438 2015/08/08 14:17:07 maekke Exp $

  08 Aug 2015; Markus Meier <maekke@gentoo.org> syslog-ng-3.6.4.ebuild:
  arm stable, bug #556546

  08 Aug 2015; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.6.4.ebuild:
  Stable for HPPA (bug #556546).

  06 Aug 2015; Mikle Kolyada <zlogene@gentoo.org> syslog-ng-3.6.4.ebuild:
  ia64 stable wrt bug #556546

  06 Aug 2015; Tobias Klausmann <klausman@gentoo.org> syslog-ng-3.6.4.ebuild:
  Stable on alpha, bug 556546

  06 Aug 2015; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.6.4.ebuild:
  install the man pages (bug #556776)

  04 Aug 2015; Mikle Kolyada <zlogene@gentoo.org> syslog-ng-3.6.4.ebuild:
  x86 stable wrt bug #556546

  03 Aug 2015; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.6.4.ebuild:
  Stable for amd64, wrt bug #556546

  13 Jul 2015; Michael Sterrett <mr_bones_@gentoo.org> -syslog-ng-3.6.3.ebuild:
  old

*syslog-ng-3.6.4 (03 Jul 2015)

  03 Jul 2015; Michael Sterrett <mr_bones_@gentoo.org> +syslog-ng-3.6.4.ebuild:
  version bump

*syslog-ng-3.6.3 (10 Jun 2015)

  10 Jun 2015; Michael Sterrett <mr_bones_@gentoo.org> +syslog-ng-3.6.3.ebuild:
  version bump

  28 May 2015; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.6.2.ebuild:
  make epatch_user work with patch from John R. Graham (bug #550656)

  25 Apr 2015; <jmorgan@gentoo.org> syslog-ng-3.6.2.ebuild:
  Stable for sparc, wrt bug #543234

  14 Apr 2015; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.6.2.ebuild:
  Stable for ia64, wrt bug #543234

  13 Apr 2015; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.6.2.ebuild:
  Stable for alpha, wrt bug #543234

  03 Apr 2015; Markus Meier <maekke@gentoo.org> syslog-ng-3.6.2.ebuild:
  arm stable, bug #543234

  31 Mar 2015; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.6.2.ebuild:
  Stable for ppc64, wrt bug #543234

  30 Mar 2015;  <tgall@gentoo.org> syslog-ng-3.6.2.ebuild:
  stable on arm64

  29 Mar 2015; Michael Sterrett <mr_bones_@gentoo.org> files/3.6/syslog-ng.rc6:
  fix checkpath typo (bug #544748)

  28 Mar 2015; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.6.2.ebuild:
  Stable for ppc, wrt bug #543234

  25 Mar 2015; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.6.2.ebuild:
  Stable for x86, wrt bug #543234

  23 Mar 2015; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.6.2.ebuild:
  add epatch_user for additional user control

  23 Mar 2015; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.6.2.ebuild:
  use embedded crypto to avoid build issues (bug #543522)

  19 Mar 2015; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.6.2.ebuild:
  Stable for HPPA (bug #543234).

  14 Mar 2015; Mikle Kolyada <zlogene@gentoo.org> syslog-ng-3.6.2.ebuild:
  amd64 stable wrt bug #543234

  14 Mar 2015; Michael Sterrett <mr_bones_@gentoo.org>
  -files/3.4/syslog-ng-3.4.2-autotools.patch,
  -files/3.4/syslog-ng-3.4.2-compile.patch, -syslog-ng-3.4.7.ebuild:
  old

  19 Dec 2014; Michael Sterrett <mr_bones_@gentoo.org>
  +files/3.6/syslog-ng-3.6.2-redis.patch, -files/3.5/syslog-ng.conf.gentoo,
  -files/3.5/syslog-ng.conf.gentoo.fbsd,
  -files/3.5/syslog-ng.conf.gentoo.hardened, -files/3.5/syslog-ng.confd,
  -files/3.5/syslog-ng.rc6, syslog-ng-3.6.2.ebuild:
  Add upstream patch to avoid memory leak with USE=redis

  18 Dec 2014; Michael Sterrett <mr_bones_@gentoo.org>
  -files/3.6/syslog-ng-3.6.1-link-smtp.patch,
  -files/3.6/syslog-ng-3.6.1-warnings.patch, -syslog-ng-3.6.1.ebuild:
  old

  18 Dec 2014; Michael Sterrett <mr_bones_@gentoo.org>
  files/3.6/syslog-ng.confd, files/3.6/syslog-ng.rc6:
  update to /run from /var/run (bug #531840)

*syslog-ng-3.6.2 (18 Dec 2014)

  18 Dec 2014; Michael Sterrett <mr_bones_@gentoo.org> +syslog-ng-3.6.2.ebuild:
  version bump

  04 Dec 2014; Michael Sterrett <mr_bones_@gentoo.org>
  +files/3.6/syslog-ng-3.6.1-warnings.patch, syslog-ng-3.6.1.ebuild:
  Add upstream patch to suppress warnings at startup

  02 Dec 2014; Michael Sterrett <mr_bones_@gentoo.org> metadata.xml:
  update metadata (bug #531382)

  10 Nov 2014; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.6.1.ebuild:
  fix upstream doc link and doc install - reported by Tomas Mozes via bug
  #528788 and bug #528790

  09 Nov 2014; Michael Sterrett <mr_bones_@gentoo.org> -syslog-ng-3.5.6.ebuild:
  old

*syslog-ng-3.6.1 (09 Nov 2014)

  09 Nov 2014; Michael Sterrett <mr_bones_@gentoo.org>
  +files/3.6/syslog-ng-3.6.1-link-smtp.patch, +files/3.6/syslog-ng.conf.gentoo,
  +files/3.6/syslog-ng.conf.gentoo.fbsd,
  +files/3.6/syslog-ng.conf.gentoo.hardened, +files/3.6/syslog-ng.confd,
  +files/3.6/syslog-ng.rc6, +syslog-ng-3.6.1.ebuild, metadata.xml:
  version bump to 3.6 series

  02 Nov 2014; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.8.ebuild:
  Stable for alpha, wrt bug #518404

  07 Sep 2014; Michael Sterrett <mr_bones_@gentoo.org> -syslog-ng-3.5.5.ebuild:
  old

*syslog-ng-3.5.6 (06 Sep 2014)

  06 Sep 2014; Michael Sterrett <mr_bones_@gentoo.org> +syslog-ng-3.5.6.ebuild:
  version bump

  10 Aug 2014; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.8.ebuild:
  Stable for ia64, wrt bug #518404

  03 Aug 2014; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.8.ebuild:
  Stable for ppc, wrt bug #518404

  03 Aug 2014; Mikle Kolyada <zlogene@gentoo.org> syslog-ng-3.4.8.ebuild:
  x86 stable wrt bug #518404

  02 Aug 2014; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.8.ebuild:
  Stable for ppc64, wrt bug #518404

  01 Aug 2014; Markus Meier <maekke@gentoo.org> syslog-ng-3.4.8.ebuild:
  arm stable, bug #518404

  30 Jul 2014; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.4.8.ebuild:
  Stable for HPPA (bug #518404).

  28 Jul 2014; Mikle Kolyada <zlogene@gentoo.org> syslog-ng-3.4.8.ebuild:
  amd64 stable wrt bug #518404

  28 Jul 2014; Michael Sterrett <mr_bones_@gentoo.org>
  -files/3.5/syslog-ng-3.5.4.1-memleak.patch, -syslog-ng-3.5.4.1.ebuild:
  old

*syslog-ng-3.5.5 (21 Jul 2014)

  21 Jul 2014; Michael Sterrett <mr_bones_@gentoo.org> +syslog-ng-3.5.5.ebuild:
  3.5 branch version bump

  08 Jul 2014; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.4.8.ebuild:
  add amqp use flag (bug #516704)

  08 Jul 2014; Michael Sterrett <mr_bones_@gentoo.org> metadata.xml,
  syslog-ng-3.4.8.ebuild, syslog-ng-3.5.4.1.ebuild:
  add support for reading Process Accounting files (EXPERIMENTAL, Linux only)
  (bug #498884)

  10 Jun 2014; Mike Frysinger <vapier@gentoo.org> syslog-ng-3.4.7.ebuild:
  Mark s390/sh stable.

  09 Jun 2014; Mike Frysinger <vapier@gentoo.org> syslog-ng-3.4.7.ebuild,
  syslog-ng-3.4.8.ebuild, syslog-ng-3.5.4.1.ebuild:
  Add arm64 love.

*syslog-ng-3.4.8 (06 Jun 2014)

  06 Jun 2014; Michael Sterrett <mr_bones_@gentoo.org> +syslog-ng-3.4.8.ebuild:
  version bump for 3.4 branch

  17 May 2014; Michael Sterrett <mr_bones_@gentoo.org> -syslog-ng-3.4.2.ebuild,
  -syslog-ng-3.5.4.ebuild:
  clean old

  17 May 2014; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.7.ebuild:
  Stable for alpha, wrt bug #504348

  14 May 2014; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.7.ebuild:
  Stable for sparc, wrt bug #504348

  13 May 2014; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.7.ebuild:
  Stable for ia64, wrt bug #504348

  20 Apr 2014; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.7.ebuild:
  Stable for ppc64, wrt bug #504348

  13 Apr 2014; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.7.ebuild:
  Stable for ppc, wrt bug #504348

  05 Apr 2014; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.7.ebuild:
  Stable for x86, wrt bug #504348

  03 Apr 2014; Michael Sterrett <mr_bones_@gentoo.org> metadata.xml,
  syslog-ng-3.5.4.1.ebuild:
  make the AMQP support optional for bug #506618

  02 Apr 2014; Chema Alonso <nimiux@gentoo.org> syslog-ng-3.4.7.ebuild:
  Stable for amd64 wrt bug #504348

  28 Mar 2014; Michael Sterrett <mr_bones_@gentoo.org>
  +files/3.5/syslog-ng-3.5.4.1-memleak.patch, syslog-ng-3.5.4.1.ebuild:
  add upstream patch for to fix memory leak

  26 Mar 2014; Markus Meier <maekke@gentoo.org> syslog-ng-3.4.7.ebuild:
  arm stable, bug #504348

  16 Mar 2014; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.4.7.ebuild:
  Stable for HPPA (bug #504348).

*syslog-ng-3.5.4.1 (13 Mar 2014)

  13 Mar 2014; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-3.5.4.1.ebuild:
  version bump

*syslog-ng-3.5.4 (12 Mar 2014)

  12 Mar 2014; Michael Sterrett <mr_bones_@gentoo.org> +syslog-ng-3.5.4.ebuild,
  -syslog-ng-3.5.3.ebuild:
  version bump; clean old known-buggy version

*syslog-ng-3.5.3 (22 Jan 2014)

  22 Jan 2014; Michael Sterrett <mr_bones_@gentoo.org>
  +files/3.5/syslog-ng.conf.gentoo, +files/3.5/syslog-ng.conf.gentoo.fbsd,
  +files/3.5/syslog-ng.conf.gentoo.hardened, +files/3.5/syslog-ng.confd,
  +files/3.5/syslog-ng.rc6, +files/syslog-ng.logrotate.hardened.in,
  +files/syslog-ng.logrotate.in, +syslog-ng-3.5.3.ebuild,
  syslog-ng-3.4.2.ebuild, syslog-ng-3.4.7.ebuild:
  add first version from the 3.5 branch, currently masked; also fix bugs #497448
  and #498038

  31 Dec 2013; Michael Sterrett <mr_bones_@gentoo.org> -syslog-ng-3.4.5.ebuild,
  -syslog-ng-3.4.6.ebuild:
  clean old

*syslog-ng-3.4.7 (31 Dec 2013)

  31 Dec 2013; Michael Sterrett <mr_bones_@gentoo.org> +syslog-ng-3.4.7.ebuild:
  version bump

  23 Dec 2013; Tom Wijsman <TomWij@gentoo.org> -files/syslog-ng.confd:
  [QA] Remove unused files.

*syslog-ng-3.4.6 (29 Nov 2013)

  29 Nov 2013; Michael Sterrett <mr_bones_@gentoo.org> +syslog-ng-3.4.6.ebuild:
  version bump

  14 Nov 2013; Patrick Lauer <patrick@gentoo.org> metadata.xml:
  Remove unneeded useflag description from metadata.xml

  13 Nov 2013; Michael Sterrett <mr_bones_@gentoo.org>
  -files/syslog-ng.conf.gentoo.3.2, -files/syslog-ng.conf.gentoo.fbsd.3.2,
  -files/syslog-ng.conf.gentoo.hardened.3.2, -files/syslog-ng.rc6.3,
  -syslog-ng-3.2.5.ebuild:
  old

  13 Nov 2013; Michael Sterrett <mr_bones_@gentoo.org>
  -files/syslog-ng-3.3.5-afsocket.patch, -files/syslog-ng-3.3.5-compile.patch,
  -files/syslog-ng-3.3.5-gprocess.patch, -files/syslog-ng-3.3.5-include.patch,
  -files/syslog-ng-3.3.5-threading.patch, -files/syslog-ng-3.3.5-utmpx.patch,
  -files/syslog-ng.conf.gentoo.3.3, -files/syslog-ng.conf.gentoo.fbsd.3.3,
  -files/syslog-ng.conf.gentoo.hardened.3.3, -files/syslog-ng.rc6.3.3,
  -syslog-ng-3.3.5-r1.ebuild:
  old

  13 Nov 2013; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.4.2.ebuild:
  add -j1 so stable users don't encounter the parallel make install bug

  13 Nov 2013; Michael Sterrett <mr_bones_@gentoo.org>
  -files/3.4/syslog-ng-3.4.3-autotools.patch,
  -files/3.4/syslog-ng-3.4.4-autotools.patch, -syslog-ng-3.4.3.ebuild,
  -syslog-ng-3.4.4.ebuild:
  old

*syslog-ng-3.4.5 (04 Nov 2013)

  04 Nov 2013; Michael Sterrett <mr_bones_@gentoo.org> +syslog-ng-3.4.5.ebuild:
  version bump

  18 Oct 2013; Michael Sterrett <mr_bones_@gentoo.org>
  files/3.4/syslog-ng-3.4.4-autotools.patch:
  fix up the autotools patch (bug #488444)

*syslog-ng-3.4.4 (17 Oct 2013)

  17 Oct 2013; Michael Sterrett <mr_bones_@gentoo.org>
  +files/3.4/syslog-ng-3.4.4-autotools.patch, +syslog-ng-3.4.4.ebuild:
  version bump

  14 Oct 2013; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.4.3.ebuild:
  better systemd support (bug #487996)

  06 Sep 2013; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.2.ebuild:
  Stable for sparc, wrt bug #475884

  31 Aug 2013; Michael Sterrett <mr_bones_@gentoo.org> files/3.4/syslog-ng.rc6:
  set full path to syslog-ng for bug #483142

*syslog-ng-3.4.3 (13 Aug 2013)

  13 Aug 2013; Michael Sterrett <mr_bones_@gentoo.org>
  +files/3.4/syslog-ng-3.4.3-autotools.patch, +syslog-ng-3.4.3.ebuild:
  version bump

  06 Aug 2013; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.2.ebuild:
  Stable for s390, wrt bug #475884

  13 Jul 2013; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.2.ebuild:
  Stable for ppc64, wrt bug #475884

  13 Jul 2013; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.2.ebuild:
  Stable for ppc, wrt bug #475884

  11 Jul 2013; Michael Sterrett <mr_bones_@gentoo.org>
  -files/3.4/syslog-ng-3.4.1-autotools.patch,
  -files/3.4/syslog-ng-3.4.1-rollup.patch, -syslog-ng-3.4.1-r1.ebuild:
  old

  08 Jul 2013; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.4.2.ebuild:
  Stable for HPPA (bug #475884).

  07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.2.ebuild:
  Stable for ia64, wrt bug #475884

  07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.2.ebuild:
  Stable for arm, wrt bug #475884

  06 Jul 2013; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.2.ebuild:
  Stable for alpha, wrt bug #475884

  06 Jul 2013; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.2.ebuild:
  Stable for x86, wrt bug #475884

  06 Jul 2013; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.4.2.ebuild:
  Stable for amd64, wrt bug #475884

*syslog-ng-3.4.2 (03 Jun 2013)

  03 Jun 2013; Michael Sterrett <mr_bones_@gentoo.org>
  +files/3.4/syslog-ng-3.4.2-autotools.patch,
  +files/3.4/syslog-ng-3.4.2-compile.patch, +syslog-ng-3.4.2.ebuild,
  files/3.4/syslog-ng-3.4.1-autotools.patch,
  files/3.4/syslog-ng-3.4.1-rollup.patch:
  version bump

*syslog-ng-3.4.1-r1 (02 Jun 2013)

  02 Jun 2013; Michael Sterrett <mr_bones_@gentoo.org> +files/README.hardened,
  +syslog-ng-3.4.1-r1.ebuild, -syslog-ng-3.4.1.ebuild,
  files/3.4/syslog-ng.conf.gentoo, files/3.4/syslog-ng.conf.gentoo.fbsd:
  rev bump to force out default config changes (bug #471836) restrict tests
  again (bug #471988) remove hardened and selinux use flags (bug #375853)

  28 May 2013; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.4.1.ebuild:
  create default statedir for people willing to settle for systemd (bug #470994)

  19 May 2013; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.4.1.ebuild:
  Use the latest version of geoip (bug #470060)

  16 May 2013; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.4.1.ebuild:
  add geoip use flag for bug #470060

  10 May 2013; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.4.1.ebuild:
  sql -> dbi use flag (bug #410829)

  08 May 2013; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-3.3.5-r1.ebuild:
  whitespace

  08 May 2013; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.4.1.ebuild:
  add missing net-libs/libesmtp dep (bug #469012)

  08 May 2013; Michael Sterrett <mr_bones_@gentoo.org> files/3.4/syslog-ng.rc6:
  correct mode on statefile directory (bug #469004)

  08 May 2013; Michael Sterrett <mr_bones_@gentoo.org>
  +files/3.4/syslog-ng-3.4.1-autotools.patch, syslog-ng-3.4.1.ebuild:
  use patch instead of set for autotools fix

  08 May 2013; Patrick Lauer <patrick@gentoo.org> syslog-ng-3.3.5-r1.ebuild,
  syslog-ng-3.4.1.ebuild:
  Automake-1.13 fix for #467096

  04 May 2013; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.4.1.ebuild:
  add back arm and s390 since libesmtp is keyworded

  29 Apr 2013; Michael Sterrett <mr_bones_@gentoo.org> files/3.4/syslog-ng.rc6:
  no need for config line in depend()

  29 Apr 2013; Michael Sterrett <mr_bones_@gentoo.org> files/3.4/syslog-ng.rc6:
  use required_* runscript variables; STATEFILE_DIR typo

  29 Apr 2013; Michael Sterrett <mr_bones_@gentoo.org> files/3.4/syslog-ng.rc6:
  depend() shouldn't talk to the user

  28 Apr 2013; Michael Sterrett <mr_bones_@gentoo.org> files/syslog-ng.rc6.3:
  add after bootmisc for the 3.2 version as well

*syslog-ng-3.4.1 (28 Apr 2013)

  28 Apr 2013; Michael Sterrett <mr_bones_@gentoo.org>
  +files/3.4/syslog-ng-3.4.1-rollup.patch, +files/3.4/syslog-ng.conf.gentoo,
  +files/3.4/syslog-ng.conf.gentoo.fbsd,
  +files/3.4/syslog-ng.conf.gentoo.hardened, +files/3.4/syslog-ng.confd,
  +files/3.4/syslog-ng.rc6, +syslog-ng-3.4.1.ebuild, files/syslog-ng.rc6.3.3,
  metadata.xml:
  masked bump to next version series

  01 Oct 2012; Michael Sterrett <mr_bones_@gentoo.org> -syslog-ng-3.3.5.ebuild:
  old

*syslog-ng-3.3.5-r1 (08 Jun 2012)

  08 Jun 2012; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-3.3.5-r1.ebuild, +files/syslog-ng-3.3.5-threading.patch,
  +files/syslog-ng-3.3.5-utmpx.patch:
  Add a couple of upstream patches

  29 May 2012; Michael Sterrett <mr_bones_@gentoo.org>
  -files/syslog-ng-3.3.4-compile.patch, -files/syslog-ng-3.3.4-memleak.patch,
  -syslog-ng-3.2.4.ebuild, -syslog-ng-3.3.4.ebuild:
  old

  03 May 2012; Jeff Horelick <jdhore@gentoo.org> syslog-ng-3.2.4.ebuild,
  syslog-ng-3.2.5.ebuild, syslog-ng-3.3.4.ebuild, syslog-ng-3.3.5.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  30 Apr 2012; Michael Sterrett <mr_bones_@gentoo.org>
  +files/syslog-ng-3.3.5-include.patch, syslog-ng-3.3.5.ebuild:
  add upstream patch for mips

*syslog-ng-3.3.5 (23 Apr 2012)

  23 Apr 2012; Michael Sterrett <mr_bones_@gentoo.org> +syslog-ng-3.3.5.ebuild,
  +files/syslog-ng-3.3.5-afsocket.patch, +files/syslog-ng-3.3.5-compile.patch,
  +files/syslog-ng-3.3.5-gprocess.patch:
  version bump

  22 Mar 2012; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.3.4.ebuild,
  +files/syslog-ng-3.3.4-memleak.patch:
  add upstream patch for memory leak caused by messages that couldn't be
  flushed right away.

  21 Mar 2012; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.3.4.ebuild:
  adjust for newer glib static lib building (bug #409217)

  04 Mar 2012; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.3.4.ebuild:
  work around underlinking with gold linker (bug #405381)

  03 Mar 2012; Brent Baude <ranger@gentoo.org> syslog-ng-3.2.5.ebuild:
  Marking syslog-ng-3.2.5 ppc64 for bug 394621

  06 Feb 2012; Brent Baude <ranger@gentoo.org> syslog-ng-3.2.5.ebuild:
  Marking syslog-ng-3.2.5 ppc for bug 394621

*syslog-ng-3.3.4 (21 Jan 2012)

  21 Jan 2012; Michael Sterrett <mr_bones_@gentoo.org> -syslog-ng-3.3.1.ebuild,
  -files/syslog-ng-3.3.1-filter.patch, -files/syslog-ng-3.3.1-ssl.patch,
  -syslog-ng-3.3.3.ebuild, +syslog-ng-3.3.4.ebuild,
  +files/syslog-ng-3.3.4-compile.patch:
  masked 3.3 series version bump

  18 Dec 2011; Raúl Porcel <armin76@gentoo.org> syslog-ng-3.2.5.ebuild:
  alpha/arm/ia64/s390/sh/sparc stable wrt #394621

  16 Dec 2011; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.2.5.ebuild:
  Stable for HPPA (bug #394621).

  15 Dec 2011; Agostino Sarubbo <ago@gentoo.org> syslog-ng-3.2.5.ebuild:
  Stable for X86/AMD64, wrt bug #394621

  14 Dec 2011; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.2.5.ebuild:
  remove upstream-unsupported static linking (bug #394703)

  04 Dec 2011; Sven Wegener <swegener@gentoo.org> files/syslog-ng.rc6.3:
  move reload to extra_started_commands in 3.2 init script

*syslog-ng-3.3.3 (28 Nov 2011)

  28 Nov 2011; Michael Sterrett <mr_bones_@gentoo.org> +syslog-ng-3.3.3.ebuild:
  masked 3.3 series version bump

  09 Nov 2011; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.3.1.ebuild:
  add a note about the upstream documentation

*syslog-ng-3.2.5 (07 Nov 2011)

  07 Nov 2011; Michael Sterrett <mr_bones_@gentoo.org> +syslog-ng-3.2.5.ebuild:
  3.2 series version bump

  24 Oct 2011; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.3.1.ebuild,
  +files/syslog-ng-3.3.1-filter.patch:
  add upstream patch to fix filter function

  19 Oct 2011; Michael Sterrett <mr_bones_@gentoo.org> files/syslog-ng.rc6.3.3:
  move reload to extra_started_commands

  18 Oct 2011; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.3.1.ebuild,
  +files/syslog-ng.rc6.3.3:
  add patch from Marcel Pennewiß to improve flexibility (bug #373583)

  07 Oct 2011; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-3.3.1.ebuild,
  +files/syslog-ng-3.3.1-ssl.patch:
  Add upstream patch for USE="-ssl sql" case

  04 Oct 2011; Michael Sterrett <mr_bones_@gentoo.org>
  files/syslog-ng.conf.gentoo.3.3, files/syslog-ng.conf.gentoo.fbsd.3.3,
  files/syslog-ng.conf.gentoo.hardened.3.3:
  Turn on threading in default config per upstream

*syslog-ng-3.3.1 (04 Oct 2011)

  04 Oct 2011; Michael Sterrett <mr_bones_@gentoo.org>
  -syslog-ng-3.3.0_beta2.ebuild, +syslog-ng-3.3.1.ebuild:
  version bump

*syslog-ng-3.3.0_beta2 (29 Sep 2011)

  29 Sep 2011; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-3.3.0_beta2.ebuild, +files/syslog-ng.conf.gentoo.3.3,
  +files/syslog-ng.conf.gentoo.fbsd.3.3,
  +files/syslog-ng.conf.gentoo.hardened.3.3:
  masked version bump for ebuild testing

  22 Sep 2011; Christian Ruppert <idl0r@gentoo.org> files/syslog-ng.rc6.3:
  Whitespace. Don't use --stop for reload().

  22 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  +syslog-ng-3.2.4-r1.ebuild:
  Add revision to actually propagate changes in the init scripts. This is QA
  commit and if you want to revert it ask QA for permission first.

*syslog-ng-3.2.4-r1 (22 Sep 2011)

  22 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  +syslog-ng-3.2.4-r1.ebuild:
  Add revision to actually propagate changes in the init scripts.

  21 Sep 2011; Michael Sterrett <mr_bones_@gentoo.org> files/syslog-ng.rc6.3:
  remove deprecated --oknodo argument from init script (bug #374719)

  05 Sep 2011; Michael Sterrett <mr_bones_@gentoo.org> files/syslog-ng.rc6.3:
  opts => extra_commands for init script (bug #381881)

  09 Jul 2011; Michael Sterrett <mr_bones_@gentoo.org>
  -syslog-ng-3.0.10.ebuild, -syslog-ng-3.1.4.ebuild, -syslog-ng-3.2.2.ebuild,
  -files/syslog-ng.conf.gentoo.3, -files/syslog-ng.conf.gentoo.fbsd.3,
  -files/syslog-ng.conf.gentoo.hardened.3:
  clean out old, vulnerable versions (bug #369069)

  09 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> syslog-ng-3.2.4.ebuild:
  ppc64 stable wrt #370845

  25 Jun 2011; Raúl Porcel <armin76@gentoo.org> syslog-ng-3.2.4.ebuild:
  alpha/ia64/s390/sh/sparc stable wrt #370845

  23 Jun 2011; Brent Baude <ranger@gentoo.org> syslog-ng-3.2.4.ebuild:
  Marking syslog-ng-3.2.4 ppc for bug 370845

  19 Jun 2011; Markus Meier <maekke@gentoo.org> syslog-ng-3.2.4.ebuild:
  arm stable, bug #370845

  18 Jun 2011; Markos Chandras <hwoarang@gentoo.org> syslog-ng-3.2.4.ebuild:
  Stable on amd64 wrt bug #370845

  15 Jun 2011; Christian Ruppert <idl0r@gentoo.org> syslog-ng-3.2.4.ebuild:
  Fix eventlog dependency, bug 371737.

  12 Jun 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> syslog-ng-3.2.4.ebuild:
  x86 stable wrt bug #370845

  10 Jun 2011; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.2.4.ebuild:
  Stable for HPPA (bug #370845).

*syslog-ng-3.2.4 (07 May 2011)

  07 May 2011; Michael Sterrett <mr_bones_@gentoo.org> +syslog-ng-3.2.4.ebuild:
  version bump; move syslog-ng.persist file (bug #357267); quiet suggestion
  about installing logrotate if logrotate is already installed (bug #355257)

  07 Apr 2011; Ultrabug <ultrabug@gentoo.org> syslog-ng-3.0.10.ebuild,
  syslog-ng-3.1.4.ebuild, syslog-ng-3.2.2.ebuild:
  migrate ebuilds to new-style virtual, wrt #358881

  31 Mar 2011; Michael Sterrett <mr_bones_@gentoo.org>
  -syslog-ng-3.0.8.ebuild, -syslog-ng-3.0.9.ebuild, -syslog-ng-3.1.2.ebuild,
  -syslog-ng-3.1.3.ebuild:
  clean old versions

  22 Mar 2011; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-3.2.2.ebuild:
  add multilib support patch from Olivier Huber for bug #359985

  01 Mar 2011; Brent Baude <ranger@gentoo.org> syslog-ng-3.1.4.ebuild:
  stable ppc64, bug 355101

  01 Mar 2011; Brent Baude <ranger@gentoo.org> syslog-ng-3.0.10.ebuild:
  stable ppc64, bug 355099

  01 Mar 2011; Brent Baude <ranger@gentoo.org> syslog-ng-3.1.3.ebuild:
  stable ppc64, bug 350410

  01 Mar 2011; Brent Baude <ranger@gentoo.org> syslog-ng-3.0.9.ebuild:
  stable ppc64, bug 350408

  28 Feb 2011; Brent Baude <ranger@gentoo.org> syslog-ng-3.0.10.ebuild:
  stable ppc, bug 355099

  28 Feb 2011; Brent Baude <ranger@gentoo.org> syslog-ng-3.1.4.ebuild:
  stable ppc, bug 355101

  26 Feb 2011; Raúl Porcel <armin76@gentoo.org> syslog-ng-3.0.10.ebuild,
  syslog-ng-3.1.4.ebuild:
  alpha/arm/ia64/s390/sh/sparc stable wrt #355101 and #355099

  21 Feb 2011; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.1.4.ebuild:
  Stable for HPPA (bug #355101).

  21 Feb 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  syslog-ng-3.0.10.ebuild:
  x86 stable wrt bug #355099

  21 Feb 2011; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.0.10.ebuild:
  Stable for HPPA (bug #355099).

  20 Feb 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  syslog-ng-3.1.4.ebuild:
  x86 stable wrt bug #355101

  16 Feb 2011; Markos Chandras <hwoarang@gentoo.org> syslog-ng-3.0.10.ebuild,
  syslog-ng-3.1.4.ebuild:
  Stable on amd64 wrt bug #355101 and bug #355099

  21 Jan 2011; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.0.9.ebuild,
  syslog-ng-3.1.3.ebuild:
  Stable for HPPA (bug #350408).

*syslog-ng-3.2.2 (18 Jan 2011)

  18 Jan 2011; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-3.2.2.ebuild, +files/syslog-ng.conf.gentoo.3.2,
  +files/syslog-ng.conf.gentoo.fbsd.3.2,
  +files/syslog-ng.conf.gentoo.hardened.3.2:
  new series - 3.2 version bump

*syslog-ng-3.1.4 (14 Jan 2011)
*syslog-ng-3.0.10 (14 Jan 2011)

  14 Jan 2011; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-3.0.10.ebuild, +syslog-ng-3.1.4.ebuild:
  version bumps for 3.0 and 3.1

  09 Jan 2011; Raúl Porcel <armin76@gentoo.org> syslog-ng-3.0.9.ebuild,
  syslog-ng-3.1.3.ebuild:
  alpha/ia64/s390/sh/x86 stable wrt #350408 and #350410

  09 Jan 2011; Brent Baude <ranger@gentoo.org> syslog-ng-3.1.3.ebuild:
  stable ppc, bug 350410

  09 Jan 2011; Brent Baude <ranger@gentoo.org> syslog-ng-3.0.9.ebuild:
  stable ppc, bug 350408

  07 Jan 2011; Christian Faulhammer <fauli@gentoo.org>
  syslog-ng-3.1.3.ebuild:
  stable x86, bug 350410

  04 Jan 2011; Markos Chandras <hwoarang@gentoo.org> syslog-ng-3.0.9.ebuild,
  syslog-ng-3.1.3.ebuild:
  Stable on amd64 wrt bug #350410 and bug #350408

  03 Jan 2011; Michael Weber <xmw@gentoo.org> syslog-ng-3.0.9.ebuild:
  arm/sparc stable (bug 350408)

  03 Jan 2011; Michael Weber <xmw@gentoo.org> syslog-ng-3.1.3.ebuild:
  arm/sparc stable (bug 350410)

  02 Jan 2011; Michael Sterrett <mr_bones_@gentoo.org>
  -syslog-ng-2.0.10.ebuild, -syslog-ng-2.1.4.ebuild, syslog-ng-3.1.3.ebuild,
  -files/syslog-ng.conf.debian, -files/syslog-ng.conf.gentoo,
  -files/syslog-ng.conf.gentoo.3.0, -files/syslog-ng.conf.gentoo.fbsd,
  -files/syslog-ng.conf.gentoo.fbsd.3.0,
  -files/syslog-ng.conf.gentoo.hardened,
  -files/syslog-ng.conf.gentoo.hardened.3.0, -files/syslog-ng.rc6-r1,
  -files/syslog-ng.rc6.3.0, -files/syslog-ng.rc6.3.0-r1:
  punt old ebuilds and files

*syslog-ng-3.0.9 (28 Nov 2010)

  28 Nov 2010; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-3.0.9.ebuild:
  3.0 version bump

*syslog-ng-3.1.3 (28 Nov 2010)

  28 Nov 2010; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-3.1.3.ebuild:
  version bump (bug #346735)

  20 Oct 2010; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-3.0.8.ebuild, syslog-ng-3.1.2.ebuild:
  Turn on the pcre use flag by default as requested by upstream (bug
  #341867)

  15 Oct 2010; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.1.2.ebuild:
  Stable for HPPA (bug #335825).

  19 Sep 2010; Raúl Porcel <armin76@gentoo.org> syslog-ng-3.1.2.ebuild:
  alpha/arm/ia64/s390/sh/sparc stable wrt #335825

  13 Sep 2010; Joseph Jezak <josejx@gentoo.org> syslog-ng-3.1.2.ebuild:
  Marked ppc stable for bug #335825.

  13 Sep 2010; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-2.1.4.ebuild, -syslog-ng-3.0.4.ebuild, -syslog-ng-3.0.6.ebuild,
  syslog-ng-3.0.8.ebuild, syslog-ng-3.1.1.ebuild, syslog-ng-3.1.2.ebuild:
  make sure people wanting a static build have the necessary library (bug
  #336516); clean old

  12 Sep 2010; Raúl Porcel <armin76@gentoo.org> syslog-ng-3.0.8.ebuild:
  alpha/ia64/s390/sh/sparc stable wrt #332335

  06 Sep 2010; Markos Chandras <hwoarang@gentoo.org> syslog-ng-3.1.2.ebuild:
  Stable on amd64 wrt bug #335825

  06 Sep 2010; Brent Baude <ranger@gentoo.org> syslog-ng-3.1.2.ebuild:
  Marking syslog-ng-3.1.2 ppc64 for bug 335825

  06 Sep 2010; Brent Baude <ranger@gentoo.org> syslog-ng-3.1.1.ebuild:
  Marking syslog-ng-3.1.1 ppc64 for bug 320299

  06 Sep 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  syslog-ng-3.1.2.ebuild:
  x86 stable wrt bug #335825

  23 Aug 2010; Markus Meier <maekke@gentoo.org> syslog-ng-3.0.8.ebuild:
  arm stable, bug #332335

  17 Aug 2010; Markos Chandras <hwoarang@gentoo.org> syslog-ng-3.0.8.ebuild:
  Stable on amd64 wrt bug #332335

  13 Aug 2010; Joseph Jezak <josejx@gentoo.org> syslog-ng-3.0.8.ebuild:
  Marked ppc/ppc64 stable for bug #332335.

  12 Aug 2010; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.0.8.ebuild:
  Stable for HPPA (bug #332335).

  12 Aug 2010; Christian Faulhammer <fauli@gentoo.org>
  syslog-ng-3.0.8.ebuild:
  stable x86, bug 332335

*syslog-ng-3.1.2 (04 Aug 2010)

  04 Aug 2010; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-3.1.2.ebuild:
  version bump

  28 Jul 2010; Michael Sterrett <mr_bones_@gentoo.org>
  -syslog-ng-3.0.7.ebuild:
  clean out known-broken version

*syslog-ng-3.0.8 (09 Jul 2010)

  09 Jul 2010; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-3.0.8.ebuild:
  3.0 series version bump

  03 Jul 2010; Raúl Porcel <armin76@gentoo.org> syslog-ng-3.1.1.ebuild:
  alpha/arm/ia64/s390/sh/sparc stable wrt #320299

*syslog-ng-3.0.7 (11 Jun 2010)

  11 Jun 2010; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-3.0.7.ebuild:
  version bump for 3.0 series

  11 Jun 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  syslog-ng-3.1.1.ebuild:
  x86 stable wrt bug #320299

  30 May 2010; Raúl Porcel <armin76@gentoo.org> syslog-ng-3.0.6.ebuild:
  alpha/ia64/s390/sh/sparc stable wrt #320297

  28 May 2010; Markus Meier <maekke@gentoo.org> syslog-ng-3.0.6.ebuild:
  arm/x86 stable, bug #320297

  25 May 2010; Pacho Ramos <pacho@gentoo.org> syslog-ng-3.1.1.ebuild:
  stable amd64, bug 320299

  20 May 2010; Peter Volkov <pva@gentoo.org> syslog-ng-3.0.6.ebuild:
  amd64 stable, bug 320297.

  19 May 2010; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.1.1.ebuild:
  Stable for HPPA PPC (bug #320299).

  19 May 2010; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.0.6.ebuild:
  Stable for PPC (bug #320297).

  19 May 2010; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.0.6.ebuild:
  Stable for HPPA (bug #320297).

*syslog-ng-3.1.1 (13 Apr 2010)
*syslog-ng-3.0.6 (13 Apr 2010)

  13 Apr 2010; Michael Sterrett <mr_bones_@gentoo.org>
  -syslog-ng-3.0.5.ebuild, -syslog-ng-3.0.5-r1.ebuild,
  +syslog-ng-3.0.6.ebuild, -syslog-ng-3.1.0.ebuild, +syslog-ng-3.1.1.ebuild:
  version bumps for 3.0 and 3.1; clean old

  07 Apr 2010; <zorry@gentoo.org> +files/syslog-ng.conf.gentoo.hardened.3:
  Missing file syslog-ng.conf.gentoo.hardened.3 #313675

*syslog-ng-3.1.0 (06 Apr 2010)

  06 Apr 2010; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-3.0.5-r1.ebuild, +syslog-ng-3.1.0.ebuild,
  +files/syslog-ng.conf.gentoo.3, +files/syslog-ng.conf.gentoo.fbsd.3,
  +files/syslog-ng.rc6.3:
  syslog-ng 3.x version bump; updated files/ to be generic for 3.x

  06 Apr 2010; Magnus Granberg <zorry@gentoo.org>
  +syslog-ng-3.0.5-r1 syslog-ng.conf.gentoo.hardened
  syslog-ng.logrotate.hardened:
  Fix bug #284669 #232847 #291259 Thank you all

*syslog-ng-3.0.5-r1 (06 Apr 2010)
  
  02 Mar 2010; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-3.0.4.ebuild, syslog-ng-3.0.5.ebuild:
  skip trying to install the non-existing reference (bug #299079)

  30 Dec 2009; Michael Sterrett <mr_bones_@gentoo.org>
  files/syslog-ng.rc6.3.0-r1:
  give start-stop-daemon the pidfile so multiple syslog-ng processes can be
  run (bug #295394)

*syslog-ng-3.0.5 (22 Dec 2009)

  22 Dec 2009; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-3.0.5.ebuild, +files/syslog-ng.rc6.3.0-r1:
  version bump; also addresses bug #293126

  02 Dec 2009; Raúl Porcel <armin76@gentoo.org> syslog-ng-3.0.4.ebuild:
  ia64/s390/sh/sparc stable wrt #289960

  18 Nov 2009; Brent Baude <ranger@gentoo.org> syslog-ng-3.0.4.ebuild:
  Marking syslog-ng-3.0.4 ppc64 for bug 289960

  16 Nov 2009; Markus Meier <maekke@gentoo.org> syslog-ng-3.0.4.ebuild:
  arm stable, bug #289960

  08 Nov 2009; Tobias Klausmann <klausman@gentoo.org>
  syslog-ng-3.0.4.ebuild:
  Stable on alpha, bug #289960

  06 Nov 2009; Michael Sterrett <mr_bones_@gentoo.org>
  files/syslog-ng.rc6-r1, files/syslog-ng.rc6.3.0:
  remove the --quiet option to start-stop-daemon so config errors are
  obvious (bug #291346)

  30 Oct 2009; Markus Meier <maekke@gentoo.org> syslog-ng-3.0.4.ebuild:
  amd64/x86 stable, bug #289960

  24 Oct 2009; nixnut <nixnut@gentoo.org> syslog-ng-3.0.4.ebuild:
  ppc stable #289960

  21 Oct 2009; Jeroen Roovers <jer@gentoo.org> syslog-ng-3.0.4.ebuild:
  Stable for HPPA (bug #289960).

  06 Sep 2009; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-3.0.4.ebuild:
  test suite is fairly broken unless run on upstream's development platform
  (bug #283717)


*syslog-ng-3.0.4 (08 Aug 2009)

  08 Aug 2009; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-3.0.4.ebuild:
  version bump

  01 Jun 2009; Michael Sterrett <mr_bones_@gentoo.org>
  -files/syslog-ng-2.1.3-nonstatic.patch, -syslog-ng-2.0.9.ebuild,
  -syslog-ng-2.1.3.ebuild:
  clean old ebuilds and files

  31 May 2009; Markus Meier <maekke@gentoo.org> syslog-ng-2.1.4.ebuild:
  amd64 stable, bug #270863

  31 May 2009; Markus Meier <maekke@gentoo.org> syslog-ng-2.0.10.ebuild:
  amd64 stable, bug #270862

  28 May 2009; Raúl Porcel <armin76@gentoo.org> syslog-ng-2.0.10.ebuild,
  syslog-ng-2.1.4.ebuild:
  alpha/arm/ia64/s390/sh/sparc stable wrt #270863 and #270862

  25 May 2009; Jeroen Roovers <jer@gentoo.org> syslog-ng-2.0.10.ebuild:
  Stable for HPPA (bug #270862).

  25 May 2009; Brent Baude <ranger@gentoo.org> syslog-ng-2.0.10.ebuild,
  syslog-ng-2.1.4.ebuild:
  Marking -2.1.4 and -2.0.10 ppc64 for bugs  270863 and 270862 respectively

  25 May 2009; Christian Faulhammer <fauli@gentoo.org>
  syslog-ng-2.0.10.ebuild:
  stable x86, bug 270862

  25 May 2009; Christian Faulhammer <fauli@gentoo.org>
  syslog-ng-2.1.4.ebuild:
  stable x86, bug 270863

*syslog-ng-3.0.2 (25 May 2009)

  25 May 2009; Michael Sterrett <mr_bones_@gentoo.org>
  +files/syslog-ng-3.0.2-ipv6.patch, +files/syslog-ng.conf.gentoo.3.0,
  +files/syslog-ng.conf.gentoo.fbsd.3.0,
  +files/syslog-ng.conf.gentoo.hardened.3.0, +files/syslog-ng.rc6.3.0,
  +syslog-ng-3.0.2.ebuild:
  version bump

  23 May 2009; nixnut <nixnut@gentoo.org> syslog-ng-2.0.10.ebuild,
  syslog-ng-2.1.4.ebuild:
  ppc stable #270862

  22 May 2009; Jeroen Roovers <jer@gentoo.org> syslog-ng-2.1.4.ebuild:
  Stable for HPPA (bug #270863).

*syslog-ng-2.0.10 (17 Apr 2009)

  17 Apr 2009; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-2.0.10.ebuild:
  2.0 version bump for people having issues with 2.1

*syslog-ng-2.1.4 (18 Mar 2009)

  18 Mar 2009; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-2.1.4.ebuild:
  version bump

  24 Feb 2009; Raúl Porcel <armin76@gentoo.org> syslog-ng-2.1.3.ebuild:
  arm/s390/sh stable

  15 Feb 2009; Brent Baude <ranger@gentoo.org> syslog-ng-2.1.3.ebuild:
  stable ppc, bug 256132

  07 Feb 2009; Raúl Porcel <armin76@gentoo.org> syslog-ng-2.1.3.ebuild:
  ia64 stable wrt #256132

  26 Jan 2009; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-2.1.3.ebuild:
  run eautoreconf after touching configure.in (bug #256455)

  25 Jan 2009; Tobias Klausmann <klausman@gentoo.org>
  syslog-ng-2.1.3.ebuild:
  Stable on alpha, bug #256132

  25 Jan 2009; Markus Meier <maekke@gentoo.org> syslog-ng-2.1.3.ebuild:
  amd64/x86 stable, bug #256132

  25 Jan 2009; Ferris McCormick <fmccor@gentoo.org> syslog-ng-2.1.3.ebuild:
  Sparc stable, Bug #256132.

  25 Jan 2009; Brent Baude <ranger@gentoo.org> syslog-ng-2.1.3.ebuild:
  stable ppc64, bug 256132

  23 Jan 2009; Jeroen Roovers <jer@gentoo.org> syslog-ng-2.1.3.ebuild:
  Stable for HPPA (bug #256132).

  08 Dec 2008; Michael Sterrett <mr_bones_@gentoo.org>
  +files/syslog-ng-2.1.3-nonstatic.patch, syslog-ng-2.1.3.ebuild:
  add patch from mastamind@users.sourceforge.net to avoid always trying to link
  glib statically (bug #250242)

  02 Dec 2008; Michael Sterrett <mr_bones_@gentoo.org>
  -syslog-ng-2.0.6.ebuild, -syslog-ng-2.1.1.ebuild:
  clean out old versions

*syslog-ng-2.1.3 (02 Dec 2008)

  02 Dec 2008; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-2.1.3.ebuild:
  version bump

  15 Oct 2008; Michael Sterrett <mr_bones_@gentoo.org>
  files/syslog-ng.logrotate:
  allow /var/log/messages to be missing (patch from  Edoceo via bug #242260)

  13 Oct 2008; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-2.1.1.ebuild:
  fix up magic sql support

*syslog-ng-2.1.1 (13 Oct 2008)

  13 Oct 2008; Robin H. Johnson <robbat2@gentoo.org>
  +syslog-ng-2.1.1.ebuild:
  Version bump because I want the suppress-repeats functionality for infra.

  17 Jul 2008; Doug Goldstein <cardoe@gentoo.org> metadata.xml:
  add GLEP 56 USE flag desc from use.local.desc

  25 May 2008; Markus Rothe <corsair@gentoo.org> syslog-ng-2.0.9.ebuild:
  Stable on ppc64; bug #223241

  24 May 2008; nixnut <nixnut@gentoo.org> syslog-ng-2.0.9.ebuild:
  Stable on ppc wrt bug 223241

  24 May 2008; Jeroen Roovers <jer@gentoo.org> syslog-ng-2.0.9.ebuild:
  Stable for HPPA (bug #223241).

  23 May 2008; Raúl Porcel <armin76@gentoo.org> syslog-ng-2.0.9.ebuild:
  alpha/ia64/sparc stable wrt #223241

  22 May 2008; Markus Meier <maekke@gentoo.org> syslog-ng-2.0.9.ebuild:
  amd64/x86 stable, bug #223241

*syslog-ng-2.0.9 (26 Mar 2008)

  26 Mar 2008; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-2.0.9.ebuild:
  version bump

*syslog-ng-2.0.8 (31 Jan 2008)

  31 Jan 2008; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-2.0.8.ebuild:
  version bump

  16 Jan 2008; Michael Sterrett <mr_bones_@gentoo.org> -files/syslog-ng.rc6,
  -syslog-ng-1.6.11-r1.ebuild:
  clean out 1.x series

  16 Jan 2008; Joshua Kinard <kumba@gentoo.org> syslog-ng-2.0.6.ebuild:
  Stable on mips.

  10 Jan 2008; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-2.0.6.ebuild:
  add dev-util/pkgconfig dep (bug #205013)

  21 Dec 2007; Samuli Suominen <drac@gentoo.org> syslog-ng-2.0.6.ebuild:
  amd64 stable wrt security #202718

  19 Dec 2007; Raúl Porcel <armin76@gentoo.org> syslog-ng-2.0.6.ebuild:
  alpha/ia64 stable wrt security #202718

  19 Dec 2007; Brent Baude <ranger@gentoo.org> syslog-ng-2.0.6.ebuild:
  Marking syslog-ng-2.0.6 ppc & ppc64 stable for 202718 (also marked eventlog
  for ppc dep)

  18 Dec 2007; Jeroen Roovers <jer@gentoo.org> syslog-ng-2.0.6.ebuild:
  Stable for HPPA (bug #202718).

  18 Dec 2007; Ferris McCormick <fmccor@gentoo.org> syslog-ng-2.0.6.ebuild:
  Sparc stable, security Bug #202718, all tests good and it still starts up.

  18 Dec 2007; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-2.0.6.ebuild:
  stablize x86 for security bug #202718

*syslog-ng-2.0.6 (29 Nov 2007)

  29 Nov 2007; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-2.0.6.ebuild:
  version bump

  04 Nov 2007; Michael Sterrett <mr_bones_@gentoo.org>
  files/syslog-ng.rc6-r1:
  Add a use stunnel for the networked case for bug #198003

  30 Oct 2007; <solar@gentoo.org> files/syslog-ng.conf.gentoo.hardened:
  - update syslog-ng.conf for hardened

  11 Oct 2007; Tom Gall <tgall@gentoo.org> syslog-ng-2.0.5.ebuild:
  stable on ppc64

  09 Oct 2007; Jeroen Roovers <jer@gentoo.org> syslog-ng-2.0.5.ebuild:
  Stable for HPPA (bug #159494).

  02 Oct 2007; Michael Sterrett <mr_bones_@gentoo.org>
  files/syslog-ng.rc6-r1:
  add a kludgy workaround for baselayout-1 and baselayout-2 support (bug
  #188725)

  02 Aug 2007; Michael Sterrett <mr_bones_@gentoo.org>
  files/syslog-ng.conf.gentoo:
  use file() for kmsg for correctness (bug #187232)

*syslog-ng-2.0.5 (25 Jul 2007)

  25 Jul 2007; Michael Sterrett <mr_bones_@gentoo.org>
  +files/syslog-ng.logrotate.hardened, +syslog-ng-2.0.5.ebuild:
  version bump; all add logrotate file for hardened (bug #186136)

  12 Jun 2007; Michael Sterrett <mr_bones_@gentoo.org>
  files/syslog-ng.conf.gentoo:
  set max-connections to 256 per upstream (bug #181661)

  07 Jun 2007; Michael Sterrett <mr_bones_@gentoo.org>
  -syslog-ng-1.6.9.ebuild, -syslog-ng-2.0.3.ebuild, syslog-ng-2.0.4.ebuild:
  clean out older ebuilds

  07 Jun 2007; Christian Faulhammer <opfer@gentoo.org> ChangeLog:
  modified ChangeLog to meet common standards

*syslog-ng-2.0.4 (21 May 2007)

  21 May 2007; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-2.0.4.ebuild:
  version bump

  19 May 2007; Peter Weller <welp@gentoo.org> syslog-ng-2.0.3.ebuild:
  Keyworded ~x86-fbsd wrt bug 176930

  05 May 2007; Michael Sterrett <mr_bones_@gentoo.org>
  files/syslog-ng.rc6-r1:
  revert back to previous version of rc script since that feature is available
  via the SSD_NICELEVEL env. variable.

  24 Apr 2007; Alexander Færøy <eroyf@gentoo.org>
  syslog-ng-1.6.11-r1.ebuild:
  Stable on MIPS.

  24 Apr 2007; Thilo Bangert <bangert@gentoo.org> Manifest:
  fix manifest (bug #175804)

  24 Apr 2007; Michael Sterrett <mr_bones_@gentoo.org>
  files/syslog-ng.rc6-r1:
  add patch from Mike Mattie to support starting syslog-ng with a nice value
  (bug #175639)

*syslog-ng-2.0.3 (27 Mar 2007)

  27 Mar 2007; Michael Sterrett <mr_bones_@gentoo.org>
  +files/syslog-ng.conf.gentoo.fbsd, -syslog-ng-2.0.2.ebuild,
  +syslog-ng-2.0.3.ebuild:
  masked version bump; clean out older masked version; add fbsd support for bug
  #156519; add spoof-source support for bug #172320

*syslog-ng-1.6.12-r1 (14 Mar 2007)

  14 Mar 2007; Roy Marples <uberlord@gentoo.org> files/syslog-ng.rc6-r1,
  +syslog-ng-1.6.12-r1.ebuild:
  init script now works on non bash shells.

  16 Feb 2007; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-1.6.11-r1.ebuild, syslog-ng-1.6.12.ebuild:
  remove ROOT use in src_compile (bug #167240)

*syslog-ng-1.6.12 (07 Feb 2007)

  07 Feb 2007; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-1.6.12.ebuild:
  version bump

  04 Feb 2007; Steve Dibb <beandog@gentoo.org> syslog-ng-1.6.11-r1.ebuild:
  amd64 stable, bug 164942

  04 Feb 2007; Markus Rothe <corsair@gentoo.org> syslog-ng-1.6.11-r1.ebuild:
  Stable on ppc64; bug #164942

  02 Feb 2007; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-1.6.11-r1.ebuild:
  stable on x86

  23 Jan 2007; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-1.6.9.ebuild, syslog-ng-1.6.11-r1.ebuild:
  remove portage dep (bug #163507)

  15 Jan 2007; Roy Marples <uberlord@gentoo.org> Manifest:
  Fix Manifest

  15 Jan 2007; Roy Marples <uberlord@gentoo.org> files/syslog-ng.rc6-r1:
  need localmount
  So we can go from single user to multi user.

*syslog-ng-2.0.1 (30 Dec 2006)

  30 Dec 2006; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-2.0.1.ebuild:
  masked version bump

  24 Dec 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  syslog-ng-1.6.11-r1.ebuild:
  Stable on ppc.

  18 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  syslog-ng-1.6.11-r1.ebuild:
  Stable on sparc

  06 Dec 2006; Michael Sterrett <mr_bones_@gentoo.org>
  -syslog-ng-1.6.11.ebuild, syslog-ng-1.6.11-r1.ebuild:
  clean up an errant rev bump

  06 Dec 2006; Jeroen Roovers <jer@gentoo.org> syslog-ng-1.6.11-r1.ebuild:
  Stable for HPPA.

*syslog-ng-2.0.0-r1 (29 Nov 2006)
*syslog-ng-1.6.11-r1 (29 Nov 2006)

  29 Nov 2006; Petteri Räty <betelgeuse@gentoo.org>
  +files/syslog-ng.rc6-r1, +syslog-ng-1.6.11-r1.ebuild,
  -syslog-ng-2.0.0.ebuild, +syslog-ng-2.0.0-r1.ebuild:
  Fixed bug #156585 where the init.d script could call eend twice with only
  one ebegin.

*syslog-ng-2.0.0 (02 Nov 2006)

  02 Nov 2006; Michael Sterrett <mr_bones_@gentoo.org>
  +files/syslog-ng.confd, files/syslog-ng.rc6, +syslog-ng-2.0.0.ebuild:
  new code base version bump; includes initial conf.d support for bug #101387
  with modified patch from Miguel Sousa Filipe

  02 Nov 2006; Joel Martin <kanaka@gentoo.org> syslog-ng-1.6.11.ebuild:
  Add ROOT to with-libol configure switch.

  21 Oct 2006; Aron Griffis <agriffis@gentoo.org> syslog-ng-1.6.11.ebuild:
  Mark 1.6.11 stable on alpha/ia64

  17 Jul 2006; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-1.6.9.ebuild, syslog-ng-1.6.11.ebuild:
  no need for prepallman (bug #140697)

  12 Jul 2006; <solar@gentoo.org> files/syslog-ng.conf.gentoo.hardened:
  - use correct facility for uucp log filter. bug #140168

*syslog-ng-1.6.11 (08 May 2006)

  08 May 2006; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-1.6.11.ebuild:
  version bump

*syslog-ng-1.6.10 (23 Apr 2006)

  23 Apr 2006; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-1.6.10.ebuild:
  version bump

  20 Feb 2006; Joshua Kinard <kumba@gentoo.org> syslog-ng-1.6.9.ebuild:
  Marked stable on mips.

  06 Feb 2006; Simon Stelling <blubb@gentoo.org> syslog-ng-1.6.9.ebuild:
  stable on amd64

  31 Jan 2006; Aron Griffis <agriffis@gentoo.org> syslog-ng-1.6.9.ebuild:
  Mark 1.6.9 stable on alpha

  27 Jan 2006; Michael Hanselmann <hansmi@gentoo.org>
  syslog-ng-1.6.9.ebuild:
  Stable on ppc.

  26 Jan 2006; Jeroen Roovers <jer@gentoo.org> syslog-ng-1.6.9.ebuild:
  Stable on hppa.

  22 Jan 2006; Markus Rothe <corsair@gentoo.org> syslog-ng-1.6.9.ebuild:
  Stable on ppc64

  22 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  syslog-ng-1.6.9.ebuild:
  Stable on sparc

  22 Jan 2006; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-1.6.9.ebuild:
  stable for x86

  25 Dec 2005; Joshua Kinard <kumba@gentoo.org> syslog-ng-1.6.8-r1.ebuild:
  Marked stable on mips.

*syslog-ng-1.6.9 (03 Dec 2005)

  03 Dec 2005; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-1.6.9.ebuild:
  version bump

  30 Nov 2005; Michael Sterrett <mr_bones_@gentoo.org>
  -syslog-ng-1.6.5-r2.ebuild, -syslog-ng-1.6.6.ebuild,
  -syslog-ng-1.6.7.ebuild:
  clean old versions

  30 Nov 2005; Bryan Østergaard <kloeri@gentoo.org>
  syslog-ng-1.6.8-r1.ebuild:
  Stable on alpha.

  24 Nov 2005; Markus Rothe <corsair@gentoo.org> syslog-ng-1.6.8-r1.ebuild:
  Stable on ppc64

  11 Nov 2005; Michael Hanselmann <hansmi@gentoo.org>
  syslog-ng-1.6.8-r1.ebuild:
  Stable on ppc.

  30 Oct 2005; Bryan Østergaard <kloeri@gentoo.org>
  syslog-ng-1.6.8-r1.ebuild:
  Stable on ia64.

  26 Oct 2005; Luis Medinas <metalgod@gentoo.org> syslog-ng-1.6.8-r1.ebuild:
  Marked Stable on amd64.

  24 Oct 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  syslog-ng-1.6.8-r1.ebuild:
  Stable on sparc

  23 Oct 2005; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-1.6.8-r1.ebuild:
  stable for x86

  02 Sep 2005; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-1.6.8-r1.ebuild:
  fix another bad bit of autotooling related to --with-libol (bug #104538)

*syslog-ng-1.6.8-r1 (02 Sep 2005)

  02 Sep 2005; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-1.6.8-r1.ebuild:
  rev bump to fix missing dep on sys-apps/which (bug #104475)

  01 Sep 2005; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-1.6.8.ebuild:
  inherit fixheadtails to fix bug #104475

  23 Aug 2005; Aron Griffis <agriffis@gentoo.org> syslog-ng-1.6.8.ebuild:
  stable on ia64

  06 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> syslog-ng-1.6.8.ebuild:
  Stable on mips.

  28 Jul 2005; Simon Stelling <blubb@gentoo.org> syslog-ng-1.6.8.ebuild:
  stable on amd64

  26 Jul 2005; Bryan Østergaard <kloeri@gentoo.org> syslog-ng-1.6.8.ebuild:
  Stable on alpha.

  19 Jul 2005; MATSUU Takuto <matsuu@gentoo.org> syslog-ng-1.6.8.ebuild:
  Stable on sh.

  09 Jul 2005; Markus Rothe <corsair@gentoo.org> syslog-ng-1.6.8.ebuild:
  Stable on ppc64

  09 Jul 2005; Joseph Jezak <josejx@gentoo.org> syslog-ng-1.6.8.ebuild:
  Marked stable on ppc.

  08 Jul 2005; Rene Nussbaumer <killerfox@gentoo.org>
  syslog-ng-1.6.8.ebuild:
  Stable on hppa.

  08 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  syslog-ng-1.6.8.ebuild:
  Stable on sparc

  07 Jul 2005; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-1.6.8.ebuild:
  stable for x86

*syslog-ng-1.6.8 (26 May 2005)

  26 May 2005; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-1.6.8.ebuild:
  version bump

  18 May 2005; Markus Rothe <corsair@gentoo.org> syslog-ng-1.6.7.ebuild:
  Stable on ppc64

  15 May 2005; Rene Nussbaumer <killerfox@gentoo.org>
  syslog-ng-1.6.7.ebuild:
  Stable on hppa

  13 May 2005; Fernando J. Pereda <ferdy@gentoo.org> syslog-ng-1.6.7.ebuild:
  1.6.7 alpha stable

  12 May 2005; Michael Sterrett <mr_bones_@gentoo.org>
  files/syslog-ng.conf.debian, files/syslog-ng.conf.gentoo,
  files/syslog-ng.conf.gentoo.hardened:
  fix up config files (bug #92330)

  11 May 2005; Marcus D. Hanwell <cryos@gentoo.org> syslog-ng-1.6.7.ebuild:
  Stable on amd64.

  09 May 2005; Lars Weiler <pylon@gentoo.org> syslog-ng-1.6.7.ebuild:
  Stable on ppc.

  09 May 2005; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-1.6.7.ebuild:
  install the stock config files as well (bug #91995)

  09 May 2005; Jeffrey Forman <jforman@gentoo.org> syslog-ng-1.6.7.ebuild:
  stable on sparc

  08 May 2005; Aron Griffis <agriffis@gentoo.org> syslog-ng-1.6.7.ebuild:
  stable on ia64

  08 May 2005; Joshua Kinard <kumba@gentoo.org> syslog-ng-1.6.7.ebuild:
  Marked stable on mips.

  08 May 2005; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-1.6.7.ebuild:
  stable for x86

  16 Apr 2005; Stephen Bennett <spb@gentoo.org>
  files/syslog-ng.conf.gentoo.hardened:
  Changed hardened config so as to open /proc/kmsg ro instead of rw.

*syslog-ng-1.6.7 (09 Apr 2005)

  09 Apr 2005; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-1.6.7.ebuild:
  version bump

  05 Apr 2005; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-1.6.6.ebuild:
  Add support for hardened-specified config file

  05 Apr 2005; <solar@gentoo.org> +files/syslog-ng.conf.gentoo.hardened:
  - added example hardened syslog-ng conf used by hardened profiles.

*syslog-ng-1.6.6 (26 Feb 2005)

  26 Feb 2005; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-1.6.6.ebuild:
  version bump

  28 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
  Change encoding to UTF-8 for GLEP 31 compliance

*syslog-ng-1.6.5-r2 (14 Dec 2004)

  14 Dec 2004; Aron Griffis <agriffis@gentoo.org> files/syslog-ng.rc6,
  -syslog-ng-1.6.5-r1.ebuild, +syslog-ng-1.6.5-r2.ebuild:
  Fix syslog-ng.conf net dependency again #74428

  01 Dec 2004; Michael Sterrett <mr_bones_@gentoo.org>
  -files/syslog-ng.conf.sample, syslog-ng-1.6.5-r1.ebuild:
  added syslog.conf from Debian as a sample (from bug #67267)

  01 Dec 2004; Michael Sterrett <mr_bones_@gentoo.org>
  -syslog-ng-1.6.2.ebuild, -syslog-ng-1.6.4.ebuild:
  clean older versions (fixes bug #71546)

  18 Nov 2004; Aron Griffis <agriffis@gentoo.org> syslog-ng-1.6.5-r1.ebuild:
  stable on ia64

  18 Nov 2004; Markus Rothe <corsair@gentoo.org> syslog-ng-1.6.5-r1.ebuild:
  stable on ppc64; bug #71613

  13 Oct 2004; Travis Tilley <lv@gentoo.org> syslog-ng-1.6.5-r1.ebuild:
  stable on amd64

  02 Oct 2004; Joshua Kinard <kumba@gentoo.org> syslog-ng-1.6.5-r1.ebuild:
  Marked stable on mips.

*syslog-ng-1.6.5-r1 (02 Oct 2004)

  02 Oct 2004; Bryan Østergaard <kloeri@gentoo.org> syslog-ng-1.6.5-r1.ebuild:
  Stable on alpha.

  28 Sep 2004; Aron Griffis <agriffis@gentoo.org> files/syslog-ng.rc6,
  -syslog-ng-1.6.5.ebuild:
  Don't use xargs to concatenate lines; it breaks on uneven quoting #65520

  25 Sep 2004; Jason Wever <weeve@gentoo.org> syslog-ng-1.6.5.ebuild:
  Stable on sparc.

  24 Sep 2004; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-1.6.5.ebuild:
  stable on x86

  18 Aug 2004; Aron Griffis <agriffis@gentoo.org> files/syslog-ng.rc6:
  Add xargs into the init-script to make parsing conf file more robust #60487

*syslog-ng-1.6.5 (16 Aug 2004)

  16 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org>
  +syslog-ng-1.6.5.ebuild:
  version bump (bug #60271)

  08 Aug 2004; Luca Barbato <lu_zero@gentoo.org> syslog-ng-1.6.4.ebuild:
  Marked ppc

  08 Aug 2004; <agriffis@gentoo.org> syslog-ng-1.6.4.ebuild:
  stable on ia64

  04 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org> files/syslog-ng.rc6:
  checkconfig before reload to catch mis-config earlier.  Patch from Eldad
  Zack via bug #58216

  05 Jul 2004; Joshua Kinard <kumba@gentoo.org> syslog-ng-1.6.4.ebuild:
  Marked stable on mips.

  25 Jun 2004; Tom Gall <tgall@gentoo.org> syslog-ng-1.6.4.ebuild:
  stable on ppc64, bug #54848

  25 Jun 2004; Guy Martin <gmsoft@gentoo.org> syslog-ng-1.6.4.ebuild:
  Marked stable on hppa.

  22 Jun 2004; Gustavo Zacarias <gustavoz@gentoo.org> syslog-ng-1.6.4.ebuild:
  Stable on sparc

  22 Jun 2004; <malc@gentoo.org> syslog-ng-1.6.4.ebuild:
  Mark stable on amd64

  22 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-1.6.4.ebuild:
  stable for x86

  16 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> syslog-ng-1.6.4.ebuild:
  Stable on alpha.

  05 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-1.6.4.ebuild:
  inherit flag-o-matic for append-ldflags; add use static support; dep fix for
  libol; tidy compile

*syslog-ng-1.6.4 (29 May 2004)

  29 May 2004; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-1.6.4.ebuild:
  version bump

  29 May 2004; Michael Sterrett <mr_bones_@gentoo.org> syslog-ng-1.6.2.ebuild:
  tidy

  12 May 2004; Michael McCabe <randy@gentoo.org> syslog-ng-1.6.2.ebuild:
  Added s390 keywords

  26 Apr 2004; Tom Gall <tgall@gentoo.org> syslog-ng-1.6.2.ebuild:
  stable on ppc64 (bug 49104)

  17 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-1.4.16-r2.ebuild, syslog-ng-1.6.0_rc1-r2.ebuild:
  clean out older versions

*syslog-ng-1.6.2 (14 Feb 2004)

  14 Feb 2004; Aron Griffis <agriffis@gentoo.org> syslog-ng-1.6.2.ebuild,
  files/syslog-ng.rc6:
  Fix bug 38475 by adding conditional dep on network in initscript. Didn't bump
  the rev since I don't think a lot of people care about this change. Also
  bumped the version to 1.6.2 for testing.

  05 Jan 2004; Brad House <brad_mssw@gentoo.org>
  syslog-ng-1.6.0_rc3-r1.ebuild:
  mark stable on amd64

  30 Dec 2003; Michael Sterrett <mr_bones_@gentoo.org>
  syslog-ng-1.6.0_rc3-r1.ebuild:
  The upstream source moved on us (bug 36394)

  11 Nov 2003; Aron Griffis <agriffis@gentoo.org>
  syslog-ng-1.6.0_rc3-r1.ebuild:
  Mark stable on ia64

  11 Nov 2003; Aron Griffis <agriffis@gentoo.org>
  syslog-ng-1.6.0_rc3-r1.ebuild:
  Add ~ia64

  22 Oct 2003; Michael Sterrett <mr_bones_@gentoo.org> metadata.xml:
  add metadata.xml

  05 Oct 2003; Brad House <brad_mssw@gentoo.org>
  syslog-ng-1.6.0_rc3-r1.ebuild:
  add ~amd64 flag

  03 Oct 2003; Aron Griffis <agriffis@gentoo.org>
  syslog-ng-1.6.0_rc3-r1.ebuild:
  Stable on alpha

*syslog-ng-1.6.0_rc3-r1 (17 Sep 2003)

  30 Sep 2003; Joshua Kinard <kumba@gentoo.org> syslog-ng-1.6.0_rc3-r1.ebuild:
  Changed ~sparc to sparc in KEYWORDS

*syslog-ng-1.6.0_rc1-r2 (17 Sep 2003)

  17 Sep 2003; Seemant Kulleen <seemant@gentoo.org>
  syslog-ng-1.4.16-r1.ebuild, syslog-ng-1.4.16-r2.ebuild,
  syslog-ng-1.6.0_rc1-r1.ebuild, syslog-ng-1.6.0_rc1-r2.ebuild,
  syslog-ng-1.6.0_rc3-r1.ebuild, syslog-ng-1.6.0_rc3.ebuild:
  version bump to provide virtual/logger

*syslog-ng-1.4.16-r2 (17 Sep 2003)

*syslog-ng-1.4.16-r1 (12 Mar 2003)

  29 Jun 2003; Daniel Ahlberg <aliz@gentoo.org> :
  Added missing changelog entry.

  31 May 2003; Seemant Kulleen <seemant@gentoo.org>
  syslog-ng-1.6.0_rc3.ebuild:
  slight fix for dohtml -- finally closing the bug

*syslog-ng-1.6.0_rc3 (18 May 2003)

  16 Jul 2003; Joshua Kinard <kumba@gentoo.org> syslog-ng-1.6.0_rc3.ebuild:
  Changed ~mips to mips in KEYWORDS

  02 Jul 2003; Guy Martin <gmsoft@gentoo.org> syslog-ng-1.6.0_rc3.ebuild :
  Marked stable on hppa.

  18 May 2003; Seemant Kulleen <seemant@gentoo.org>
  syslog-ng-1.6.0_rc1-r1.ebuild, syslog-ng-1.6.0_rc3.ebuild:
  html docs fix and version bump thanks to: Andy Dustman
  <andy-gentoo.54e552@dustman.net> in bug #19156

*syslog-ng-1.6.0_rc1-r1 (10 Mar 2003)

  14 May 2003; Joshua Kinard <kumba@gentoo.org> syslog-ng-1.6.0_rc1-r1.ebuild:
  Added ~mips to KEYWORDS

  01 May 2003; <msterret@gentoo.org> files/syslog-ng.conf.gentoo:
  updated files/syslog-ng.conf.gentoo with a user-uncommentable option
  for logging to address http://bugs.gentoo.org/show_bug.cgi?id=19824.

  14 Apr 2003; Guy Martin <gmsoft@gentoo.org> syslog-ng-1.6.0_rc1-r1.ebuild :
  Added hppa to KEYWORDS.

  12 Apr 2003; Seemant Kulleen <seemant@gentoo.org> Manifest,
  syslog-ng-1.6.0_rc1-r1.ebuild:
  doc fixes for html docs, thanks to: Andy Dustman
  <andy-gentoo.54e552@dustman.net> in bug #19156

  28 Mar 2003; Pieter Van den Abeele <pvdabeel@gentoo.org> syslog-ng-1.6.0_rc1-r1
  Moved to stable on ppc

  11 Mar 2003; Aron Griffis <agriffis@gentoo.org> files/syslog-ng.conf.gentoo:
  Minor update to default configuration; added stats(43200)

  10 Mar 2003; Aron Griffis <agriffis@gentoo.org>
  syslog-ng-1.6.0_rc1-r1.ebuild, files/syslog-ng.conf.gentoo,
  files/syslog-ng.logrotate:
  Bump revision to pick up new default configuration and logrotate snippet, both
  contributed by Michael Sterrett. This relates to bug #7144. Also mark stable
  on x86 and alpha since this is the version recommended for production use by
  the web page.

*syslog-ng-1.6.0_rc1 (05 Mar 2003)

  05 Mar 2003; Aron Griffis <agriffis@gentoo.org> syslog-ng-1.6.0_rc1.ebuild:
  Update to latest stable release candidate for bug #14335

*syslog-ng-1.5.26-r1 (27 Feb 2003)

  27 Feb 2003; Aron Griffis <agriffis@gentoo.org> syslog-ng-1.5.26-r1.ebuild,
  files/syslog-ng.rc6:
  Fix bug 16308 by adding a reload() function to the init script. Bumped the
  masked revision to pick up the change. Thanks to Michael Sterrett for his
  work debugging and providing the patch.  Also added ~alpha to KEYWORDS.

*syslog-ng-1.5.26 (09 Feb 2003)

  09 Feb 2003; Bruce A. Locke <blocke@shivan.org> syslog-ng-1.5.26.ebuild:
  Version Bump

  09 Feb 2003; Bruce A. Locke <blocke@shivan.org> syslog-ng-1.4.16-r1.ebuild,
  syslog-ng-1.4.17.ebuild:
  Removed message about syslog2ng script which is only found in 1.5.x

  21 Jan 2003; Aron Griffis <agriffis@gentoo.org> syslog-ng-1.4.16-r1.ebuild:
  Revision bump to pick up new initscript on the stable package.

  21 Jan 2003; Aron Griffis <agriffis@gentoo.org> syslog-ng-1.5.24-r1.ebuild
  files/syslog-ng.rc6 :
  Add a pause after stopping syslog-ng to allow it to stop, particularly in
  case it's restarting.  This is particularly important when using logrotate.
  Bumped the revision to get the new initscript installed.  Closes #14310

*syslog-ng-1.5.24 (26 Dec 2002)

  26 Dec 2002 Martin Holzer <mholzer@gentoo.org> syslog-ng-1.5.24.ebuild
  files/digest-syslog-ng-1.5.24 ChangeLog :
  Version Pumped. Closes #12714.
 
*syslog-ng-1.4.17 (05 Nov 2002)

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords

  05 Nov 2002; Daniel Ahlberg <aliz@gentoo.org> :
  Version bump.

*syslog-ng-1.4.16 (25 Oct 2002)

  04 Nov 2002; Seemant Kulleen <Seemant@gentoo.org> *.ebuild :
  Added sys-devel/flex to DEPENDS. Closes bug #10185 by lordvan@lordvan.com
  (Thomas Raschbacher)

  25 Oct 2002; Donny Davies <woodchip@gentoo.org> :
  Arrgh.  This is the *stable version of syslog-ng, and according to our
  friends on #9278, the only branch currently with working UDP/TCP support.
  I've marked the development versions with ~, and this one stable :/

*syslog-ng-1.5.22 (23 Oct 2002)

  23 Oct 2002; Donny Davies <woodchip@gentoo.org> :
  Bug fix release.  Thanks rkilgore@hotpop.com, wylie@geekasylum.org; #9278.

*syslog-ng-1.5.21 (12 Oct 2002)

  12 Oct 2002; Seemant Kulleen <seemant@gentoo.org> syslog-ng-1.5.21.ebuild :
  Works on sparcs

  12 Oct 2002; Bruce A. Locke <blocke@shivan.org> syslog-ng-1.5.21.ebuild,
  files/syslog-ng.conf.sample:
  Version bump and older versions removed due to security issue.  "kernsrc"
  line in example configuration file fixed. (Bugs #7951 and #7996)

*syslog-ng-1.5.19 (17 Aug 2002)

  14 Sep 2002; Bruce A. Locke <blocke@shivan.org> syslog-ng-1.5.19.ebuild:
  Fixed bug introduced with previous fix (#7757)

  17 Aug 2002; Bruce A. Locke <blocke@shivan.org> syslog-ng-1.5.19.ebuild:
  Updated ebuild contributed by mw@teamzone.de (Markus Wagner) plus
  -lwrap buglet fix
  
*syslog-ng-1.5.17 (21 May 2002)

  14 Aug 2002; Jack Morgan <jmorgan@gentoo.org> syslog-ng-1.4.15.ebuild,
  syslog-ng-1.5.17.ebuild:
  Added sparc64 to KEYWORDS.

*syslog-ng-1.5.17 (21 May 2002)

  30 Jul 2002; Calum Selkirk <cselkirk@gentoo.org> syslog-ng-1.5.17.ebuild :
  Added -ppc to KEYWORDS.

  21 May 2002; Bruce A. Locke <blocke@shivan.org> syslog-ng-1.5.17.ebuild :
  New development branch version... a pain to compile and is masked out

*syslog-ng-1.4.15 (21 May 2002)

  21 May 2002; Bruce A. Locke <blocke@shivan.org> syslog-ng-1.4.15.ebuild :
  New Version

*syslog-ng-1.4.12-r9 (3 May 2002)

  3 May 2002; Donny Davies <woodchip@gentoo.org> :
  Add LICENSE, SLOT, $Headers.

*syslog-ng-1.4.12-r8 (11 Mar 2002)

  11 Mar 2002; M.Schlemmer <azarah@gentoo.org> :
  Updated rc-script to provide "logger".

*syslog-ng-1.4.12-r7 (1 Feb 2002)

  1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :
  Added initial ChangeLog which should be updated whenever the package is
  updated in any way. This changelog is targetted to users. This means that the
  comments should well explained and written in clean English. The details about
  writing correct changelogs are explained in the skel.ChangeLog file which you
  can find in the root directory of the portage repository.