summaryrefslogtreecommitdiff
blob: 0d3a092ecf0cff2925d2e572a18ccb80e64c8959 (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
# ChangeLog for net-dns/bind
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/ChangeLog,v 1.264 2010/03/30 13:25:32 idl0r Exp $

  30 Mar 2010; Christian Ruppert <idl0r@gentoo.org> -bind-9.4.3_p4.ebuild:
  Remove bind-9.4.3_p4.ebuild, bug 308035 and bug 301548

  23 Mar 2010; Brent Baude <ranger@gentoo.org> bind-9.4.3_p5.ebuild:
  Marking bind-9.4.3_p5 ppc for bug 301548

  07 Mar 2010; Markus Meier <maekke@gentoo.org> bind-9.4.3_p5.ebuild:
  amd64 stable, bug #301548

  03 Mar 2010; Raúl Porcel <armin76@gentoo.org> bind-9.4.3_p5.ebuild:
  alpha/arm/ia64/s390/sh/sparc stable wrt #301548

  02 Mar 2010; Brent Baude <ranger@gentoo.org> bind-9.4.3_p5.ebuild:
  Marking bind-9.4.3_p5 ppc64 for bug 301548

  02 Mar 2010; Jeroen Roovers <jer@gentoo.org> bind-9.4.3_p5.ebuild:
  Stable for HPPA (bug #301548).

  02 Mar 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> bind-9.4.3_p5.ebuild:
  x86 stable wrt security bug #301548

  25 Feb 2010; Robin H. Johnson <robbat2@gentoo.org> files/named.confd-r3,
  files/named.init-r7:
  Bug #306789: Depending on configuration, we might need to tell RNDC where
  to connect.

*bind-9.6.1_p3 (26 Jan 2010)
*bind-9.4.3_p5 (26 Jan 2010)

  26 Jan 2010; Christian Ruppert <idl0r@gentoo.org> -bind-9.4.3_p3.ebuild,
  +bind-9.4.3_p5.ebuild, -bind-9.6.1_p2.ebuild, +bind-9.6.1_p3.ebuild:
  Version bump, bug 301548. Clean up.

  09 Dec 2009; Raúl Porcel <armin76@gentoo.org> bind-9.4.3_p4.ebuild:
  alpha/ia64/s390/sh/sparc stable wrt #294497

  09 Dec 2009; Jeroen Roovers <jer@gentoo.org> bind-9.4.3_p4.ebuild:
  Stable for PPC (bug #294497).

  08 Dec 2009; Brent Baude <ranger@gentoo.org> bind-9.4.3_p4.ebuild,
  bind-9.6.1_p2.ebuild:
  Marking bind-9.4.3_p4 and -9.6.1_p2 for bug 294497

  03 Dec 2009; Markus Meier <maekke@gentoo.org> bind-9.4.3_p4.ebuild:
  amd64/arm/x86 stable, bug #294497

  03 Dec 2009; Jeroen Roovers <jer@gentoo.org> bind-9.4.3_p4.ebuild:
  Stable for HPPA (bug #294497).

  25 Nov 2009; Christian Ruppert <idl0r@gentoo.org> -files/127.zone,
  -files/bind-9.3.2-missing_odbc_test.patch, -bind-9.4.3_p2.ebuild,
  -bind-9.5.1_p3.ebuild, -files/bind-dlzbdb-includes.patch,
  -files/libcap.patch, -files/localhost.zone-r1, -files/localhost.zone-r2,
  -files/named.confd-r1, -files/named.init-r4, -files/named.init-r6:
  Clean up.

*bind-9.6.1_p2 (25 Nov 2009)
*bind-9.4.3_p4 (25 Nov 2009)

  25 Nov 2009; Christian Ruppert <idl0r@gentoo.org> +bind-9.4.3_p4.ebuild,
  -bind-9.6.1_p1.ebuild, -bind-9.6.1_p1-r1.ebuild, +bind-9.6.1_p2.ebuild:
  Bump due to bug 294497.

  13 Nov 2009; Tomáš Chvátal <scarabeus@gentoo.org>
  bind-9.6.1_p1-r1.ebuild:
  Update the annoying elog messages to einfo. Remove obsolete ewarn.

*bind-9.6.1_p1-r1 (12 Nov 2009)

  12 Nov 2009; Tomáš Chvátal <scarabeus@gentoo.org>
  +bind-9.6.1_p1-r1.ebuild, +files/named.confd-r3, +files/named.init-r7:
  Fix initscript bugs #279568 and #257632.

  12 Nov 2009; Tomáš Chvátal <scarabeus@gentoo.org> bind-9.6.1_p1.ebuild:
  Fix collision issues. Per bug #276966 and #282565.

  13 Aug 2009; Christian Ruppert <idl0r@gentoo.org> files/named.ca,
  files/named.init-r6:
  Update named.ca. Removed proc mount.

  01 Aug 2009; Raúl Porcel <armin76@gentoo.org> bind-9.4.3_p3.ebuild:
  alpha/arm/ia64/s390/sh stable wrt #279508

  31 Jul 2009; Tiago Cunha <tcunha@gentoo.org> bind-9.4.3_p3.ebuild:
  stable sparc, security bug 279508

  30 Jul 2009; Joseph Jezak <josejx@gentoo.org> bind-9.4.3_p3.ebuild:
  Marked ppc/ppc64 stable for bug #279508.

*bind-9.5.1_p3 (30 Jul 2009)

  30 Jul 2009; Tobias Scherbaum <dertobi123@gentoo.org>
  -bind-9.5.1_p2.ebuild, +bind-9.5.1_p3.ebuild:
  Version bump

  29 Jul 2009; Markus Meier <maekke@gentoo.org> bind-9.4.3_p3.ebuild:
  x86 stable, bug #279508

  29 Jul 2009; Christian Ruppert <idl0r@gentoo.org> bind-9.6.1_p1.ebuild:
  Fix epatch.

*bind-9.6.1_p1 (29 Jul 2009)

  29 Jul 2009; Christian Ruppert <idl0r@gentoo.org> -bind-9.6.1.ebuild,
  +bind-9.6.1_p1.ebuild:
  Version bump to 9.6.1_p1 due to CVE-2009-0696, bug 279508.

  29 Jul 2009; <chainsaw@gentoo.org> bind-9.4.3_p3.ebuild:
  Marked stable on AMD64 as requested by Robert Buchholz <rbu@gentoo.org> in
  security bug #279508. Tested with USE="berkdb idn ipv6 ldap resolvconf ssl 
  threads urandom -dlz -doc -mysql -odbc -postgres (-selinux)" on a Core2 
  Duo.

  28 Jul 2009; Jeroen Roovers <jer@gentoo.org> bind-9.4.3_p3.ebuild:
  Stable for HPPA (bug #279508).

*bind-9.4.3_p3 (28 Jul 2009)

  28 Jul 2009; Tobias Scherbaum <dertobi123@gentoo.org>
  +bind-9.4.3_p3.ebuild:
  Version bump, #279508

  28 Jul 2009; Tobias Scherbaum <dertobi123@gentoo.org>
  -bind-9.4.2_p2.ebuild, -bind-9.4.3_p1.ebuild, -bind-9.6.0_p1.ebuild:
  Cleanup

  26 Jul 2009; Christian Ruppert <idl0r@gentoo.org> bind-9.6.1.ebuild,
  +files/bind-9.6.1-parallel.patch:
  Add parallel-build patch, bug 278364 (only a workaround).

*bind-9.6.1 (19 Jul 2009)

  19 Jul 2009; Christian Ruppert <idl0r@gentoo.org> +bind-9.6.1.ebuild,
  +files/named.init-r6:
  Version bump to 9.6.1, bug 274494. Fix bug 275684. Add xml useflags.
  append-flags -D_GNU_SOURCE is not needed anymore since it has been fixed
  by upstream. Fix HOMEPAGE. Cleanup.

  31 May 2009; Mike Auty <ikelos@gentoo.org> metadata.xml:
  Fixing typo in local USE flag description (see bug 271604).

  15 Apr 2009; Markus Meier <maekke@gentoo.org> bind-9.4.3_p2.ebuild:
  amd64 stable, bug #264301

  15 Apr 2009; Raúl Porcel <armin76@gentoo.org> bind-9.4.3_p2.ebuild:
  alpha/arm/ia64/s390/sh/sparc/x86 stable wrt #264301

  14 Apr 2009; Jeroen Roovers <jer@gentoo.org> bind-9.4.3_p2.ebuild:
  Stable for HPPA (bug #264301).

  13 Apr 2009; Brent Baude <ranger@gentoo.org> bind-9.4.3_p2.ebuild:
  Marking bind-9.4.3_p2 ppc64 and ppc for bug 264301

*bind-9.5.1_p2 (11 Apr 2009)
*bind-9.4.3_p2 (11 Apr 2009)

  11 Apr 2009; Tobias Scherbaum <dertobi123@gentoo.org>
  -bind-9.3.2-r5.ebuild, -bind-9.4.1_p1.ebuild, +bind-9.4.3_p2.ebuild,
  -bind-9.5.1_p1.ebuild, +bind-9.5.1_p2.ebuild:
  Version bump(s), #265095, #264301

  10 Jan 2009; Raúl Porcel <armin76@gentoo.org> bind-9.4.3_p1.ebuild:
  ia64/sparc stable wrt #254134

  10 Jan 2009; Markus Meier <maekke@gentoo.org> bind-9.4.3_p1.ebuild:
  amd64/x86 stable, bug #254134

  09 Jan 2009; Tobias Klausmann <klausman@gentoo.org> bind-9.4.3_p1.ebuild:
  Stable on alpha, bug #254134

  09 Jan 2009; Tobias Scherbaum <dertobi123@gentoo.org>
  bind-9.4.3_p1.ebuild:
  ppc stable, bug #254134

  08 Jan 2009; Brent Baude <ranger@gentoo.org> bind-9.4.3_p1.ebuild:
  Marking bind-9.4.3_p1 ppc64 for bug 254134

  08 Jan 2009; Guy Martin <gmsoft@gentoo.org> bind-9.4.3_p1.ebuild:
  hppa stable, #254134

*bind-9.6.0_p1 (07 Jan 2009)
*bind-9.5.1_p1 (07 Jan 2009)

  07 Jan 2009; Tobias Scherbaum <dertobi123@gentoo.org> -bind-9.5.1.ebuild,
  +bind-9.5.1_p1.ebuild, -bind-9.6.0.ebuild, +bind-9.6.0_p1.ebuild:
  Version bump, #254134

*bind-9.4.3_p1 (07 Jan 2009)

  07 Jan 2009; Tobias Scherbaum <dertobi123@gentoo.org>
  +bind-9.4.3_p1.ebuild:
  Version bump, #254134

  28 Dec 2008; Tobias Scherbaum <dertobi123@gentoo.org> bind-9.5.1.ebuild,
  bind-9.6.0.ebuild:
  Now fix #247979 for real.

*bind-9.6.0 (26 Dec 2008)

  26 Dec 2008; Tobias Scherbaum <dertobi123@gentoo.org> +bind-9.6.0.ebuild:
  Version bump

*bind-9.5.1 (26 Dec 2008)

  26 Dec 2008; Tobias Scherbaum <dertobi123@gentoo.org> +files/127.zone-r1,
  +files/localhost.zone-r3, -bind-9.4.2_p2-r1.ebuild, -bind-9.4.3.ebuild,
  -bind-9.5.0_p2-r1.ebuild, +bind-9.5.1.ebuild:
  Version bump, fix chroot configuration (#247979) and fix localhost/127.zones
  (#246175)

*bind-9.4.3 (19 Nov 2008)

  19 Nov 2008; Tobias Scherbaum <dertobi123@gentoo.org> +bind-9.4.3.ebuild:
  Version bump

  03 Nov 2008; Raúl Porcel <armin76@gentoo.org> bind-9.4.1_p1.ebuild,
  bind-9.4.2_p2.ebuild, bind-9.4.2_p2-r1.ebuild, bind-9.5.0_p2-r1.ebuild:
  Remove resolvconf-gentoo dep, as its p.masked and going to be removed

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

  03 Aug 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  -bind-9.4.2_p1.ebuild, bind-9.4.2_p2.ebuild:
  ppc stable, bug #233675

*bind-9.5.0_p2-r1 (03 Aug 2008)
*bind-9.4.2_p2-r1 (03 Aug 2008)

  03 Aug 2008; Tobias Scherbaum <dertobi123@gentoo.org> +files/libcap.patch,
  +bind-9.4.2_p2-r1.ebuild, -bind-9.5.0_p2.ebuild, +bind-9.5.0_p2-r1.ebuild:
  Fix threading, add dep on libcap (#220167)

  02 Aug 2008; Raúl Porcel <armin76@gentoo.org> bind-9.4.2_p2.ebuild:
  alpha/ia64/sparc/x86 stable wrt #233675

  02 Aug 2008; Markus Rothe <corsair@gentoo.org> bind-9.4.2_p2.ebuild:
  Stable on ppc64; bug #233675

  02 Aug 2008; Jeroen Roovers <jer@gentoo.org> bind-9.4.2_p2.ebuild:
  Stable for HPPA (bug #233675).

  02 Aug 2008; <chainsaw@gentoo.org> bind-9.4.2_p2.ebuild:
  Stable AMD64 keyword for security bug #233675, tested on Opteron 2218
  (hardened/amd64, gcc-3.4.6, glibc-2.6.1-r0, 2.6.24-hardened-r3 x86_64) and
  Opteron 2354 (default/linux/amd64/2008.0/developer, gcc-4.3.1,
  glibc-2.8_p20080602-r0, 2.6.27-rc1-00154-g660fc1f-dirty x86_64).

*bind-9.5.0_p2 (02 Aug 2008)
*bind-9.4.2_p2 (02 Aug 2008)

  02 Aug 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  +bind-9.4.2_p2.ebuild, -bind-9.5.0_p1-r2.ebuild, +bind-9.5.0_p2.ebuild:
  Version bump

*bind-9.5.0_p1-r2 (27 Jul 2008)

  27 Jul 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  -bind-9.5.0_p1.ebuild, -bind-9.5.0_p1-r1.ebuild, +bind-9.5.0_p1-r2.ebuild:
  Revbump, fix IPv6 support for glibc-2.8

  25 Jul 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  bind-9.5.0_p1-r1.ebuild:
  Only apply bind-dlzmysql5-reconnect.patch if we have >=mysql-5, #180720

*bind-9.5.0_p1-r1 (20 Jul 2008)

  20 Jul 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  +bind-9.5.0_p1-r1.ebuild:
  Add patch to include the sdb-ldap backend, #160567

  20 Jul 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  -files/bind-9.2.5-berkdb_fix.patch, -files/bind-9.2.5-dlz-mysql.patch,
  -files/bind-9.2.5-mysql.patch, -files/bind-9.2.8-missing_odbc_test.patch,
  -files/bind-9.3.4-missing_odbc_test.patch,
  -files/bind-dlzbdb-close_cursor.patch, -files/localhost.zone,
  -files/named.conf-r2, -files/named.confd, -files/named.init,
  -files/named.init-r2, -files/named.init-r3, -files/named.rc,
  -files/named.rc6, -files/named.rc6-pid_fix,
  -files/named.rc6-smart_pid_fix, -bind-9.2.6.ebuild, -bind-9.2.6-r3.ebuild,
  -bind-9.2.6-r4.ebuild, -bind-9.2.6-r5.ebuild, -bind-9.2.8.ebuild,
  -bind-9.2.8-r3.ebuild, -bind-9.3.2.ebuild, -bind-9.3.2-r3.ebuild,
  -bind-9.3.2-r4.ebuild, -bind-9.3.4.ebuild, -bind-9.3.4-r2.ebuild,
  -bind-9.3.4-r3.ebuild, -bind-9.4.1-r1.ebuild:
  Cleanup

  10 Jul 2008; Guy Martin <gmsoft@gentoo.org> bind-9.4.2_p1.ebuild:
  Stable on hppa, bug #231201

  09 Jul 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  bind-9.4.2_p1.ebuild:
  ppc stable, bug #231201

  09 Jul 2008; Richard Freeman <rich0@gentoo.org> bind-9.4.2_p1.ebuild:
  amd64 stable - 231201

  09 Jul 2008; Raúl Porcel <armin76@gentoo.org> bind-9.4.2_p1.ebuild:
  alpha/ia64/sparc stable wrt #231201

  09 Jul 2008; Christian Faulhammer <opfer@gentoo.org> bind-9.4.2_p1.ebuild:
  stable x86, security bug 231201

  09 Jul 2008; Markus Rothe <corsair@gentoo.org> bind-9.4.2_p1.ebuild:
  Stable on ppc64; bug #231201

*bind-9.5.0_p1 (08 Jul 2008)
*bind-9.4.2_p1 (08 Jul 2008)

  08 Jul 2008; Tobias Scherbaum <dertobi123@gentoo.org> -bind-9.4.2.ebuild,
  +bind-9.4.2_p1.ebuild, -bind-9.5.0.ebuild, +bind-9.5.0_p1.ebuild:
  Version bump(s), security bug #231201

  06 Jun 2008; Tobias Scherbaum <dertobi123@gentoo.org> bind-9.5.0.ebuild:
  Remove useless DLZ_VERSION

*bind-9.5.0 (04 Jun 2008)

  04 Jun 2008; Tobias Scherbaum <dertobi123@gentoo.org> +bind-9.5.0.ebuild:
  Version bump, #224239

  29 May 2008; Raúl Porcel <armin76@gentoo.org> bind-9.2.8.ebuild,
  bind-9.2.8-r3.ebuild, bind-9.3.4.ebuild, bind-9.3.4-r2.ebuild,
  bind-9.3.4-r3.ebuild, bind-9.4.1-r1.ebuild, bind-9.4.1_p1.ebuild:
  Fix depend on openresolv, since resolvconf-gentoo is masked

  11 May 2008; <solar@gentoo.org> bind-9.4.2.ebuild:
  - cross compile fix

  09 May 2008; Tobias Scherbaum <dertobi123@gentoo.org> bind-9.4.2.ebuild:
  Fix building with libtool-2, patch by Rafał Mużyło and Christian
  Schmidt, #220361

  03 May 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  +files/bind-dlzmysql5-reconnect.patch, bind-9.4.2.ebuild:
  Fix dlz/mysql5 autoreconnect, patch by Nicolas Brousse, #180720

  03 May 2008; Tobias Scherbaum <dertobi123@gentoo.org> -bind-9.2.7.ebuild,
  -bind-9.3.3.ebuild:
  Nuke 9.2.7 and 9.3.3 (# 208676)

*bind-9.4.2 (03 May 2008)

  03 May 2008; Tobias Scherbaum <dertobi123@gentoo.org> files/127.zone,
  files/named.ca, +bind-9.4.2.ebuild:
  Bump to 9.4.2, add epunt_cxx to remove useless c++ checks (# 185596),
  update hints file wrt new ip for L root server and IPv6 additions
  (#197959), fix 127.zone configuration (# 198011), move resolconf use to
  RDEPEND and add openresolv (# 218808)

  17 Mar 2008; <ricmm@gentoo.org> bind-9.2.6.ebuild, bind-9.3.2.ebuild,
  bind-9.4.1-r1.ebuild, bind-9.4.1_p1.ebuild:
  Drop to ~mips due to unstable deps

  29 Feb 2008; Raúl Porcel <armin76@gentoo.org> bind-9.2.6-r5.ebuild,
  bind-9.2.8-r3.ebuild, bind-9.3.2-r5.ebuild, bind-9.3.4-r3.ebuild:
  alpha/ia64/sparc/x86 stable

  01 Aug 2007; Joshua Kinard <kumba@gentoo.org> bind-9.4.1_p1.ebuild:
  Stable on mips, per #186556.

  30 Jul 2007; Markus Rothe <corsair@gentoo.org> bind-9.4.1_p1.ebuild:
  Stable on ppc64; bug #186556

  28 Jul 2007; Steve Dibb <beandog@gentoo.org> bind-9.4.1_p1.ebuild:
  amd64 stable, security bug 186556

  28 Jul 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  bind-9.4.1_p1.ebuild:
  ppc stable, bug #186556

  28 Jul 2007; Raúl Porcel <armin76@gentoo.org> bind-9.4.1_p1.ebuild:
  alpha/ia64/x86 stable wrt security #186556

  27 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org> bind-9.4.1_p1.ebuild:
  Stable on sparc wrt security #186556

  27 Jul 2007; Jeroen Roovers <jer@gentoo.org> bind-9.4.1_p1.ebuild:
  Stable for HPPA (bug #186556).

*bind-9.4.1_p1 (27 Jul 2007)

  27 Jul 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  +bind-9.4.1_p1.ebuild:
  Version bump, bug #186556

  21 Jun 2007; Raúl Porcel <armin76@gentoo.org> bind-9.4.1-r1.ebuild:
  ia64 stable wrt security #131337

  21 Jun 2007; Joshua Kinard <kumba@gentoo.org> bind-9.4.1-r1.ebuild:
  Stable on mips, per #131337.

  17 Jun 2007; René Nussbaumer <killerfox@gentoo.org> bind-9.4.1-r1.ebuild:
  Stable on hppa. See bug #181556.

  17 Jun 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  bind-9.4.1-r1.ebuild:
  ppc stable, bug #181556

  12 Jun 2007; <trapni@gentoo.org> bind-9.4.1-r1.ebuild:
  marking stable on amd64

  11 Jun 2007; Raúl Porcel <armin76@gentoo.org> bind-9.4.1-r1.ebuild:
  alpha/x86 stable and add ~ia64 wrt #181556

  11 Jun 2007; Gustavo Zacarias <gustavoz@gentoo.org> bind-9.4.1-r1.ebuild:
  Stable on sparc wrt #181556

  11 Jun 2007; Markus Rothe <corsair@gentoo.org> bind-9.4.1-r1.ebuild:
  Stable on ppc64; bug #181556

  10 Jun 2007; Joshua Kinard <kumba@gentoo.org> bind-9.4.1-r1.ebuild:
  Marked unstable on mips, per #181556.

*bind-9.4.1-r1 (02 Jun 2007)
*bind-9.3.4-r3 (02 Jun 2007)
*bind-9.2.8-r3 (02 Jun 2007)

  02 Jun 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  +files/named.confd-r2, +files/named.init-r5, -bind-9.2.8-r2.ebuild,
  +bind-9.2.8-r3.ebuild, +bind-9.3.4-r3.ebuild, -bind-9.4.1.ebuild,
  +bind-9.4.1-r1.ebuild:
  Closing bugs #151839 and #175644.

  12 May 2007; Roy Marples <uberlord@gentoo.org> files/named.init-r4:
  Fix chroots for non bash shells, #178050 thanks to Pierre Guinoiseau.

  12 May 2007; Joshua Kinard <kumba@gentoo.org> bind-9.3.3.ebuild:
  Stable on mips.

  11 May 2007; Konstantin V. Arkhipov <voxus@gentoo.org> bind-9.4.1.ebuild:
  Closing bug #177902.

  06 May 2007; Marius Mauch <genone@gentoo.org> bind-9.2.6.ebuild,
  bind-9.2.6-r3.ebuild, bind-9.2.6-r4.ebuild, bind-9.2.6-r5.ebuild,
  bind-9.2.7.ebuild, bind-9.2.8.ebuild, bind-9.2.8-r2.ebuild,
  bind-9.3.2.ebuild, bind-9.3.2-r3.ebuild, bind-9.3.2-r4.ebuild,
  bind-9.3.2-r5.ebuild, bind-9.3.3.ebuild, bind-9.3.4.ebuild,
  bind-9.3.4-r2.ebuild, bind-9.4.1.ebuild:
  Replacing einfo with elog/ewarn.

*bind-9.4.1 (01 May 2007)

  01 May 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -bind-9.4.0-r2.ebuild, +bind-9.4.1.ebuild:
  Version bump wrt bug #176677.

  28 Apr 2007; Sven Wegener <swegener@gentoo.org> bind-9.2.6.ebuild,
  bind-9.2.6-r3.ebuild, bind-9.2.6-r4.ebuild, bind-9.2.6-r5.ebuild,
  bind-9.2.7.ebuild, bind-9.2.8.ebuild, bind-9.2.8-r2.ebuild,
  bind-9.3.2.ebuild, bind-9.3.2-r3.ebuild, bind-9.3.2-r4.ebuild,
  bind-9.3.2-r5.ebuild, bind-9.3.3.ebuild, bind-9.3.4.ebuild,
  bind-9.3.4-r2.ebuild, bind-9.4.0-r2.ebuild:
  Fix *initd, *confd and *envd calls (#173884, #174266)

  22 Apr 2007; Raúl Porcel <armin76@gentoo.org> bind-9.3.4-r2.ebuild:
  ia64 stable

  16 Apr 2007; Markus Rothe <corsair@gentoo.org> bind-9.3.4-r2.ebuild:
  Stable on ppc64

  06 Apr 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  bind-9.3.4-r2.ebuild:
  ppc stable

  22 Mar 2007; Gustavo Zacarias <gustavoz@gentoo.org> bind-9.3.4-r2.ebuild:
  Stable on sparc

  13 Mar 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  bind-9.3.4-r2.ebuild:
  Stable on amd64 due to ssp-related problems.

  13 Mar 2007; Tony Vroon <chainsaw@gentoo.org> bind-9.3.4-r2.ebuild:
  Mark stable on X86, this is the only 9.3.4 so far that does not silently
  implode on hardened systems.

*bind-9.2.8-r2 (12 Mar 2007)

  12 Mar 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -bind-9.2.8-r1.ebuild, +bind-9.2.8-r2.ebuild:
  Filtering propagated from 9.3/9.4 branches, bug #158664.

*bind-9.4.0-r2 (12 Mar 2007)
*bind-9.3.4-r2 (12 Mar 2007)

  12 Mar 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -bind-9.3.4-r1.ebuild, +bind-9.3.4-r2.ebuild, -bind-9.4.0-r1.ebuild,
  +bind-9.4.0-r2.ebuild:
  Added CFLAGS filtering for ssp-enabled compilers, wrt to bug #158664, comment
  #31.

*bind-9.4.0-r1 (02 Mar 2007)

  02 Mar 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  +files/bind-9.4.0-dlzbdb-close_cursor.patch,
  -files/bind-9.4.0_rc2-missing_odbc_test.patch, -bind-9.4.0.ebuild,
  +bind-9.4.0-r1.ebuild:
  Support for /dev/urandom added, patch by Aurélien Requiem <bugs@menfin.net>.

*bind-9.4.0 (28 Feb 2007)

  28 Feb 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  -bind-9.4.0_rc2.ebuild, +bind-9.4.0.ebuild:
  Version bump, closing bug #168356.

*bind-9.3.4-r1 (22 Feb 2007)
*bind-9.2.8-r1 (22 Feb 2007)

  22 Feb 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  +files/bind-dlzbdb-close_cursor.patch, +bind-9.2.8-r1.ebuild,
  +bind-9.3.4-r1.ebuild:
  Closing bug #167605.

  14 Feb 2007; Bryan Østergaard <kloeri@gentoo.org> bind-9.2.8.ebuild,
  bind-9.3.4.ebuild:
  Stable on IA64, bug 163692.

  13 Feb 2007; Markus Rothe <corsair@gentoo.org> bind-9.2.8.ebuild,
  bind-9.3.4.ebuild:
  Stable on ppc64; bug #163692

  13 Feb 2007; Marcus D. Hanwell <cryos@gentoo.org> bind-9.2.8.ebuild,
  bind-9.3.4.ebuild:
  Stable on amd64, bug 163692.

  10 Feb 2007; Jose Luis Rivero <yoswink@gentoo.org> bind-9.2.8.ebuild,
  bind-9.3.4.ebuild:
  Stable on alpha wrt security #163692

  08 Feb 2007; Tobias Scherbaum <dertobi123@gentoo.org> ChangeLog:
  Stable on ppc wrt bug #163692.

  07 Feb 2007; Gustavo Zacarias <gustavoz@gentoo.org> bind-9.2.8.ebuild,
  bind-9.3.4.ebuild:
  Stable on sparc wrt security #163692

  07 Feb 2007; Jeroen Roovers <jer@gentoo.org> bind-9.3.4.ebuild:
  Stable for HPPA (bug #163692).

  07 Feb 2007; Jeroen Roovers <jer@gentoo.org> bind-9.2.8.ebuild:
  Stable for HPPA (bug #163692).

  06 Feb 2007; Raúl Porcel <armin76@gentoo.org> bind-9.2.8.ebuild,
  bind-9.3.4.ebuild:
  x86 stable wrt security bug 163692

*bind-9.4.0_rc2 (06 Feb 2007)
*bind-9.3.4 (06 Feb 2007)
*bind-9.2.8 (06 Feb 2007)

  06 Feb 2007; Martin Jackson <mjolnir@gentoo.org>
  +files/bind-9.2.8-missing_odbc_test.patch,
  +files/bind-9.3.4-missing_odbc_test.patch,
  +files/bind-9.4.0_rc2-missing_odbc_test.patch, +bind-9.2.8.ebuild,
  +bind-9.3.4.ebuild, +bind-9.4.0_rc2.ebuild:
  Updates for bugs #163691 #163692 and #164293

  20 Dec 2006; René Nussbaumer <killerfox@gentoo.org> bind-9.3.3.ebuild:
  Stable on hppa. See bug #158217.

  19 Dec 2006; Tobias Scherbaum <dertobi123@gentoo.org> bind-9.3.3.ebuild:
  Stable on ppc wrt bug #158217.

  18 Dec 2006; Markus Rothe <corsair@gentoo.org> bind-9.2.7.ebuild,
  bind-9.3.3.ebuild:
  Stable on ppc64; bug #158217

  18 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org> bind-9.2.7.ebuild:
  Stable on sparc too bleh me

  18 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org> bind-9.3.3.ebuild:
  Stable on sparc wrt security #158217

  18 Dec 2006; Konstantin V. Arkhipov <voxus@gentoo.org> bind-9.2.7.ebuild,
  bind-9.3.3.ebuild:
  Goes stable on amd64 wrt security bug #158217.

  18 Dec 2006; Christian Faulhammer <opfer@gentoo.org> bind-9.2.7.ebuild,
  bind-9.3.3.ebuild:
  stable x86, security bug #158217

*bind-9.3.3 (17 Dec 2006)
*bind-9.2.7 (17 Dec 2006)

  17 Dec 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  +files/localhost.zone-r2, +bind-9.2.7.ebuild, +bind-9.3.3.ebuild:
  Version bumps, wrt security bugs #158217 and #131337. Also closing #153601 and
  #151839. Support for net-dns/resolvconf-gentoo added.

  23 Nov 2006; Francesco Riosa <vivo@gentoo.org> bind-9.2.6.ebuild,
  bind-9.2.6-r3.ebuild, bind-9.2.6-r4.ebuild, bind-9.2.6-r5.ebuild,
  bind-9.3.2.ebuild, bind-9.3.2-r3.ebuild, bind-9.3.2-r4.ebuild,
  bind-9.3.2-r5.ebuild:
  dev-db/mysql => virtual/mysql

*bind-9.3.2-r5 (22 Oct 2006)
*bind-9.2.6-r5 (22 Oct 2006)

  22 Oct 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  +bind-9.2.6-r5.ebuild, +bind-9.3.2-r5.ebuild:
  Closing bugs #130649 and #151839.

  22 Sep 2006; Javier Villavicencio <the_paya@gentoo.org>
  bind-9.3.2-r4.ebuild:
  Add ~x86-fbsd keyword.

  19 Sep 2006; Konstantin Arkhipov <voxus@gentoo.org> bind-9.2.6-r4.ebuild,
  bind-9.3.2-r4.ebuild:
  Closing bug #148178.

  14 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org> bind-9.2.6-r4.ebuild,
  bind-9.3.2-r4.ebuild:
  Stable on hppa wrt security #146486

  13 Sep 2006; Aron Griffis <agriffis@gentoo.org> bind-9.3.2-r4.ebuild:
  Mark 9.3.2-r4 stable on ia64. #146486

  13 Sep 2006; Aron Griffis <agriffis@gentoo.org> bind-9.2.6.ebuild,
  bind-9.2.6-r3.ebuild, bind-9.2.6-r4.ebuild, bind-9.3.2.ebuild,
  bind-9.3.2-r3.ebuild, bind-9.3.2-r4.ebuild:
  Use -j1 unconditionally since the Makefiles aren't parallel safe. Checking
  for distcc in FEATURES is bogus.

  12 Sep 2006; Tony Vroon <chainsaw@gentoo.org> bind-9.2.6-r4.ebuild,
  bind-9.3.2-r4.ebuild:
  Stable on X86 wrt security bug #146486.

  12 Sep 2006; Thomas Cort <tcort@gentoo.org> bind-9.2.6-r4.ebuild,
  bind-9.3.2-r4.ebuild:
  Stable on alpha wrt security Bug #146486.

  12 Sep 2006; Jason Wever <weeve@gentoo.org> bind-9.3.2-r4.ebuild:
  Stable on SPARC wrt security bug #146486.

  11 Sep 2006; Markus Rothe <corsair@gentoo.org> bind-9.2.6-r4.ebuild,
  bind-9.3.2-r4.ebuild:
  Stable on ppc64; bug #146486

  11 Sep 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  bind-9.3.2-r4.ebuild:
  ppc stable, bug #146486

  11 Sep 2006; Konstantin Arkhipov <voxus@gentoo.org> bind-9.3.2-r4.ebuild,
  bind-9.2.6-r4.ebuild:
  Goes stable on amd64.

*bind-9.3.2-r4 (11 Sep 2006)
*bind-9.2.6-r4 (11 Sep 2006)

  11 Sep 2006; Konstantin Arkhipov <voxus@gentoo.org> +bind-9.3.2-r4.ebuild,
  +bind-9.2.6-r4.ebuild:
  Bump, bug #146486.

*bind-9.3.2-r3 (31 Jul 2006)
*bind-9.2.6-r3 (31 Jul 2006)

  31 Jul 2006; Konstantin Arkhipov <voxus@gentoo.org> +bind-9.3.2-r3.ebuild,
  +bind-9.2.6-r3.ebuild, -bind-9.3.2-r2.ebuild, -bind-9.2.6-r2.ebuild:
  Closing bug #139354.

  28 Jul 2006; Konstantin Arkhipov <voxus@gentoo.org> bind-9.2.6.ebuild,
  bind-9.2.6-r2.ebuild:
  Corrected postinst's info, wrt bug #140371.

  04 Jul 2006; Konstantin Arkhipov <voxus@gentoo.org> +bind-9.2.6-r2.ebuild,
  -bind-9.2.6-r1.ebuild, +bind-9.3.2-r2.ebuild, -bind-9.3.2-r1.ebuild:
  Closing bug #132109.

  15 May 2006; Konstantin Arkhipov <voxus@gentoo.org> -bind-9.2.5-r4.ebuild,
  -bind-9.2.5-r6.ebuild, bind-9.2.6.ebuild, bind-9.2.6-r1.ebuild,
  bind-9.3.2.ebuild, bind-9.3.2-r1.ebuild:
  Dropped unneeded deps as suggested by phreak, cleaned out 9.2.5 ebuilds.

  25 Apr 2006; Thomas Cort <tcort@gentoo.org> bind-9.2.6.ebuild,
  bind-9.3.2.ebuild:
  Stable on alpha wrt Bug #122561.

  20 Apr 2006; Konstantin Arkhipov <voxus@gentoo.org> bind-9.2.5-r4.ebuild,
  bind-9.2.6.ebuild, bind-9.3.2.ebuild, bind-9.2.5-r6.ebuild:
  enew{user,group} moved to pkg_setup().

*bind-9.3.2-r1 (26 Mar 2006)
*bind-9.2.5-r1 (26 Mar 2006)

  26 Mar 2006; Konstantin Arkhipov <voxus@gentoo.org> +bind-9.3.2-r1.ebuild,
  +bind-9.2.6-r1.ebuild, +files/bind-dlzbdb-includes.patch:
  Closing bugs: #119679, #124680, #127564.

  23 Feb 2006; Konstantin Arkhipov <voxus@gentoo.org> bind-9.2.5-r4.ebuild,
  bind-9.2.5-r6.ebuild, bind-9.2.6.ebuild, bind-9.3.2.ebuild,
  -files/dyndns-samples.tbz2:
  Moved to mirror wrt bug #123634.

  20 Feb 2006; Joshua Kinard <kumba@gentoo.org> bind-9.2.6.ebuild,
  bind-9.3.2.ebuild:
  Marked stable on mips.

  17 Feb 2006; Joseph Jezak <josejx@gentoo.org> bind-9.2.6.ebuild:
  Marked ppc stable for bug #122561.

  17 Feb 2006; Michael Hanselmann <hansmi@gentoo.org> bind-9.3.2.ebuild:
  Stable on ppc.

  15 Feb 2006; Mark Loeser <halcy0n@gentoo.org> bind-9.2.6.ebuild,
  bind-9.3.2.ebuild:
  Stable on x86; bug #122561

  16 Feb 2006; Konstantin Arkhipov <voxus@gentoo.org> bind-9.2.6.ebuild,
  bind-9.3.2.ebuild:
  Stable on amd64, bug #122561.

  15 Feb 2006; Markus Rothe <corsair@gentoo.org> bind-9.2.6.ebuild,
  bind-9.3.2.ebuild:
  Stable on ppc64; bug #122561

  14 Feb 2006; Gustavo Zacarias <gustavoz@gentoo.org> bind-9.2.6.ebuild,
  bind-9.3.2.ebuild:
  Stable on sparc wrt #122561

*bind-9.3.2 (02 Jan 2006)
*bind-9.2.6 (02 Jan 2006)

  02 Jan 2006; Konstantin Arkhipov <voxus@gentoo.org> +bind-9.2.6.ebuild,
  +bind-9.3.2.ebuild, -bind-9.3.1-r8.ebuild, -bind-9.3.2_beta2-r2.ebuild,
  -bind-9.2.5-r10.ebuild:
  Version bump.

  02 Jan 2006; Konstantin Arkhipov <voxus@gentoo.org> +files/named.conf-r2:
  Restored wrongly deleted conf file. Closing bug #114770.

*bind-9.3.2_beta2-r2 (12 Nov 2005)
*bind-9.3.1-r8 (12 Nov 2005)
*bind-9.2.5-r10 (12 Nov 2005)

  12 Nov 2005; Konstantin Arkhipov <voxus@gentoo.org> -bind-9.2.5-r9.ebuild,
  -bind-9.3.1-r7.ebuild, -bind-9.3.2_beta2-r1.ebuild, +bind-9.2.5-r10.ebuild,
  +bind-9.3.1-r8.ebuild, +bind-9.3.2_beta2-r2.ebuild:
  Closing bugs #106784 and #106974.

*bind-9.3.2_beta2-r1 (11 Nov 2005)

  11 Nov 2005; Konstantin Arkhipov <voxus@gentoo.org> -files/127,
  -files/localhost, -files/named.conf-r1, -files/named.conf-r2,
  -bind-9.3.2_beta2.ebuild, +bind-9.3.2_beta2-r1.ebuild:
  Cleaned out unused files, bug #108123 fixed only in 9.3.2_beta2 for now.

*bind-9.3.2_beta2 (09 Nov 2005)
*bind-9.3.1-r7 (09 Nov 2005)
*bind-9.2.5-r9 (09 Nov 2005)

  09 Nov 2005; Konstantin Arkhipov <voxus@gentoo.org> -bind-9.2.5-r8.ebuild,
  -bind-9.3.1-r6.ebuild, -bind-9.3.2_beta1.ebuild, -files/named.init-r3,
  -files/named.confd-r1, +bind-9.3.2_beta2.ebuild, +bind-9.3.1-r7.ebuild,
  +bind-9.2.5-r9.ebuild, +files/named.init-r3, +files/named.confd-r1:
  Once again closing #107724. Also parallel build is now disabled only for
  distcc-systems.

  02 Nov 2005; Konstantin Arkhipov <voxus@gentoo.org> bind-9.3.1-r6.ebuild:
  Dropped all stable keywords due to compile races and bug #107724.

  31 Oct 2005; Gustavo Zacarias <gustavoz@gentoo.org> bind-9.3.1-r6.ebuild:
  Stable on sparc

  30 Oct 2005; Konstantin Arkhipov <voxus@gentoo.org> bind-9.2.5-r4.ebuild,
  bind-9.2.5-r6.ebuild, bind-9.2.5-r8.ebuild, bind-9.3.1-r6.ebuild,
  bind-9.3.2_beta1.ebuild:
  Chroot's configuration way changed wrt bug #109482. Added warning about
  vserver' enviroment.
  Also 9.3.1 finally goes stable on amd64 and x86.

*bind-9.3.2_beta1 (17 Oct 2005)

  17 Oct 2005; Konstantin Arkhipov <voxus@gentoo.org> +bind-9.3.2_beta1.ebuild:
  Beta bump wrt bug #109587.

*bind-9.2.5-r8 (01 Oct 2005)
*bind-9.3.1-r6 (01 Oct 2005)

  01 Oct 2005; Konstantin Arkhipov <voxus@gentoo.org> +bind-9.2.5-r8.ebuild,
  +bind-9.3.1-r6.ebuild, -bind-9.2.5-r7.ebuild, -bind-9.3.1-r5.ebuild,
  -files/named.init-r1, +files/named.init-r2:
  Be more accuracy when looking for pid-file. Thanks to Kerin Millar
  <kerframil@gmail.com>. Updated named.conf.

*bind-9.2.5-r7 (30 Sep 2005)
*bind-9.3.1-r5 (30 Sep 2005)

  30 Sep 2005; Konstantin Arkhipov <voxus@gentoo.org> +bind-9.2.5-r7.ebuild,
  +bind-9.3.1-r5.ebuild, +files/named.init-r1, -bind-9.3.1-r4.ebuild:
  Closing bugs regarding pid-file detecting: #107724 and #102135.

  24 Sep 2005; Markus Rothe <corsair@gentoo.org> bind-9.2.5-r6.ebuild:
  Stable on ppc64

  17 Sep 2005; Michael Hanselmann <hansmi@gentoo.org> bind-9.2.5-r6.ebuild:
  Stable on ppc.

  17 Sep 2005; Aron Griffis <agriffis@gentoo.org> bind-9.2.5-r6.ebuild:
  Mark 9.2.5-r6 stable on ia64

  15 Sep 2005; Aron Griffis <agriffis@gentoo.org> bind-9.2.5-r6.ebuild:
  Mark 9.2.5-r6 stable on alpha

  14 Sep 2005; Gustavo Zacarias <gustavoz@gentoo.org> bind-9.2.5-r6.ebuild:
  Stable on sparc

  13 Sep 2005; Konstantin Arkhipov <voxus@gentoo.org> bind-9.2.5-r6.ebuild:
  Goes stable on x86 and amd64.

*bind-9.2.5-r6 (02 Sep 2005)
*bind-9.3.1-r4 (02 Sep 2005)

  02 Sep 2005; Konstantin Arkhipov <voxus@gentoo.org> +bind-9.2.5-r6.ebuild,
  +bind-9.3.1-r4.ebuild, -bind-9.2.5-r5.ebuild, -bind-9.3.1-r3.ebuild:
  Fixed enewuser wrt bug #103421.

*bind-9.2.5-r5 (03 Aug 2005)
*bind-9.3.1-r3 (03 Aug 2005)

  03 Aug 2005; Konstantin Arkhipov <voxus@gentoo.org> +bind-9.2.5-r5.ebuild,
  +bind-9.3.1-r3.ebuild, -bind-9.3.1-r1.ebuild, -bind-9.3.1-r2.ebuild,
  +files/named.rc:
  Closing bug #99597 by adding enew{user,group}. Closing bug #99878 by new
  init script. Cleanups also.

  02 Jul 2005; Konstantin Arkhipov <voxus@gentoo.org> -bind-9.2.2-r3.ebuild,
  -bind-9.2.5.ebuild, -files/bind-9.2.2-mysql.patch:
  Cleaning up.

  29 Jun 2005; Joshua Kinard <kumba@gentoo.org> bind-9.2.5-r4.ebuild:
  Marked stable on mips.

*bind-9.3.1-r2 (23 Jun 2005)

  23 Jun 2005; Konstantin Arkhipov <voxus@gentoo.org> +bind-9.3.1-r2.ebuild,
  +files/named.init:
  Added dlz-support to bind-9.3.1, ebuild submitted by
  Francesco Riosa <vivo@gentoo.org>. Closing bug #94638.

  17 Jun 2005; Michael Hanselmann <hansmi@gentoo.org> bind-9.2.5-r4.ebuild:
  Stable on ppc.

  12 Jun 2005; Bryan Østergaard <kloeri@gentoo.org> bind-9.2.5-r4.ebuild:
  Stable on alpha.

  06 Jun 2005; Markus Rothe <corsair@gentoo.org> bind-9.2.5-r4.ebuild:
  Stable on ppc64

  20 May 2005; Gustavo Zacarias <gustavoz@gentoo.org> bind-9.2.5-r4.ebuild:
  Stable on sparc

  18 May 2005; Konstantin Arkhipov <voxus@gentoo.org> bind-9.2.5-r4.ebuild:
  Goes stable on x86 and amd64.

  10 May 2005; Konstantin Arkhipov <voxus@gentoo.org> bind-9.2.5-r4.ebuild:
  Added missing dependency on mysql for mysql-bind.

*bind-9.2.5-r4 (29 Apr 2005)

  29 Apr 2005; Konstantin Arkhipov <voxus@gentoo.org> -bind-9.2.5-r3.ebuild,
  +bind-9.2.5-r4.ebuild:
  Now threading automatically disables when DLZ and MySQL is requested.

*bind-9.2.5-r3 (26 Apr 2005)

  26 Apr 2005; Konstantin Arkhipov <voxus@gentoo.org> -bind-9.2.5-r2.ebuild,
  +bind-9.2.5-r3.ebuild:
  Fixed mysql path's, closing bug #90429. Also added missing ODBC dependency.

  25 Apr 2005; Michael Hanselmann <hansmi@gentoo.org> :
  Stable on ppc.

*bind-9.2.5-r2 (15 Apr 2005)

  15 Apr 2005; Konstantin Arkhipov <voxus@gentoo.org> -bind-9.2.5-r1.ebuild,
  +bind-9.2.5-r2.ebuild, -bind-9.3.1.ebuild, +bind-9.3.1-r1.ebuild,
  +files/named.rc6-smart_pid_fix:
  Dropped "caps" use flag. Capabilities now automatically enabled by ebuild,
  if "threads" is used. Closes bug #89358.
  Yet again fixed init-script, closes bug #65335 and bug #79875.
  Patch provided by Jacob Joseph <jmjoseph@andrew.cmu.edu>.

  13 Apr 2005; Konstantin Arkhipov <voxus@gentoo.org> bind-9.2.5.ebuild,
  bind-9.2.5-r1.ebuild:
  Added warning note about MX's priority argument, closing bug #88888.

*bind-9.2.5-r1 (12 Apr 2005)

  12 Apr 2005; Konstantin Arkhipov <voxus@gentoo.org> -bind-9.2.2.ebuild,
  -bind-9.2.2-r1.ebuild, -bind-9.2.2-r2.ebuild, -bind-9.2.2-r4.ebuild,
  -bind-9.2.2-r5.ebuild, -bind-9.2.3.ebuild, +bind-9.2.5-r1.ebuild,
  bind-9.3.1.ebuild:
  Dropped old ebuild, closing bug #88712 by 9.2.5-r1 and minor cosmetic
  changes for 9.3.1.

  10 Apr 2005; Joshua Kinard <kumba@gentoo.org> bind-9.2.5.ebuild:
  Added ~mips to keywords.

  06 Apr 2005; Bryan Østergaard <kloeri@gentoo.org> bind-9.2.5.ebuild:
  Stable on alpha, bug 87902.

  04 Apr 2005; Michael Hanselmann <hansmi@gentoo.org> bind-9.2.5.ebuild:
  Stable on ppc.

  04 Apr 2005; Guy Martin <gmsoft@gentoo.org> bind-9.2.5.ebuild:
  Stable on hppa.

  04 Apr 2005; Gustavo Zacarias <gustavoz@gentoo.org> bind-9.2.5.ebuild:
  Stable on sparc wrt #87902

  04 Apr 2005; Konstantin Arkhipov <voxus@gentoo.org> bind-9.2.5.ebuild:
  nsupdate's sed should go after all patches.

  04 Apr 2005; Konstantin Arkhipov <voxus@gentoo.org> bind-9.2.5.ebuild:
  Stable on x86 and amd64 due to bug #87902.

  25 Mar 2005; Sven Wegener <swegener@gentoo.org> bind-9.2.5.ebuild:
  Fixed invalid atoms in *DEPEND.

*bind-9.3.1 (26 Mar 2005)

  26 Mar 2005; Konstantin Arkhipov <voxus@gentoo.org> +bind-9.3.1.ebuild,
  -bind-9.3.0_rc2.ebuild, -bind-9.3.1_beta2.ebuild:
  Version bump. Closing bugs #54230, #54230 and #76806.
  However, masked for heavy testing.

*bind-9.2.5 (26 Mar 2005)

  26 Mar 2005; Konstantin Arkhipov <voxus@gentoo.org> +bind-9.2.5.ebuild,
  +files/bind-9.2.5-berkdb_fix.patch, +files/bind-9.2.5-dlz-mysql.patch,
  +files/bind-9.2.5-mysql.patch, +files/named.rc6-pid_fix:
  Version bump. Also closes bugs: #45254, #32908, #48610, #58932, #51577,
  #65885, #65885, #65885, #76348, #76820, #76820, #85292, #85419, #73257.

  06 Feb 2005; Joshua Kinard <kumba@gentoo.org> bind-9.2.2-r3.ebuild:
  Marked stable on mips.

*bind-9.2.2-r5 (31 Jan 2005)

  31 Jan 2005; <mglauche@gentoo.org> +bind-9.2.2-r5.ebuild:
  new ebuild for dlz support, see bug #60555, thanks to Charlie Gehlin
  <charlie@gehlin.com>

*bind-9.3.1_beta2 (28 Jan 2005)

  28 Jan 2005; Robin H. Johnson <robbat2@gentoo.org>
  +bind-9.3.1_beta2.ebuild:
  Bug #77989, new version of bind-9.3, masked.

  01 Jan 2005; Jason Wever <weeve@gentoo.org> bind-9.2.2-r4.ebuild:
  Changed -sparc keyword to ~sparc.

  03 Nov 2004; Bret Curtis <psi29a@gentoo.org> bind-9.2.2-r3.ebuild,
  bind-9.2.2-r4.ebuild, bind-9.2.3.ebuild:
  added to ~mips for testing

  19 Oct 2004; Dylan Carlson <absinthe@gentoo.org> bind-9.2.2-r3.ebuild:
  Stable on amd64.

  29 Jul 2004; Guy Martin <gmsoft@gentoo.org> bind-9.2.2-r3.ebuild:
  Stable on hppa.

  15 Jul 2004; Gustavo Zacarias <gustavoz@gentoo.org> bind-9.2.2-r3.ebuild:
  Stable on sparc

  11 Jul 2004; Jeffrey Forman <jforman@gentoo.org> bind-9.2.2-r3.ebuild:
  bind-9.2.2-r3 stable on x86

*bind-9.3.0_rc2 (11 Jul 2004)

  11 Jul 2004; Jeffrey Forman <jforman@gentoo.org> +bind-9.3.0_rc2.ebuild:
  initial bind-9.3.0rc2 into portage. had to remove --enable-threads, would not
  allow -u named. please test why.

  06 Jul 2004; Jeffrey Forman <jforman@gentoo.org> bind-9.2.2_rc1-r2.ebuild:
  Removing stale _rc1-r2 ebuild, later stable ones

*bind-9.2.2-r4 (23 Jun 2004)

  23 June 2004; Jeffrey Forman <jforman@gentoo.org> bind-9.2.2-r4.ebuild:
  add mysql functionality into bind. 

  21 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> files/named.ca:
  updated named.ca (bug #53848)

  02 Jun 2004; Jon Portnoy <avenj@gentoo.org> metadata.xml:
  Remove metadata.

  27 Apr 2004; Aron Griffis <agriffis@gentoo.org> bind-9.2.2-r3.ebuild:
  Add inherit eutils

  26 Apr 2004; Aron Griffis <agriffis@gentoo.org> bind-9.2.2-r1.ebuild,
  bind-9.2.2-r2.ebuild, bind-9.2.2-r3.ebuild, bind-9.2.2.ebuild,
  bind-9.2.2_rc1-r2.ebuild:
  Add die following econf for bug 48950

  12 Jan 2004; Martin Holzer <mholzer@gentoo.org> files/named.rc6:
  changed rc script. this should really close 31125.

  30 Nov 2003; Chris PeBenito <pebenito@gentoo.org> bind-9.2.2-r1.ebuild,
  bind-9.2.2-r2.ebuild, bind-9.2.2-r3.ebuild, bind-9.2.2.ebuild,
  bind-9.2.2_rc1-r2.ebuild, bind-9.2.3.ebuild:
  Add SELinux policy RDEP.

  26 Nov 2003; Stewart Honsberger <blkdeath@gentoo.org> bind-9.2.2.ebuild,
  bind-9.2.3.ebuild:
  Marked 9.2.2 stable on PPC
  Marked 9.2.3 unstable on all arches; critical library conflicts.

*bind-9.2.3 (29 Oct 2003)

  29 Oct 2003; Stewart Honsberger <blkdeath@gentoo.org> bind-9.2.3.ebuild:
  New BIND version; includes "Delegation-Only" patch, bugfixes

  02 Oct 2003; Brad House <brad_mssw@gentoo.org> bind-9.2.2.ebuild:
  add ~amd64 flag

*bind-9.2.2-r3 (17 Sep 2003)

  17 Sep 2003; <solar@gentoo.org> bind-9.2.2-r3.ebuild:
  Recently verisign added a wildcard A record to the .COM and .NET TLD DNS zones
  making all .com and .net domains appear to be registered. Adding ISC bind
  patch. Updated ebuild submission by Bryan Stine. Added a few comments from
  Danny and Corporate Gadfly to pkg_postinst.

  15 Jul 2003; Martin Holzer <mholzer@gentoo.org> files/named.conf-r2:
  Fixed pid patch. Closes #24497

  15 Jul 2003; Christian Birchinger <joker@gentoo.org> bind-9.2.2-r2.ebuild:
  Added sparc stable keyword

  29 Jun 2003; Martin Holzer <mholzer@gentoo.org> files/named.rc6:
  Fixed path to PIDFILE. Closes #23682.

  10 Jun 2003; <msterret@gentoo.org> bind-9.2.2-r2.ebuild:
  DEPEND on sed >= 4

  01 Jun 2003; Brandon Low <lostlogic@gentoo.org> files/named.rc6:
  Fix rcfiles

*bind-9.2.2-r2 (27 Apr 2003)

  03 Aug 2003; Guy Martin <gmsoft@gentoo.org> bind-9.2.2-r2.ebuild :
  Added hppa to KEYWORDS.

  27 Apr 2003; Brandon Low <lostlogic@gentoo.org> bind-9.2.2-r2.ebuild,
  files/named.rc7:
  Fix bug 19971.

*bind-9.2.2-r1 (19 Apr 2003)

  19 Apr 2003; Brandon Low <lostlogic@gentoo.org> bind-9.2.2-r1.ebuild,
  files/127.zone, files/localhost.zone, files/named.conf-r2:
  Fix bug 14467 WRT to .zone extension for zone files. Also keepdir dirs that
  need to be kept.

*bind-9.2.2 (04 Mar 2003)

  15 Apr 2003; Martin Holzer <mholzer@gentoo.org> Manifest, bind-9.2.2.ebuild:
  Now ebuild config recreate chroot if deleted. closes #18290.

  07 Apr 2003; Kyle Manna <nitro@gentoo.org> named.ca:
  Updated to match a root name server address being changed.

  06 Apr 2003; Zach Welch <zwelch@gentoo.org> bind-9.2.2.ebuild:
  add arm keyword

  30 Mar 2003; Christian Birchinger <joker@gentoo.org> bind-9.2.2.ebuild:
  Added sparc stable keyword

  24 Mar 2003; Brandon Low <lostlogic@gentoo.org> bind-9.2.2.ebuild:
  move to stable on x86, others please follow

  04 Mar 2003; Brandon Low <lostlogic@gentoo.org> bind-9.2.2.ebuild,
  files/10bind.env:
  Update to latest version, and add /var/bind to env.d, this should make
  it behave nicer when merging and no clobber config files.

*bind-9.2.2_rc1-r2 (14 Feb 2003)

  14 Feb 2003; Nick Hadaway <raker@gentoo.org> bind-9.2.2_rc1-r2.ebuild,
  files/digest-bind-9.2.2_rc1-r2, files/127, files/named.conf-r1 :
  Updated default config so all 127.* traffic is localhost.  Thanks
  to Rich Edelman on bug #15637 for noticing this.

  15 Dec 2002; Maik Schreiber <blizzy@gentoo.org> files/named.rc6:
  Added "use logger" (bug #8771).

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

*bind-9.2.2_rc1-r1 (16 Aug 2002)

  12 Oct 2002; Donny Davies <woodchip@gentoo.org> named.rc6 :
  Help out the #8759 people ;)

  06 Oct 2002; Jack Morgan <jmorgan@gentoo.org> bind-9.2.2_rc1-r1.ebuild :
  Added sparc/sparc64 to keywords

  02 Oct 2002; Seemant Kulleen <seemant@gentoo.org> bind-9.2.2_rc1-r1.ebuild :
  Adjustment of files/{localhost,named.rc6} to be more gentoo friendly and
  usable.  Thanks to j2ee in #gentoo-dev in bug #7872

  19 Aug 2002; Mark Guertin <gerk@gentoo.org> bind-9.2.2_rc1-r1.ebuild :
  Added ppc to keywords

  16 Aug 2002; Seemant Kulleen <seemant@gentoo.org> bind-9.2.2_rc1-r1.ebuild :

  Many bugfixes with config files, and optional documentation installation
  (doc USE flag).  Thanks again to kevin@aptbasilicata.it (Maurizio
  Disimino) in bug #6590.

*bind-9.2.2_rc1 (16 Aug 2002)

  16 Aug 2002; Seemant Kulleen <seemant@gentoo.org> bind-9.2.2_rc1.ebuild
  files/nslookup.8 files/digest-bind-9.2.2_rc1 :

  Security fix upgrade.  Please see: http://www.kb.cert.org/vuls/id/803539
  Thanks to kevin@aptbasilicata.it (Maurizio Disimino) in bug #6578.

*bind-9.2.1-r2 (5 Aug 2002)

  8 Aug 2002; Kyle Manna <nitro@gentoo.org> bind-9.2.1-r2.ebuild:

  Minor changes yesterday and today.  Hopefully we can unmask soon.

  6 Aug 2002; Kyle Manna <nitro@gentoo.org> bind-9.2.1-r2.ebuild:

  Minor cosmetic changes.  Nothing big enough to cause a revision bump.

  5 Aug 2002; Kyle Manna <nitro@gentoo.org> bind-9.2.1-r2.ebuild:

  Added support for chroot, updated init script.

*bind-9.2.1-r1 (2 May 2002)

  21 Jul 2002; Owen Stampflee <owen@gentoo.org> :

  Added PPC to KEYWORDS.

  20 Jul 2002; Kyle Manna <nitro@gentoo.org> bind-9.2.1-r1.ebuild:

  Moved away from emake to make.  Parallel builds break on some systems.

  1 Jun 2002; Kyle Manna <nitro@gentoo.org> bind-9.2.1-r1.ebuild:

  *Alot* of bug fixes:
  	+ We now have a man page for named.conf
	+ Included a basic /etc/bind/named.conf
	+ Will automatically create a /etc/bind/rndc.key if file doesn't exist
	+ With the additon of rndc, we now have '/etc/init.d/named reload'
	+ Chown /var/run/named and make sure it gets created, bug #2872
	+ Moved root.cache to named.ca, it was annoying me ;)
	+ Added multi-threading support to the default configure
	+ Added support for 'use ssl' and 'use ipv6'
	+ And other stuff

*bind-9.2.1 (2 May 2002)

  2 May 2002; William McArthur <sandymac@gentoo.org> bind-9.2.1.ebuild:

  New upstream bugfix release, I just bumped the ebuild file name and added
  a LICENSE line.

*bind-9.1.3-r7 (21 Mar 2002)

  21 Mar 2002; Ferry Meyndert <m0rpheus@gentoo.org> bind-9.2.0.ebuild:

  Updated too new version

*bind-9.1.3-r7 (8 Feb 2002)

  8 Feb 2002; Donny Davies <woodchip@gentoo.org> files/bind.rc6,
  bind-9.1.3-r7.ebuild :

  Close bug #483.  Use /var/run/named for bind's pidfile.

*bind-9.1.3-r6 (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.