summaryrefslogtreecommitdiff
blob: 860ea654b50f3159ab6177f118247efae109b8c7 (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
# ChangeLog for net-dns/bind-tools
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/bind-tools/ChangeLog,v 1.253 2014/01/30 23:10:31 maekke Exp $

  30 Jan 2014; Markus Meier <maekke@gentoo.org> bind-tools-9.9.4.ebuild:
  arm stable, bug #492254

  27 Jan 2014; Akinori Hattori <hattya@gentoo.org> bind-tools-9.9.4.ebuild:
  ia64 stable wrt bug #492254

  27 Jan 2014; Jeroen Roovers <jer@gentoo.org> bind-tools-9.9.4.ebuild:
  Stable for HPPA (bug #492254).

  18 Jan 2014; Christian Ruppert <idl0r@gentoo.org> bind-tools-9.9.3_p2.ebuild,
  bind-tools-9.9.4.ebuild:
  Fix openssl dependencies as request per bug 498470

*bind-tools-9.9.4 (13 Oct 2013)

  13 Oct 2013; Christian Ruppert <idl0r@gentoo.org> +bind-tools-9.9.4.ebuild:
  Bump

  03 Sep 2013; Agostino Sarubbo <ago@gentoo.org> -bind-tools-9.9.2.ebuild:
  Remove old

  09 Aug 2013; Agostino Sarubbo <ago@gentoo.org> bind-tools-9.9.3_p2.ebuild:
  Stable for arm, wrt bug #478316

  08 Aug 2013; Agostino Sarubbo <ago@gentoo.org> bind-tools-9.9.3_p2.ebuild:
  Stable for sh, wrt bug #478316

  06 Aug 2013; Agostino Sarubbo <ago@gentoo.org> bind-tools-9.9.3_p2.ebuild:
  Stable for s390, wrt bug #478316

  01 Aug 2013; Agostino Sarubbo <ago@gentoo.org> bind-tools-9.9.3_p2.ebuild:
  Stable for x86, wrt bug #478316

  01 Aug 2013; Agostino Sarubbo <ago@gentoo.org> bind-tools-9.9.3_p2.ebuild:
  Stable for sparc, wrt bug #478316

  01 Aug 2013; Agostino Sarubbo <ago@gentoo.org> bind-tools-9.9.3_p2.ebuild:
  Stable for ppc, wrt bug #478316

  01 Aug 2013; Agostino Sarubbo <ago@gentoo.org> bind-tools-9.9.3_p2.ebuild:
  Stable for ppc64, wrt bug #478316

  01 Aug 2013; Agostino Sarubbo <ago@gentoo.org> bind-tools-9.9.3_p2.ebuild:
  Stable for ia64, wrt bug #478316

  01 Aug 2013; Agostino Sarubbo <ago@gentoo.org> bind-tools-9.9.3_p2.ebuild:
  Stable for amd64, wrt bug #478316

  01 Aug 2013; Agostino Sarubbo <ago@gentoo.org> bind-tools-9.9.3_p2.ebuild:
  Stable for alpha, wrt bug #478316

  30 Jul 2013; Jeroen Roovers <jer@gentoo.org> bind-tools-9.9.3_p2.ebuild:
  Stable for HPPA (bug #478316).

*bind-tools-9.9.3_p2 (30 Jul 2013)

  30 Jul 2013; Christian Ruppert <idl0r@gentoo.org>
  -bind-tools-9.9.1_p2.ebuild, -bind-tools-9.9.1_p4.ebuild,
  -bind-tools-9.9.2_p2.ebuild, +bind-tools-9.9.3_p2.ebuild:
  Version bump. Cleanup.

*bind-tools-9.9.2_p2 (29 Mar 2013)

  29 Mar 2013; Christian Ruppert <idl0r@gentoo.org>
  +bind-tools-9.9.2_p2.ebuild:
  Version bump

  16 Dec 2012; Raúl Porcel <armin76@gentoo.org> bind-tools-9.9.2.ebuild:
  alpha/ia64/s390/sh/sparc stable wrt #440318

  21 Nov 2012; Agostino Sarubbo <ago@gentoo.org> bind-tools-9.9.2.ebuild:
  Stable for x86, wrt bug #440318

  04 Nov 2012; Ulrich Müller <ulm@gentoo.org> bind-tools-9.9.1_p2.ebuild,
  bind-tools-9.9.1_p4.ebuild, bind-tools-9.9.2.ebuild:
  Update LICENSE, RSA-PKCS11 is replaced by RSA, bug 440752.

  03 Nov 2012; Agostino Sarubbo <ago@gentoo.org> bind-tools-9.9.2.ebuild:
  Stable for amd64, wrt bug #440318

  01 Nov 2012; Christian Ruppert <idl0r@gentoo.org> bind-tools-9.9.2.ebuild,
  metadata.xml:
  Fix AR calls, bug 440338. Fix LICENSE, bug 440752.

  01 Nov 2012; Jeroen Roovers <jer@gentoo.org> bind-tools-9.9.2.ebuild:
  Stable for HPPA (bug #440318).

  31 Oct 2012; Anthony G. Basile <blueness@gentoo.org> bind-tools-9.9.2.ebuild:
  stable arm, bug #440318

  31 Oct 2012; Anthony G. Basile <blueness@gentoo.org> bind-tools-9.9.2.ebuild:
  stable ppc ppc64, bug #440318

*bind-tools-9.9.2 (10 Oct 2012)
*bind-tools-9.9.1_p4 (10 Oct 2012)

  10 Oct 2012; Christian Ruppert <idl0r@gentoo.org>
  -bind-tools-9.9.1_p3.ebuild, +bind-tools-9.9.1_p4.ebuild,
  +bind-tools-9.9.2.ebuild:
  Version bumps.

*bind-tools-9.9.1_p3 (12 Sep 2012)

  12 Sep 2012; Christian Ruppert <idl0r@gentoo.org> +bind-tools-9.9.1_p3.ebuild,
  -bind-tools-9.9.1_p2-r1.ebuild:
  Version bump.

  11 Sep 2012; Christian Ruppert <idl0r@gentoo.org> -bind-tools-9.8.1.ebuild,
  -bind-tools-9.8.3_p2.ebuild:
  Remove old versions.

  11 Sep 2012; Christoph Junghans <ottxor@gentoo.org>
  bind-tools-9.9.1_p2-r1.ebuild:
  added prefix keywords

  27 Aug 2012; Raúl Porcel <armin76@gentoo.org> bind-tools-9.9.1_p2.ebuild:
  alpha/ia64/s390/sh/sparc stable wrt #428086

  04 Aug 2012; Agostino Sarubbo <ago@gentoo.org> bind-tools-9.9.1_p2.ebuild:
  Stable for amd64, wrt bug #428086

*bind-tools-9.9.1_p2-r1 (28 Jul 2012)

  28 Jul 2012; Christian Ruppert <idl0r@gentoo.org>
  +bind-tools-9.9.1_p2-r1.ebuild, +files/bind-libxml2-2.8.x.patch:
  Fix libxml2 detection, bug 425170, thanks to Bruno <bonbons67@internet.lu>.

  27 Jul 2012; Jeff Horelick <jdhore@gentoo.org> bind-tools-9.9.1_p2.ebuild:
  marked x86 per bug 428086

  26 Jul 2012; Jeroen Roovers <jer@gentoo.org> bind-tools-9.9.1_p2.ebuild:
  Stable for HPPA (bug #427966).

  26 Jul 2012; Anthony G. Basile <blueness@gentoo.org>
  bind-tools-9.9.1_p2.ebuild:
  Stable arm, bug #428086

  26 Jul 2012; Anthony G. Basile <blueness@gentoo.org>
  bind-tools-9.9.1_p2.ebuild:
  Stable ppc/ppc64, bug #428086

*bind-tools-9.9.1_p2 (25 Jul 2012)
*bind-tools-9.8.3_p2 (25 Jul 2012)

  25 Jul 2012; Christian Ruppert <idl0r@gentoo.org>
  -bind-tools-9.8.3_p1.ebuild, +bind-tools-9.8.3_p2.ebuild,
  -bind-tools-9.9.1_p1.ebuild, +bind-tools-9.9.1_p2.ebuild:
  Version bumps

  05 Jun 2012; Christian Ruppert <idl0r@gentoo.org> bind-tools-9.8.3_p1.ebuild,
  bind-tools-9.9.1_p1.ebuild:
  Disable tests for now, bug 406399

  04 Jun 2012; Christian Ruppert <idl0r@gentoo.org>
  -files/bind-tools-configure.patch:
  Remove unused patch

*bind-tools-9.9.1_p1 (04 Jun 2012)
*bind-tools-9.8.3_p1 (04 Jun 2012)

  04 Jun 2012; Christian Ruppert <idl0r@gentoo.org> -bind-tools-9.7.3.ebuild,
  -bind-tools-9.7.6.ebuild, -bind-tools-9.8.3.ebuild,
  +bind-tools-9.8.3_p1.ebuild, -bind-tools-9.9.1.ebuild,
  +bind-tools-9.9.1_p1.ebuild:
  Version bumps, CVE-2012-1667. Remove old versions

*bind-tools-9.8.3 (22 May 2012)
*bind-tools-9.7.6 (22 May 2012)

  22 May 2012; Christian Ruppert <idl0r@gentoo.org> -bind-tools-9.7.5.ebuild,
  +bind-tools-9.7.6.ebuild, -bind-tools-9.8.2.ebuild, +bind-tools-9.8.3.ebuild:
  Version bump

  22 May 2012; Christian Ruppert <idl0r@gentoo.org> metadata.xml:
  Remove bind herd.. It's "empty" for years anyway, bug 417001.

*bind-tools-9.9.1 (21 May 2012)

  21 May 2012; Christian Ruppert <idl0r@gentoo.org> -bind-tools-9.9.0.ebuild,
  +bind-tools-9.9.1.ebuild:
  Version bump

  17 May 2012; Christian Ruppert <idl0r@gentoo.org> bind-tools-9.7.5.ebuild,
  bind-tools-9.8.1.ebuild, bind-tools-9.8.2.ebuild, bind-tools-9.9.0.ebuild:
  Disable PKCS11 temporary as it requires OpenSSL to be patched, also see bug
  409687.

*bind-tools-9.8.2 (07 Apr 2012)
*bind-tools-9.7.5 (07 Apr 2012)

  07 Apr 2012; Christian Ruppert <idl0r@gentoo.org> +bind-tools-9.7.5.ebuild,
  +bind-tools-9.8.2.ebuild, bind-tools-9.9.0.ebuild:
  Version bumps.

*bind-tools-9.9.0 (29 Feb 2012)

  29 Feb 2012; Christian Ruppert <idl0r@gentoo.org> +bind-tools-9.9.0.ebuild:
  Version bump to 9.9.0

  05 Jan 2012; Michael Weber <xmw@gentoo.org> bind-tools-9.8.1.ebuild:
  ppc/ppc64 stable (bug 391411)

  24 Dec 2011; Christian Ruppert <idl0r@gentoo.org> bind-tools-9.8.1.ebuild:
  Define localstatedir for e.g. default sessions.key used by nsupdate, bug
  395785.

  11 Dec 2011; Raúl Porcel <armin76@gentoo.org> bind-tools-9.8.1.ebuild:
  alpha/ia64/s390/sh/sparc stable wrt #391411

  03 Dec 2011; Markus Meier <maekke@gentoo.org> bind-tools-9.8.1.ebuild:
  arm stable, bug #391411

  28 Nov 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> bind-tools-9.8.1.ebuild:
  x86 stable wrt bug #391411

  26 Nov 2011; Markos Chandras <hwoarang@gentoo.org> bind-tools-9.8.1.ebuild:
  Stable on amd64 wrt bug #391411

  22 Nov 2011; Jeroen Roovers <jer@gentoo.org> bind-tools-9.8.1.ebuild:
  Stable for HPPA (bug #391411).

  22 Oct 2011; Diego E. Pettenò <flameeyes@gentoo.org>
  bind-tools-9.8.1.ebuild, metadata.xml:
  QA: make sure not to automagic depend on gssapi (copy code and description
  from bind itself).

*bind-tools-9.8.1 (02 Sep 2011)

  02 Sep 2011; Christian Ruppert <idl0r@gentoo.org> -bind-tools-9.8.0.ebuild,
  +bind-tools-9.8.1.ebuild, metadata.xml:
  Version bump to 9.8.1. Some cleanup.

  02 Jun 2011; Diego E. Pettenò <flameeyes@gentoo.org>
  bind-tools-9.8.0.ebuild:
  Fix cross-compilation (bug #266570) by exporting BUILD_CC and forcing-enabled
  epoll on Linux builds. Also change the libiconv dependency on idn. Note that
  USE=ssl fails because there is another AC_TRY_RUN call that is not
  short-circuitable.

  27 May 2011; Christian Ruppert <idl0r@gentoo.org>
  -bind-tools-9.6.2_p2-r2.ebuild, -bind-tools-9.6.3.ebuild,
  -files/bind-tools-9.6.1-parallel.patch:
  Remove 9.6.x.

  28 Apr 2011; Christian Ruppert <idl0r@gentoo.org>
  -bind-tools-9.7.2_p2-r2.ebuild:
  Remove 9.7.2.

  28 Mar 2011; Christian Ruppert <idl0r@gentoo.org>
  -bind-tools-9.4.3_p5.ebuild, -bind-tools-9.4.3_p5-r2.ebuild:
  Remove 9.4.x.

  22 Mar 2011; Brent Baude <ranger@gentoo.org> bind-tools-9.7.3.ebuild:
  Marking bind-tools-9.7.3 ppc64 for bug 358265

  22 Mar 2011; Brent Baude <ranger@gentoo.org> bind-tools-9.7.3.ebuild:
  Marking bind-tools-9.7.3 ppc for bug 358265

  19 Mar 2011; Raúl Porcel <armin76@gentoo.org> bind-tools-9.7.3.ebuild:
  alpha/arm/ia64/s390/sh/sparc/x86 stable wrt #358265

  11 Mar 2011; Jeroen Roovers <jer@gentoo.org> bind-tools-9.7.3.ebuild:
  Stable for HPPA (bug #358265).

  10 Mar 2011; Markos Chandras <hwoarang@gentoo.org> bind-tools-9.7.3.ebuild:
  Stable on amd64 wrt bug #358265

  10 Mar 2011; Christian Ruppert <idl0r@gentoo.org>
  -bind-tools-9.6.2_p2.ebuild, -bind-tools-9.7.1.ebuild:
  Remove 9.6.2_p2 and 9.7.1 as well.

  10 Mar 2011; Brent Baude <ranger@gentoo.org>
  bind-tools-9.6.2_p2-r2.ebuild, bind-tools-9.7.2_p2-r2.ebuild:
  net-dns/bind-tools-9.6.2_p2-r2 and 9.7.2_p2-r2 ppc64 for bug 337638

  10 Mar 2011; Christian Ruppert <idl0r@gentoo.org>
  -bind-tools-9.7.1-r2.ebuild:
  Remove 9.7.1-r2.

*bind-tools-9.8.0 (01 Mar 2011)

  01 Mar 2011; Christian Ruppert <idl0r@gentoo.org>
  -bind-tools-9.8.0_rc1.ebuild, +bind-tools-9.8.0.ebuild:
  Version bump to 9.8.0

*bind-tools-9.8.0_rc1 (25 Feb 2011)

  25 Feb 2011; Christian Ruppert <idl0r@gentoo.org>
  +bind-tools-9.8.0_rc1.ebuild:
  Version bump to 9.8.0_rc1.

*bind-tools-9.7.3 (15 Feb 2011)

  15 Feb 2011; Christian Ruppert <idl0r@gentoo.org> +bind-tools-9.7.3.ebuild:
  Version bump to 9.7.3

*bind-tools-9.6.3 (05 Feb 2011)

  05 Feb 2011; Christian Ruppert <idl0r@gentoo.org> +bind-tools-9.6.3.ebuild:
  Version bump to 9.6.3.

  13 Jan 2011; Brent Baude <ranger@gentoo.org>
  bind-tools-9.6.2_p2-r2.ebuild, bind-tools-9.7.2_p2-r2.ebuild:
  Mark -9.6.2_p2-r2 -9.7.2_p2-r2 ppc for bug 337638

  29 Dec 2010; Markos Chandras <hwoarang@gentoo.org>
  bind-tools-9.6.2_p2-r2.ebuild, bind-tools-9.7.2_p2-r2.ebuild:
  Stable on amd64 wrt bug #337638

  27 Dec 2010; Jeroen Roovers <jer@gentoo.org> bind-tools-9.6.2_p2-r2.ebuild,
  bind-tools-9.7.2_p2-r2.ebuild:
  Stable for HPPA (bug #337638).

  19 Dec 2010; Raúl Porcel <armin76@gentoo.org> bind-tools-9.6.2_p2-r2.ebuild,
  bind-tools-9.7.2_p2-r2.ebuild:
  alpha/ia64/s390/sh/sparc stable wrt #347621

  17 Dec 2010; Tobias Klausmann <klausman@gentoo.org>
  bind-tools-9.7.2_p2-r2.ebuild:
  Stable on alpha, bug #337638

  17 Dec 2010; Tobias Klausmann <klausman@gentoo.org>
  bind-tools-9.6.2_p2-r2.ebuild:
  Stable on alpha, bug #337638

  15 Dec 2010; Markus Meier <maekke@gentoo.org> bind-tools-9.7.2_p2-r2.ebuild:
  arm stable, bug #337638

  15 Dec 2010; Markus Meier <maekke@gentoo.org> bind-tools-9.6.2_p2-r2.ebuild:
  arm stable, bug #337638

  14 Dec 2010; Christian Faulhammer <fauli@gentoo.org>
  bind-tools-9.6.2_p2-r2.ebuild, bind-tools-9.7.2_p2-r2.ebuild:
  stable x86, bug 337638

*bind-tools-9.7.2_p2-r2 (14 Nov 2010)
*bind-tools-9.7.1-r2 (14 Nov 2010)
*bind-tools-9.6.2_p2-r2 (14 Nov 2010)
*bind-tools-9.4.3_p5-r2 (14 Nov 2010)

  14 Nov 2010; Christian Ruppert <idl0r@gentoo.org>
  -bind-tools-9.4.3_p5-r1.ebuild, +bind-tools-9.4.3_p5-r2.ebuild,
  -bind-tools-9.6.2_p2-r1.ebuild, +bind-tools-9.6.2_p2-r2.ebuild,
  -bind-tools-9.7.1-r1.ebuild, +bind-tools-9.7.1-r2.ebuild,
  -bind-tools-9.7.2_p2-r1.ebuild, +bind-tools-9.7.2_p2-r2.ebuild:
  Revbump. Re bug 344029, use append-cflags instead of append-cppflags.

*bind-tools-9.7.2_p2-r1 (11 Nov 2010)
*bind-tools-9.7.1-r1 (11 Nov 2010)
*bind-tools-9.6.2_p2-r1 (11 Nov 2010)
*bind-tools-9.4.3_p5-r1 (11 Nov 2010)

  11 Nov 2010; Christian Ruppert <idl0r@gentoo.org> bind-tools-9.4.3_p5.ebuild,
  +bind-tools-9.4.3_p5-r1.ebuild, +bind-tools-9.6.2_p2-r1.ebuild,
  +bind-tools-9.7.1-r1.ebuild, -bind-tools-9.7.2_p2.ebuild,
  +bind-tools-9.7.2_p2-r1.ebuild:
  Fix HOMEPAGE. QA fixes. Revision bump, added a definition to enable the
  sigchase feature, bug 344029. Merged my latest changes into
  bind-tools-9.4.3_p5-r1.

  06 Nov 2010; Markus Meier <maekke@gentoo.org> bind-tools-9.7.1.ebuild:
  arm stable, bug #337638

  06 Nov 2010; Markus Meier <maekke@gentoo.org> bind-tools-9.6.2_p2.ebuild:
  arm stable, bug #337638

  06 Oct 2010; Markus Meier <maekke@gentoo.org> bind-tools-9.6.2_p2.ebuild,
  bind-tools-9.7.1.ebuild:
  x86 stable, bug #337638

*bind-tools-9.7.2_p2 (05 Oct 2010)

  05 Oct 2010; Christian Ruppert <idl0r@gentoo.org>
  -bind-tools-9.4.3_p4.ebuild, +bind-tools-9.7.2_p2.ebuild:
  Version bump to 9.7.2-P2. Remove old 9.4.3-P4.

  01 Oct 2010; Brent Baude <ranger@gentoo.org> bind-tools-9.6.2_p2.ebuild,
  bind-tools-9.7.1.ebuild:
  Marking -9.6.2_p2 and -9.7.1 for bug 337638

  28 Sep 2010; Jeroen Roovers <jer@gentoo.org> bind-tools-9.6.2_p2.ebuild,
  bind-tools-9.7.1.ebuild:
  Stable for PPC (bug #337638).

  28 Sep 2010; Jeroen Roovers <jer@gentoo.org> bind-tools-9.7.1.ebuild:
  Stable for HPPA (bug #326999).

  28 Sep 2010; Jeroen Roovers <jer@gentoo.org> bind-tools-9.6.2_p2.ebuild:
  Stable for HPPA (bug #326999).

  28 Sep 2010; Brent Baude <ranger@gentoo.org> bind-tools-9.4.3_p5.ebuild:
  Marking bind-tools-9.4.3_p5 ppc for bug 335840

  22 Sep 2010; Markos Chandras <hwoarang@gentoo.org>
  bind-tools-9.6.2_p2.ebuild, bind-tools-9.7.1.ebuild:
  Stable on amd64 wrt bug #337638

  06 Sep 2010; Brent Baude <ranger@gentoo.org> bind-tools-9.4.3_p5.ebuild:
  Marking bind-tools-9.4.3_p5 ppc64 for bug 335840

  03 Sep 2010; Christian Ruppert <idl0r@gentoo.org>
  -bind-tools-9.7.0_p1.ebuild:
  Remove bind-tools-9.7.0_p1.ebuild.

*bind-tools-9.7.1 (19 Jun 2010)

  19 Jun 2010; Christian Ruppert <idl0r@gentoo.org>
  +bind-tools-9.7.1.ebuild:
  Version bump to 9.7.1. Remove parallel build patch since it has been
  applied by upstream. Add urandom flag and configure switch.

*bind-tools-9.6.2_p2 (23 May 2010)

  23 May 2010; Christian Ruppert <idl0r@gentoo.org>
  -bind-tools-9.6.1_p3.ebuild, +bind-tools-9.6.2_p2.ebuild:
  Version bump.

*bind-tools-9.7.0_p1 (12 May 2010)

  12 May 2010; Christian Ruppert <idl0r@gentoo.org>
  -bind-tools-9.6.1_p2.ebuild, +bind-tools-9.7.0_p1.ebuild:
  Version bump to 9.7.0_p1. Remove bind-tools-9.6.1_p2. Use EAPI 3 and
  src_prepare/src_configure. Fix the sed for bug 151839.

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

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

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

  27 Jan 2010; Jeroen Roovers <jer@gentoo.org> -bind-tools-9.4.3_p3.ebuild:
  Remove old.

  27 Jan 2010; Brent Baude <ranger@gentoo.org> bind-tools-9.4.3_p4.ebuild:
  Marking bind-tools-9.4.3_p4 ppc64 for bug 294497

*bind-tools-9.6.1_p3 (27 Jan 2010)
*bind-tools-9.4.3_p5 (27 Jan 2010)

  27 Jan 2010; Jeroen Roovers <jer@gentoo.org> bind-tools-9.4.3_p3.ebuild,
  bind-tools-9.4.3_p4.ebuild, +bind-tools-9.4.3_p5.ebuild,
  +bind-tools-9.6.1_p3.ebuild:
  Version bump (bug #301548). Do not hardcode patchlevel in MY_PV.

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

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

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

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

*bind-tools-9.4.3_p4 (26 Nov 2009)

  26 Nov 2009; Jeroen Roovers <jer@gentoo.org> +bind-tools-9.4.3_p4.ebuild:
  Version bump (bug #294497).

*bind-tools-9.6.1_p2 (25 Nov 2009)

  25 Nov 2009; Christian Ruppert <idl0r@gentoo.org>
  -bind-tools-9.4.3_p2.ebuild, -bind-tools-9.5.1_p3.ebuild,
  -bind-tools-9.6.1.ebuild, +bind-tools-9.6.1_p2.ebuild:
  Version bump. Clean up.

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

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

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

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

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

*bind-tools-9.5.1_p3 (30 Jul 2009)

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

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

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

*bind-tools-9.4.3_p3 (28 Jul 2009)

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

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

  26 Jul 2009; Christian Ruppert <idl0r@gentoo.org> bind-tools-9.6.1.ebuild:
  Added missing eautoreconf.

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

*bind-tools-9.6.1 (19 Jul 2009)

  19 Jul 2009; Christian Ruppert <idl0r@gentoo.org>
  +bind-tools-9.6.1.ebuild:
  Version bump to 9.6.1, bug 274494. Added ssl, xml and doc useflag. Fix
  HOMEPAGE. append-flags -D_GNU_SOURCE is not needed anymore since it has
  been fixed by upstream. Cleanup.

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

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

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

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

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

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

  11 Feb 2009; Tobias Scherbaum <dertobi123@gentoo.org>
  bind-tools-9.5.1_p1.ebuild, bind-tools-9.6.0_p1.ebuild:
  Fix SRC_URI, #257993

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

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

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

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

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

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

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

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

*bind-tools-9.4.3_p1 (07 Jan 2009)

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

*bind-tools-9.6.0 (26 Dec 2008)

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

*bind-tools-9.5.1 (26 Dec 2008)

  26 Dec 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  -bind-tools-9.4.3.ebuild, -bind-tools-9.5.0_p2.ebuild,
  +bind-tools-9.5.1.ebuild:
  Version bump

*bind-tools-9.4.3 (19 Nov 2008)

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

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

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

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

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

  02 Aug 2008; <chainsaw@gentoo.org> bind-tools-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-tools-9.5.0_p2 (02 Aug 2008)
*bind-tools-9.4.2_p2 (02 Aug 2008)

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

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

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

*bind-tools-9.5.0_p1-r1 (23 Jul 2008)

  23 Jul 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  +files/bind-tools-9.5.0_p1-lwconfig.patch, -bind-tools-9.5.0_p1.ebuild,
  +bind-tools-9.5.0_p1-r1.ebuild:
  Add patch to fix parsing of resolv.conf by host/dig, #231247

  20 Jul 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  -bind-tools-9.2.5.ebuild, -bind-tools-9.2.6.ebuild,
  -bind-tools-9.2.6-r3.ebuild, -bind-tools-9.2.8.ebuild,
  -bind-tools-9.2.8-r1.ebuild, -bind-tools-9.3.2.ebuild,
  -bind-tools-9.3.2-r3.ebuild, -bind-tools-9.3.4.ebuild,
  -bind-tools-9.3.4-r1.ebuild, -bind-tools-9.4.1-r1.ebuild:
  Cleanup

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

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

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

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

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

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

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

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

*bind-tools-9.5.0 (04 Jun 2008)

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

  04 May 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  bind-tools-9.4.2.ebuild:
  Do actually link libidnkit when USE=idn, #218686

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

*bind-tools-9.4.2 (03 May 2008)

  03 May 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  +bind-tools-9.4.2.ebuild:
  Bump to 9.4.2, include dnssec-keygen (# 198721).

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

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

  31 Jul 2007; Christoph Mende <angelos@gentoo.org>
  bind-tools-9.4.1_p1.ebuild:
  Stable on amd64 wrt security bug #186556

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

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

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

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

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

  27 Jul 2007; Seemant Kulleen <seemant@gentoo.org>
  bind-tools-9.4.1_p1.ebuild:
  fix the version info in the SRC_URI mangling so that the fetch succeeds

*bind-tools-9.4.1_p1 (27 Jul 2007)

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

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

  18 Jun 2007; Jeroen Roovers <jer@gentoo.org> bind-tools-9.4.1-r1.ebuild:
  Stable for HPPA (bug #181554).

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

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

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

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

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

  10 Jun 2007; Joshua Kinard <kumba@gentoo.org> ChangeLog:
  Marked unstable on mips, per #181554.

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

  02 Jun 2007; Konstantin V. Arkhipov <voxus@gentoo.org>
  +bind-tools-9.2.8-r1.ebuild, +bind-tools-9.3.4-r1.ebuild,
  -bind-tools-9.4.1.ebuild, +bind-tools-9.4.1-r1.ebuild:
  Closing bug #151839 again.

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

*bind-tools-9.4.1 (01 May 2007)

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

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

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

  16 Mar 2007; Roy Marples <uberlord@gentoo.org> bind-tools-9.4.0.ebuild:
  idn requires iconv, which is in a separate library for non glibc systems.
  Fixes #171043.

*bind-tools-9.4.0 (28 Feb 2007)

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

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

  08 Feb 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  bind-tools-9.3.4.ebuild:
  Stable on ppc wrt bug #163692.

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

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

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

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

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

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

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

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

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

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

  17 Dec 2006; Konstantin V. Arkhipov <voxus@gentoo.org>
  +bind-tools-9.2.7.ebuild, +bind-tools-9.3.3.ebuild:
  Version bumps.

  20 Jul 2006; Diego Pettenò <flameeyes@gentoo.org>
  bind-tools-9.3.2-r3.ebuild:
  Add ~x86-fbsd keyword as per bug #141142.

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

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

*bind-tools-9.2.6-r2 (23 Feb 2006)
*bind-tools-9.3.2-r2 (23 Feb 2006)

  23 Feb 2006; Konstantin Arkhipov <voxus@gentoo.org>
  +bind-tools-9.2.6-r2.ebuild, +bind-tools-9.3.2-r2.ebuild,
  -bind-tools-9.2.6-r1.ebuild, -bind-tools-9.3.2-r1.ebuild,
  +files/bind-tools-configure.patch:
  Closing bug #122597, patch taken from sys-devel/flex.

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

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

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

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

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

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

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

*bind-tools-9.3.2-r1 (12 Feb 2006)
*bind-tools-9.2.6-r1 (12 Feb 2006)

  12 Feb 2006; Konstantin Arkhipov <voxus@gentoo.org>
  +bind-tools-9.2.6-r1.ebuild, +bind-tools-9.3.2-r1.ebuild:
  IDN support added, fixes bug #122225.

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

  02 Jan 2006; Konstantin Arkhipov <voxus@gentoo.org> +bind-tools-9.3.2.ebuild,
  +bind-tools-9.2.6.ebuild, -bind-tools-9.2.3.ebuild, -bind-tools-9.3.1.ebuild,
  -bind-tools-9.2.2.ebuild, -bind-tools-9.2.2_rc1.ebuild,
  -bind-tools-9.2.3-r1.ebuild:
  Bump.

  06 Jul 2005; Konstantin Arkhipov <voxus@gentoo.org> bind-tools-9.3.1.ebuild:
  Closing bug #97871.

  07 May 2005; Daniel Ostrow <dostrow@gentoo.org> bind-tools-9.2.5.ebuild:
  Stable on ppc64.

  10 Apr 2005; Joshua Kinard <kumba@gentoo.org> bind-tools-9.2.5.ebuild:
  Marked stable on mips.

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

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

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

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

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

  01 Apr 2005; Aron Griffis <agriffis@gentoo.org> bind-tools-9.2.3-r1.ebuild:
  stable on ia64

*bind-tools-9.3.1 (26 Mar 2005)

  26 Mar 2005; Konstantin Arkhipov <voxus@gentoo.org> +bind-tools-9.3.1.ebuild:
  Version bump. Masked for heavy testing.

*bind-tools-9.2.5 (26 Mar 2005)

  26 Mar 2005; Konstantin Arkhipov <voxus@gentoo.org> +bind-tools-9.2.5.ebuild:
  Version bump. Closes bugs #79718 and #83736.

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

  23 Nov 2004; Sven Wegener <swegener@gentoo.org> :
  Fixed digest.

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

  02 Jul 2004; Jeffrey Forman <jforman@gentoo.org> bind-tools-9.2.3-r1.ebuild:
  Added ipv6 IUSE flag per bug 55184

  01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org>
  bind-tools-9.2.2.ebuild, bind-tools-9.2.2_rc1.ebuild,
  bind-tools-9.2.3-r1.ebuild, bind-tools-9.2.3.ebuild:
  virtual/glibc -> virtual/libc

  08 Jun 2004; Stephen P. Becker <geoman@gentoo.org>
  bind-tools-9.2.3-r1.ebuild:
  Added gnuconfig tweak for mips.

  05 Jun 2004; Bryan Østergaard <kloeri@gentoo.org>
  bind-tools-9.2.3-r1.ebuild:
  Stable on alpha.

  01 Jun 2004; Tom Gall <tgall@gentoo.org> bind-tools-9.2.3-r1.ebuild:
  stable on ppc64, bug #52706

  15 May 2004; Joshua Kinard <kumba@gentoo.org> bind-tools-9.2.3-r1.ebuild:
  Marked stable on mips.

  27 Apr 2004; Aron Griffis <agriffis@gentoo.org> bind-tools-9.2.3.ebuild:
  Add flag-o-matic for bug 49179

  26 Apr 2004; Michael McCabe <randy@gentoo.org> bind-tools-9.2.3-r1.ebuild:
  added s390 keywords

  11 Apr 2004; Jason Wever <weeve@gentoo.org> bind-tools-9.2.3-r1.ebuild:
  Stable on sparc.

  11 Mar 2004; Lars Weiler <pylon@gentoo.org> bind-tools-9.2.3-r1.ebuild:
  stable on ppc

*bind-tools-9.2.3-r1 (02 Feb 2004)

  02 Feb 2004; Stewart Honsberger <blkdeath@gentoo.org>
  bind-tools-9.2.3-r1.ebuild:
  Revert to old build method until dynamic linked libs co-exists with BIND

  30 Jan 2004; <tuxus@gentoo.org> bind-tools-9.2.2.ebuild:
  Added mips to KEYWORDS.

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

  24 Nov 2003; Aron Griffis <agriffis@gentoo.org> bind-tools-9.2.3.ebuild:
  Disable on alpha until bug 34265 is resolved

  18 Nov 2003; Stewart <stewart@gentoo.org> bind-tools-9.2.3.ebuild:
  -fPIC flag for 64-bit architectures (Bug #33336)

*bind-tools-9.2.3 (17 Nov 2003)

  17 Nov 2003; Stewart Honsberger <blkdeath@gentoo.org>
  bind-tools-9.2.3.ebuild:
  Version bump.
  Dynamic linking of utilities (Bug #14261)

*bind-tools-9.2.2 (04 Mar 2002)

  16 Apr 2003; Guy Martin <gmsoft@gentoo.org> bind-tools-9.2.2.ebuild :
  Marked stable for hppa.

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

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

  09 Mar 2003; Aron Griffis <agriffis@gentoo.org> bind-tools-9.2.2.ebuild:
  Marked stable on alpha and x86 during package upgrade phase.

  04 Mar 2003; Brandon Low <lostlogic@gentoo.org> bind-tools-9.2.2.ebuild:
  make->emake -j1

  04 Mar 2003; Brandon Low <lostlogic@gentoo.org> bind-tools-9.2.2.ebuild:
  Version bump, marked unstable.  Cleaned up unneeded ebuilds.

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

  27 Feb 2003; Guy Martin <gmsoft@gentoo.org> bind-tools-9.2.2_rc1.ebuild :
  Added hppa to keywords.

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

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

*bind-tools-9.2.1 (27 Jun 2002)

  27 Jun 2002; Seemant Kulleen <seemant@gentoo.org> bind-tools-9.2.1.ebuild
  files/digest-bind-tools-9.2.1 :

  Version bump by: markus-krainer@chello.at (Markus Krainer) in bug #3249

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