summaryrefslogtreecommitdiff
blob: d1344c3f8991ea3d229f86941a23f114fe229afa (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
# ChangeLog for net-misc/dhcp
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcp/ChangeLog,v 1.256 2014/11/02 09:07:17 swift Exp $

  02 Nov 2014; Sven Vermeulen <swift@gentoo.org> dhcp-4.2.5_p1-r2.ebuild:
  Remove sec-policy/selinux-* dependency from DEPEND but keep in RDEPEND (bug
  #527698)

  05 Jul 2014; Mikle Kolyada <zlogene@gentoo.org> dhcp-4.2.5_p1-r2.ebuild:
  ia64/ppc64/ppc/sparc stable wrt bug #499324

  05 Jul 2014; Tobias Klausmann <klausman@gentoo.org> dhcp-4.2.5_p1-r2.ebuild:
  Stable on alpha, bug #499324

  06 Apr 2014; Mike Frysinger <vapier@gentoo.org> dhcp-4.2.5_p1-r2.ebuild:
  Mark arm64/m68k/s390/sh stable.

  24 Feb 2014; Pawel Hajdan jr <phajdan.jr@gentoo.org> dhcp-4.2.5_p1-r2.ebuild:
  x86 stable wrt bug #499324

  23 Feb 2014; Markus Meier <maekke@gentoo.org> dhcp-4.2.5_p1-r2.ebuild:
  arm stable, bug #499324

  20 Feb 2014; Chema Alonso <nimiux@gentoo.org> dhcp-4.2.5_p1-r2.ebuild:
  Stable for amd64 wrt bug #499324

  03 Feb 2014; Jeroen Roovers <jer@gentoo.org> dhcp-4.2.5_p1-r2.ebuild:
  Stable for HPPA (bug #499324).

  06 Jan 2014; Sergey Popov <pinkbyte@gentoo.org>
  -files/dhcp-3.0.2-gmake.patch, -files/dhcp-3.0.3-dhclient-dbus.patch,
  -files/dhcp-3.0.3-dhclient-hostname.patch,
  -files/dhcp-3.0.3-dhclient-metric.patch,
  -files/dhcp-3.0.3-dhclient-mtu.patch, -files/dhcp-3.0.3-dhclient-ntp.patch,
  -files/dhcp-3.0.3-libdst.patch, -files/dhcp-3.0.3-no_isc_blurb.patch,
  -files/dhcp-3.0.4-dhclient-stdin-conf.patch,
  -files/dhcp-3.0.5-bpf-nofallback.patch,
  -files/dhcp-3.1.0a1-dhclient-resolvconf.patch, -dhcp-3.1.2_p1.ebuild,
  -files/dhcp-3.1.2_p1-CVE-2009-1892.patch, -dhcp-3.1.3_p1.ebuild,
  -files/dhcp-4.0.1-dhclient-stdin-conf.patch, -dhcp-4.2.1_p1.ebuild,
  -files/dhcp-4.2.1-dhclient-parse_option_param-Bad-format-a.patch,
  -files/dhcp-4.2.1-dhclient-resolvconf.patch,
  -files/dhcp-4.2.1-nogateway.patch, -dhcp-4.2.2.ebuild, -dhcp-4.2.2-r1.ebuild,
  -dhcp-4.2.2-r2.ebuild, -dhcp-4.2.2-r3.ebuild, -dhcp-4.2.3_p1.ebuild,
  -dhcp-4.2.3_p2.ebuild, -dhcp-4.2.4_p1.ebuild, -dhcp-4.2.4_p2.ebuild,
  -dhcp-4.2.4_p2-r1.ebuild, -files/dhcpd.conf, -files/dhcpd.init2,
  -files/dhcpd.init3, -files/dhcpd.init4, -files/dhcrelay.init,
  -files/dhcrelay.init2:
  Security cleanup, wrt bug #463848, acked by Tony Vroon

*dhcp-4.2.5_p1-r2 (26 Dec 2013)

  26 Dec 2013; Pacho Ramos <pacho@gentoo.org> +dhcp-4.2.5_p1-r2.ebuild,
  +files/dhcpd.tmpfiles, +files/dhcpd4.service, +files/dhcpd6.service,
  +files/dhcrelay4.service, +files/dhcrelay4.service.conf,
  +files/dhcrelay6.service, +files/dhcrelay6.service.conf:
  Add unit file (#490800)

  28 Nov 2013; Mike Frysinger <vapier@gentoo.org> dhcp-4.2.5_p1.ebuild:
  Mark ia64 stable #488790 by Pacho Ramos.

  28 Nov 2013; Mike Frysinger <vapier@gentoo.org>
  files/dhcp-4.2.1-dhclient-resolvconf.patch,
  files/dhcp-4.2.2-dhclient-resolvconf.patch,
  files/dhcp-4.2.5-iproute2-path.patch:
  Fix syntax error in PEER_DNS patches #489980 by Aleksandr Karagodov.

*dhcp-4.2.5_p1-r1 (28 Sep 2013)

  28 Sep 2013; Mike Frysinger <vapier@gentoo.org> +dhcp-4.2.5_p1-r1.ebuild,
  +files/dhcp-4.2.5-bindtodevice-inet6.patch,
  +files/dhcp-4.2.5-iproute2-path.patch:
  Import patch from Fedora for IPv6 interface binding #471142 by Jaak Ristioja.
  Fix path to iproute2 ip program #480636 by cyberbat.

  14 Apr 2013; Agostino Sarubbo <ago@gentoo.org> dhcp-4.2.5_p1.ebuild:
  Stable for sh, wrt bug #463848

  13 Apr 2013; Agostino Sarubbo <ago@gentoo.org> dhcp-4.2.5_p1.ebuild:
  Stable for s390, wrt bug #463848

  13 Apr 2013; Agostino Sarubbo <ago@gentoo.org> dhcp-4.2.5_p1.ebuild:
  Stable for sparc, wrt bug #463848

  12 Apr 2013; Agostino Sarubbo <ago@gentoo.org> dhcp-4.2.5_p1.ebuild:
  Stable for arm, wrt bug #463848

  11 Apr 2013; Agostino Sarubbo <ago@gentoo.org> dhcp-4.2.5_p1.ebuild:
  Stable for alpha, wrt bug #463848

  11 Apr 2013; Agostino Sarubbo <ago@gentoo.org> dhcp-4.2.5_p1.ebuild:
  Stable for ppc64, wrt bug #463848

  11 Apr 2013; Agostino Sarubbo <ago@gentoo.org> dhcp-4.2.5_p1.ebuild:
  Stable for ppc, wrt bug #463848

  10 Apr 2013; Jeroen Roovers <jer@gentoo.org> dhcp-4.2.5_p1.ebuild:
  Inherit user.eclass.

  10 Apr 2013; Jeroen Roovers <jer@gentoo.org> dhcp-4.2.5_p1.ebuild:
  Stable for HPPA (bug #463848).

  09 Apr 2013; Agostino Sarubbo <ago@gentoo.org> dhcp-4.2.5_p1.ebuild:
  Stable for x86, wrt bug #463848

  09 Apr 2013; Agostino Sarubbo <ago@gentoo.org> dhcp-4.2.5_p1.ebuild:
  Stable for amd64, wrt bug #463848

*dhcp-4.2.5_p1 (31 Mar 2013)

  31 Mar 2013; Mike Frysinger <vapier@gentoo.org> +dhcp-4.2.5_p1.ebuild:
  Version bump #463848 by Agostino Sarubbo.

  01 Jan 2013; Agostino Sarubbo <ago@gentoo.org> dhcp-4.2.4_p2-r1.ebuild:
  Add ~ia64, wrt bug #449220

  09 Dec 2012; Ulrich Müller <ulm@gentoo.org> dhcp-3.1.2_p1.ebuild,
  dhcp-3.1.3_p1.ebuild, dhcp-4.2.1_p1.ebuild, dhcp-4.2.2.ebuild,
  dhcp-4.2.2-r1.ebuild, dhcp-4.2.2-r2.ebuild, dhcp-4.2.2-r3.ebuild,
  dhcp-4.2.3_p1.ebuild, dhcp-4.2.3_p2.ebuild, dhcp-4.2.4_p1.ebuild,
  dhcp-4.2.4_p2.ebuild, dhcp-4.2.4_p2-r1.ebuild:
  Fix LICENSE, bugs 446536 and 426054.

  11 Nov 2012; Mike Frysinger <vapier@gentoo.org> dhcp-4.2.4_p2-r1.ebuild,
  files/dhcpd.init5, files/dhcrelay.init3:
  Add slapd to use in init.d depends when built with USE=ldap #442560 by Tiziano
  Müller.

  11 Nov 2012; Mike Frysinger <vapier@gentoo.org> dhcp-4.2.4_p2-r1.ebuild:
  Drop NetworkManager dbus patch as NM handles this itself now #441968 by Pavel
  Šimerda.

  13 Oct 2012; Raúl Porcel <armin76@gentoo.org> dhcp-4.2.4_p2.ebuild:
  alpha/s390/sh/sparc stable wrt #434880

  12 Oct 2012; Mike Frysinger <vapier@gentoo.org> dhcp-4.2.4_p2-r1.ebuild:
  Set AR ourselves since dhcp's build system doesn't do it for us #437980 by
  Agostino Sarubbo.

  11 Oct 2012; Anthony G. Basile <blueness@gentoo.org> dhcp-4.2.4_p2.ebuild:
  stable ppc ppc64, bug #434880

  11 Oct 2012; Agostino Sarubbo <ago@gentoo.org> dhcp-4.2.4_p2.ebuild:
  Stable for amd64, wrt bug #434880

  11 Oct 2012; Andreas Schuerch <nativemad@gentoo.org> dhcp-4.2.4_p2.ebuild:
  x86 stable, see bug 434880

  11 Oct 2012; Markus Meier <maekke@gentoo.org> dhcp-4.2.4_p2.ebuild:
  arm stable, bug #434880

  10 Oct 2012; Jeroen Roovers <jer@gentoo.org> dhcp-4.2.4_p2.ebuild:
  Stable for HPPA (bug #434880).

*dhcp-4.2.4_p2-r1 (10 Oct 2012)

  10 Oct 2012; Mike Frysinger <vapier@gentoo.org> +dhcp-4.2.4_p2-r1.ebuild,
  +files/dhcp-4.2.4-always-accept-4.patch, +files/dhcp-4.2.4-quieter-ping.patch:
  Quiet ping output by default #296921 by Martin Mokrejš.  Always accept the -4
  option even when USE=-ipv6 #437108 by Stefan Reimer.

*dhcp-4.2.4_p2 (07 Oct 2012)

  07 Oct 2012; Mike Frysinger <vapier@gentoo.org> +dhcp-4.2.4_p2.ebuild,
  +files/dhcp-4.2.1-dhclient-parse_option_param-Bad-format-a.patch:
  Version bump. Add fix from OpenSUSE for parsing "a" options #432998 by Andreas
  Steinmetz.

  20 Sep 2012; Kacper Kowalik <xarthisius@gentoo.org> dhcp-4.2.4_p1.ebuild:
  ppc64 stable wrt #428120

  26 Aug 2012; Raúl Porcel <armin76@gentoo.org> dhcp-4.2.4_p1.ebuild:
  alpha/s390/sh/sparc stable wrt #428120

  09 Aug 2012; Brent Baude <ranger@gentoo.org> dhcp-4.2.4_p1.ebuild:
  Marking dhcp-4.2.4_p1 ppc for bug 428120

  02 Aug 2012; Markus Meier <maekke@gentoo.org> dhcp-4.2.4_p1.ebuild:
  arm stable, bug #428120

  26 Jul 2012; Jeroen Roovers <jer@gentoo.org> dhcp-4.2.4_p1.ebuild:
  Stable for HPPA (bug #428120).

  26 Jul 2012; Johannes Huber <johu@gentoo.org> dhcp-4.2.4_p1.ebuild:
  Stable for x86, wrt bug #428120

  26 Jul 2012; Richard Freeman <rich0@gentoo.org> dhcp-4.2.4_p1.ebuild:
  amd64 stable - 428120

*dhcp-4.2.4_p1 (26 Jul 2012)

  26 Jul 2012; Tony Vroon <chainsaw@gentoo.org> +dhcp-4.2.4_p1.ebuild:
  Security upgrade addressing an IPv6-only buffer overflow (CVE-2012-3570),
  remotely triggerable infinite loop (CVE-2012-3571) and remotely triggerable
  memory leaks (CVE-2012-3954).

  16 May 2012; Mike Frysinger <vapier@gentoo.org> files/dhcrelay.init3,
  files/dhcrelay6.conf:
  Drop use of IFACE for dhcrelay6 #415957#5 by Spooky Ghost.

*dhcp-4.2.3_p2 (16 May 2012)

  16 May 2012; Mike Frysinger <vapier@gentoo.org> +dhcp-4.2.3_p2.ebuild,
  +files/dhcrelay.init3, +files/dhcrelay6.conf:
  Version bump, and add dhcrelay6 init.d support #415957 by Spooky Ghost.

  28 Apr 2012; Alexis Ballier <aballier@gentoo.org> dhcp-4.2.3_p1.ebuild:
  keyword ~amd64-fbsd

  21 Mar 2012; Diego E. Pettenò <flameeyes@gentoo.org> dhcp-4.2.3_p1.ebuild:
  Only depend on net-tools with client USE flag enabled (it's used by the
  dhclient script).

  01 Jan 2012; Raúl Porcel <armin76@gentoo.org> dhcp-4.2.3_p1.ebuild:
  alpha/s390/sh/sparc stable wrt #393617

  22 Dec 2011; Mark Loeser <halcy0n@gentoo.org> dhcp-4.2.3_p1.ebuild:
  Stable for ppc/ppc64; bug #393617

  14 Dec 2011; Markus Meier <maekke@gentoo.org> dhcp-4.2.3_p1.ebuild:
  arm stable, bug #393617

  14 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> dhcp-4.2.3_p1.ebuild:
  x86 stable wrt bug #393617

  11 Dec 2011; Agostino Sarubbo <ago@gentoo.org> dhcp-4.2.3_p1.ebuild:
  Stable for AMD64, wrt security bug #393617

  09 Dec 2011; Jeroen Roovers <jer@gentoo.org> dhcp-4.2.3_p1.ebuild:
  Stable for HPPA (bug #393617).

*dhcp-4.2.3_p1 (08 Dec 2011)

  08 Dec 2011; Mike Frysinger <vapier@gentoo.org> +dhcp-4.2.3_p1.ebuild:
  Version bump #393617 by Agostino Sarubbo.

*dhcp-4.2.2-r3 (04 Dec 2011)

  04 Dec 2011; Mike Frysinger <vapier@gentoo.org> +dhcp-4.2.2-r3.ebuild,
  +files/dhcpd.init5:
  Enable --enable-early-chroot so config files can be per-chroot #388395 by
  Touch. Fix up path to dhcprelay pid files #309129#2 by Milan Dadok.

  11 Oct 2011; Jeroen Roovers <jer@gentoo.org> dhcp-4.2.2-r2.ebuild:
  Stable for HPPA (bug #378799).

  02 Oct 2011; Raúl Porcel <armin76@gentoo.org> dhcp-4.2.2-r2.ebuild:
  alpha/arm/ia64/s390/sh/sparc stable wrt #378799

  25 Sep 2011; Kacper Kowalik <xarthisius@gentoo.org> dhcp-4.2.2-r2.ebuild:
  ppc/ppc64 stable wrt #378799

  23 Sep 2011; Andreas Schuerch <nativemad@gentoo.org> dhcp-4.2.2-r2.ebuild:
  x86 stable. Thanks Myckel SpanKY and all. bug 378799

  23 Sep 2011; Mike Frysinger <vapier@gentoo.org> dhcp-4.2.2-r2.ebuild:
  Install newer init.d script #383961 by Andreas Schürch.

  22 Sep 2011; Mike Frysinger <vapier@gentoo.org> dhcp-4.2.2-r2.ebuild,
  files/dhcpd.init4:
  Install the default config files commented out since they aren't useful in
  the real world other than as examples #384087 by Nick Bowler.

  22 Sep 2011; Mike Frysinger <vapier@gentoo.org> dhcp-4.2.2-r2.ebuild:
  Disable symtable support in local bind as it requires perl #383837 by Albert
  W. Hopkins.

  20 Sep 2011; Tony Vroon <chainsaw@gentoo.org> dhcp-4.2.2-r2.ebuild:
  Marked stable on AMD64 based on explicit recommendation by Markos "hwoarang"
  Chandras in #gentoo-amd64-dev.

  19 Sep 2011; Markos Chandras <hwoarang@gentoo.org> dhcp-4.2.2-r1.ebuild:
  Stable on amd64 wrt bug #378799

  18 Sep 2011; Mike Frysinger <vapier@gentoo.org> dhcp-4.2.2-r2.ebuild,
  files/dhcpd.conf2:
  Drop old `emerge --config` comment #362535#9 by Petr Pisar.

*dhcp-4.2.2-r2 (17 Sep 2011)

  17 Sep 2011; Mike Frysinger <vapier@gentoo.org> +dhcp-4.2.2-r2.ebuild,
  +files/dhcpd.conf2, +files/dhcpd.init4:
  Rewrite chroot usage to work with newer versions #362535 by Andrew Savchenko.

  29 Aug 2011; Mike Frysinger <vapier@gentoo.org>
  files/dhcp-4.2.2-bind-build-flags.patch:
  Use BUILD_LIBS when creating build "gen" binary to fix cross-compiling cases
  where the target uses libcap.

  29 Aug 2011; Diego E. Pettenò <flameeyes@gentoo.org> dhcp-4.2.2-r1.ebuild:
  Make sure the bind sub-build doesn't find libcap or it can rely on it for the
  build process (disrupting cross-compilation). Also make the vim syntax
  package a runtime dependency only, not a build-time one.

*dhcp-4.2.2-r1 (27 Aug 2011)

  27 Aug 2011; Mike Frysinger <vapier@gentoo.org> +dhcp-4.2.2-r1.ebuild:
  Fix up some bad paths to conf/run files #380829 by Agostino Sarubbo.

  27 Aug 2011; Mike Frysinger <vapier@gentoo.org> dhcp-4.2.2.ebuild,
  +files/dhcp-4.2.2-bind-build-flags.patch,
  +files/dhcp-4.2.2-bind-disable.patch,
  +files/dhcp-4.2.2-bind-parallel-build.patch:
  Fix parallel build #380717 by Cédric Jeanneret, and clean up bind tweaks
  with patches.

  26 Aug 2011; Thomas Kahle <tomka@gentoo.org> dhcp-4.2.2.ebuild:
  x86 stable per bug 378799

*dhcp-4.2.2 (26 Aug 2011)

  26 Aug 2011; Mike Frysinger <vapier@gentoo.org> +dhcp-4.2.2.ebuild,
  +files/dhcp-4.2.2-dhclient-resolvconf.patch,
  +files/dhcp-4.2.2-dhclient-stdin-conf.patch,
  +files/dhcp-4.2.2-nogateway.patch:
  Version bump for security #378799, and fix cross-compiling.

  01 May 2011; Kacper Kowalik <xarthisius@gentoo.org> dhcp-3.1.3_p1.ebuild:
  ppc64 stable wrt #360047

  25 Apr 2011; Raúl Porcel <armin76@gentoo.org> dhcp-3.1.3_p1.ebuild:
  s390/sh/sparc stable wrt #360047

  15 Apr 2011; Ulrich Mueller <ulm@gentoo.org> dhcp-3.1.2_p1.ebuild,
  dhcp-3.1.3_p1.ebuild, dhcp-4.2.1_p1.ebuild:
  Don't PROVIDE virtual/dhcpc, bug 358827.

  11 Apr 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> dhcp-3.1.3_p1.ebuild:
  x86 stable wrt bug #360047

  10 Apr 2011; Markus Meier <maekke@gentoo.org> dhcp-3.1.3_p1.ebuild:
  arm stable, bug #360047

*dhcp-4.2.1_p1 (07 Apr 2011)

  07 Apr 2011; Mike Frysinger <vapier@gentoo.org> +dhcp-4.2.1_p1.ebuild:
  Version bump #362453 by Alex Legler.

  01 Apr 2011; Jeroen Roovers <jer@gentoo.org> dhcp-3.1.3_p1.ebuild:
  Stable for HPPA (bug #360047).

  27 Mar 2011; Tobias Klausmann <klausman@gentoo.org> dhcp-3.1.3_p1.ebuild:
  Stable on alpha, bug #360047

  25 Mar 2011; Brent Baude <ranger@gentoo.org> dhcp-3.1.3_p1.ebuild:
  Marking dhcp-3.1.3_p1 ppc for bug 360047

  23 Mar 2011; Christoph Mende <angelos@gentoo.org> dhcp-3.1.3_p1.ebuild:
  Stable on amd64 wrt bug #360047

*dhcp-4.2.1-r1 (23 Mar 2011)

  23 Mar 2011; Mike Frysinger <vapier@gentoo.org> +dhcp-4.2.1-r1.ebuild,
  metadata.xml:
  Add USE=client/server flags.

  08 Mar 2011; Mike Frysinger <vapier@gentoo.org> files/dhcrelay.init2:
  Fix typo in dhcrelay init script #357935 by Milan Dadok.

*dhcp-4.2.1 (05 Mar 2011)

  05 Mar 2011; Mike Frysinger <vapier@gentoo.org>
  +files/dhcp-4.2.0-errwarn-message.patch, +dhcp-4.2.1.ebuild,
  +files/dhcp-4.2.1-dhclient-resolvconf.patch,
  +files/dhcp-4.2.1-nogateway.patch, +files/dhcpd.init3,
  +files/dhcrelay.init2:
  Version bump #309133 by Milan Dadok, #325605 by Stefan Behte, and #352897
  by Paweł Hajdan, Jr. Add ldap support #160979 by Nico. Allow dhcp init.d
  script to be multiplexed #238277 by Roy Marples. Respect nogateway option
  by Laszlo Valko #265531 by Dmitry. Fix up chroot config checking by Lance
  Albertson #278335 by Arthur Hagen. Include full DHCPD_OPTS when checking
  the config #283352 by Marc. Update path to dhcrelay.pid #309129 by Milan
  Dadok.

*dhcp-3.1.3_p1 (15 Oct 2010)

  15 Oct 2010; Robin H. Johnson <robbat2@gentoo.org> +dhcp-3.1.3_p1.ebuild:
  Upstream final 3.1 release: 3.1-ESV. In Gentoo as 3.1.3_p1 since we need
  it to come after 3.1.3.

*dhcp-3.1.3 (15 Oct 2010)

  15 Oct 2010; Robin H. Johnson <robbat2@gentoo.org> +dhcp-3.1.3.ebuild,
  +files/dhcp-3.1.3-dhclient-no-down.patch:
  Bug #324671: Add dhcpd-3.1.3

  15 Jan 2010; Ulrich Mueller <ulm@gentoo.org> dhcp-3.1.1.ebuild,
  dhcp-3.1.1-r1.ebuild, dhcp-3.1.2.ebuild, dhcp-3.1.2_p1.ebuild,
  dhcp-4.0.1.ebuild, dhcp-4.1.0.ebuild:
  Fix LICENSE, bug 301123.

  26 Jul 2009; Brent Baude <ranger@gentoo.org> dhcp-3.1.2_p1.ebuild:
  Marking dhcp-3.1.2_p1 ppc64 for bug 275231

  22 Jul 2009; Raúl Porcel <armin76@gentoo.org> dhcp-3.1.2_p1.ebuild:
  arm/s390/sh/sparc stable wrt #275231

  19 Jul 2009; nixnut <nixnut@gentoo.org> dhcp-3.1.2_p1.ebuild:
  ppc stable #275231

  19 Jul 2009; Tobias Klausmann <klausman@gentoo.org> dhcp-3.1.2_p1.ebuild:
  Stable on alpha, bug #275231

  17 Jul 2009; Jeroen Roovers <jer@gentoo.org> dhcp-3.1.2_p1.ebuild:
  Stable for HPPA (bug #275231).

  16 Jul 2009; Christian Faulhammer <fauli@gentoo.org> dhcp-3.1.2_p1.ebuild:
  stable x86, security bug 275231

  16 Jul 2009; <chainsaw@gentoo.org> dhcp-3.1.2_p1.ebuild:
  Marked stable on AMD64 for security bug #275231; tested on a dual
  dual-core Opteron 2220 system with ~15 clients spread over two subnets.

*dhcp-3.1.2_p1 (14 Jul 2009)

  14 Jul 2009; Robert Buchholz <rbu@gentoo.org>
  +files/dhcp-3.1.2_p1-CVE-2009-1892.patch, +dhcp-3.1.2_p1.ebuild:
  Add new upstream version with the official fix for CVE-2009-0692, fix
  DoS issue in dhcpd (CVE-2009-1892), bug #275231.

*dhcp-3.1.1-r1 (14 Jul 2009)

  14 Jul 2009; <chainsaw@gentoo.org> +dhcp-3.1.1-r1.ebuild,
  +files/dhcp-3.1.1-CVE-2009-0692.patch:
  Version bump for CVE-2009-0692 (dhclient stack-based buffer overflow);
  security bug #277729. Stable keywords approved by arch liaisons.

*dhcp-4.1.0 (09 Jul 2009)
*dhcp-3.1.2 (09 Jul 2009)

  09 Jul 2009; <chainsaw@gentoo.org> +dhcp-3.1.2.ebuild, +dhcp-4.1.0.ebuild,
  +files/dhcp-4.1-dhclient-metric.patch, +files/dhcp-4.1-no_isc_blurb.patch,
  +files/dhcpd.init2:
  Version bump to 3.1.2 & 4.1.0 upstream releases, as requested in bug
  #264809. Create /var/lib/dhclient as per bug #222261. Recursive chown to
  dhcp:dhcp closes bug #236671. Test config in init-script, apache-style by
  Arturas from Lithuania in bug #259364. Paranoia/chroot support now
  upstream in 4.1, dropped patch.

  29 May 2009; Mike Frysinger <vapier@gentoo.org> -dhcp-3.0.3-r9.ebuild,
  -dhcp-3.0.6.ebuild, -dhcp-3.1.0.ebuild:
  Punt old packages vuln to GLSA 200808-05 #271748.

*dhcp-4.0.1 (30 Mar 2009)

  30 Mar 2009; <chainsaw@gentoo.org>
  +files/dhcp-4.0.1-dhclient-stdin-conf.patch, -dhcp-4.0.0.ebuild,
  +dhcp-4.0.1.ebuild:
  Version bump to 4.0.1, stdin config support for dhclient has been rediffed
  due to upstream changes. Still masked, deleting old ebuild.

  26 Oct 2008; Mike Frysinger <vapier@gentoo.org> dhcp-4.0.0.ebuild:
  Pull in app-vim/dhcpd-syntax with USE=vim-syntax #240192 by Dan Wallis.

*dhcp-4.0.0 (04 Sep 2008)

  04 Sep 2008; <chainsaw@gentoo.org> +files/dhcp-4.0-dhclient-metric.patch,
  +files/dhcp-4.0-dhclient-ntp.patch,
  +files/dhcp-4.0-dhclient-resolvconf.patch,
  +files/dhcp-4.0-dhclient-script-correct-operators.patch,
  +files/dhcp-4.0-dhclient-stdin-conf.patch,
  +files/dhcp-4.0-linux-ipv6-header.patch,
  +files/dhcp-4.0-no_isc_blurb.patch, +files/dhcp-4.0-paranoia.patch,
  +dhcp-4.0.0.ebuild:
  Version bump, closes bug #205214. Thanks to Roy "UberLord" Marples
  <roy@marples.name> for patching and patch porting.

  29 Jun 2008; Tobias Klausmann <klausman@gentoo.org> dhcp-3.1.1.ebuild:
  Stable on alpha, bug #227135

  29 Jun 2008; Friedrich Oslage <bluebird@gentoo.org> dhcp-3.1.1.ebuild:
  Stable on sparc, bug #227135

  28 Jun 2008; Jeroen Roovers <jer@gentoo.org> dhcp-3.1.1.ebuild:
  Stable for HPPA (bug #227135).

  28 Jun 2008; Markus Meier <maekke@gentoo.org> dhcp-3.1.1.ebuild:
  x86 stable, bug #227135

  27 Jun 2008; Brent Baude <ranger@gentoo.org> dhcp-3.1.1.ebuild:
  Marking dhcp-3.1.1 ppc for bug 227135

  27 Jun 2008; Brent Baude <ranger@gentoo.org> dhcp-3.1.1.ebuild:
  Marking dhcp-3.1.1 ppc64 for bug 227135

  27 Jun 2008; <chainsaw@gentoo.org> dhcp-3.1.1.ebuild:
  Mark stable on AMD64 for security bug #227135. Tested on Core2 Duo &
  Opteron 2218.

*dhcp-3.1.1 (27 Jun 2008)

  27 Jun 2008; <chainsaw@gentoo.org> +dhcp-3.1.1.ebuild:
  Version bump for bug #227135.

  29 Mar 2008; Mike Frysinger <vapier@gentoo.org>
  files/dhcp-3.0.3-dhclient-ntp.patch,
  files/dhcp-3.0.3-dhclient-resolvconf.patch,
  files/dhcp-3.1.0a1-dhclient-resolvconf.patch:
  Convert `echo -e` to `printf` #208558 by Davide Pesavento.

  25 Dec 2007; Christian Heim <phreak@gentoo.org> metadata.xml:
  Removing uberlord from metadata.xml as per #199318.

  01 Oct 2007; Raúl Porcel <armin76@gentoo.org> dhcp-3.0.6.ebuild,
  dhcp-3.1.0.ebuild:
  sparc stable wrt #190775

  09 Sep 2007; Roy Marples <uberlord@gentoo.org> dhcp-3.1.0.ebuild:
  Stop installing a blank dhcpd.leases file, #191748 thanks to Kevin Pyle.

  08 Sep 2007; Joseph Jezak <josejx@gentoo.org> dhcp-3.0.6.ebuild,
  dhcp-3.1.0.ebuild:
  Marked ppc/ppc64 stable for bug #190775.

  06 Sep 2007; Roy Marples <uberlord@gentoo.org>
  -files/dhcp-3.1.0a1-x-option.patch, dhcp-3.1.0.ebuild:
  Drop the extended option patch for 3.1.0 as we stopped using it.

  02 Sep 2007; Joshua Kinard <kumba@gentoo.org> dhcp-3.0.6.ebuild,
  dhcp-3.1.0.ebuild:
  Stable on mips, per 190775.

  02 Sep 2007; Christoph Mende <angelos@gentoo.org> dhcp-3.0.6.ebuild,
  dhcp-3.1.0.ebuild:
  Stable on amd64 wrt bug #190775

  02 Sep 2007; Raúl Porcel <armin76@gentoo.org> dhcp-3.0.6.ebuild,
  dhcp-3.1.0.ebuild:
  alpha stable wrt #190775, thanks to Tobias Klausmann for testing

  30 Aug 2007; Jurek Bartuszek <jurek@gentoo.org> dhcp-3.0.6.ebuild,
  dhcp-3.1.0.ebuild:
  x86 stable (bug #190775)

  30 Aug 2007; Jeroen Roovers <jer@gentoo.org> dhcp-3.0.6.ebuild,
  dhcp-3.1.0.ebuild:
  Stable for HPPA (bug #190775).

*dhcp-3.1.0 (20 Jul 2007)

  20 Jul 2007; Roy Marples <uberlord@gentoo.org> +dhcp-3.1.0.ebuild:
  Bumpage.

*dhcp-3.1.0_rc2 (19 Jul 2007)

  19 Jul 2007; Roy Marples <uberlord@gentoo.org> +dhcp-3.1.0_rc2.ebuild:
  New upstream rc. May not work with NetworkManager as dhclient now has it's
  own -x option which conflicts with one of the patches.

  19 Jul 2007; Roy Marples <uberlord@gentoo.org>
  +files/dhcp-3.0-ddns-example.patch, dhcp-3.0.3-r9.ebuild,
  dhcp-3.0.6.ebuild:
  Add 'ddns-update-style ad-hoc;' to the example dhcpd.conf file, #170311
  thanks to Whit Blauvelt.

*dhcp-3.0.6 (05 Jul 2007)

  05 Jul 2007; Roy Marples <uberlord@gentoo.org> +dhcp-3.0.6.ebuild:
  Bump

*dhcp-3.1.0_alpha3 (26 Apr 2007)

  26 Apr 2007; Roy Marples <uberlord@gentoo.org> +dhcp-3.1.0_alpha3.ebuild:
  Bump, #176137 thanks to Attila Jecs.

  22 Apr 2007; Roy Marples <uberlord@gentoo.org> dhcp-3.0.3-r9.ebuild,
  dhcp-3.0.5.ebuild, dhcp-3.0.5-r1.ebuild, dhcp-3.1.0_alpha2.ebuild:
  newins -> newconfd, #174266.

  22 Mar 2007; Roy Marples <uberlord@gentoo.org> files/dhcrelay.init:
  Remove bashisms from dhcrelay script, #171766 thanks to Natanael Copa.

*dhcp-3.0.5-r1 (10 Mar 2007)

  10 Mar 2007; Roy Marples <uberlord@gentoo.org> files/dhcpd.init,
  +dhcp-3.0.5-r1.ebuild:
  Bump for a non bash init script for dhcpd, #170084 thanks to Natanael Copa.

  20 Dec 2006; Roy Marples <uberlord@gentoo.org> dhcp-3.0.5.ebuild,
  dhcp-3.1.0_alpha2.ebuild:
  Stop dhclient-script forcing bash, #158540 thanks to Nick Fortune.

*dhcp-3.1.0_alpha2 (13 Dec 2006)

  13 Dec 2006; Roy Marples <uberlord@gentoo.org> +dhcp-3.1.0_alpha2.ebuild:
  New upstream alpha.

*dhcp-3.0.5 (06 Nov 2006)

  06 Nov 2006; Roy Marples <uberlord@gentoo.org> +dhcp-3.0.5.ebuild:
  New upstream version.

  17 Oct 2006; Roy Marples <uberlord@gentoo.org> dhcp-3.0.5_rc2.ebuild,
  dhcp-3.1.0_alpha1.ebuild:
  Added ~sparc-fbsd keyword.

  20 Sep 2006; Roy Marples <uberlord@gentoo.org>
  +files/dhcp-3.0.5-bpf-nofallback.patch, dhcp-3.0.5_rc2.ebuild,
  dhcp-3.1.0_alpha1.ebuild:
  Add a patch to stop using a fallback interface when using BPF.
  This allows >1 instance of dhclient to run on BSD.

  13 Sep 2006; Roy Marples <uberlord@gentoo.org> dhcp-3.0.4-r2.ebuild,
  dhcp-3.0.5_rc2.ebuild, dhcp-3.1.0_alpha1.ebuild:
  Quiet the freebsd logger a little

  08 Sep 2006; Roy Marples <uberlord@gentoo.org> files/dhcrelay.conf:
  dhcrelay should be configured for all interfaces used for listening and
  sending, not just listening. Thanks to rmh3093 in the forums.

*dhcp-3.1.0_alpha1 (07 Sep 2006)

  07 Sep 2006; Roy Marples <uberlord@gentoo.org>
  +files/dhcp-3.1.0a1-dhclient-resolvconf.patch,
  +files/dhcp-3.1.0a1-x-option.patch, +dhcp-3.1.0_alpha1.ebuild:
  New alpha version. Has FQDN support, wooooo.

  06 Sep 2006; Roy Marples <uberlord@gentoo.org> dhcp-3.0.5_rc2.ebuild:
  Just warn about Packet Socket instead of requiring linux sources

  05 Sep 2006; Roy Marples <uberlord@gentoo.org> dhcp-3.0.5_rc2.ebuild:
  dhcp requires CONFIG_PACKET to work in linux.

*dhcp-3.0.5_rc2 (03 Sep 2006)

  03 Sep 2006; Roy Marples <uberlord@gentoo.org>
  +dhcp-3.0.5_rc2.ebuild:
  Version bump.

  11 Aug 2006; Thomas Cort <tcort@gentoo.org> dhcp-3.0.3-r9.ebuild:
  Stable on alpha wrt Bug #137689.

*dhcp-3.0.5_beta1 (27 Jul 2006)

  27 Jul 2006; Roy Marples <uberlord@gentoo.org>
  files/dhcp-3.0.3-dhclient-hostname.patch, +dhcp-3.0.5_beta1.ebuild:
  Version bump and fix hostname patch slightly.
  
  09 Jul 2006; Joshua Kinard <kumba@gentoo.org> dhcp-3.0.3-r9.ebuild:
  Marked stable on mips.

  02 Jul 2006; Chris White <chriswhite@gentoo.org> metadata.xml:
  Japanese metadata.xml translation.  Thanks to Yoshino-san in bug #134840.

*dhcp-3.0.4-r2 (28 Jun 2006)

  28 Jun 2006; Roy Marples <uberlord@gentoo.org>
  +files/dhcp-3.0.4-64bit.patch, +dhcp-3.0.4-r2.ebuild:
  Added patch to fix 64 bit DHCP servers, #133905.

  25 Jun 2006; Marcus D. Hanwell <cryos@gentoo.org> dhcp-3.0.3-r9.ebuild:
  Marked stable on amd64. bug 137689.

  25 Jun 2006; Guy Martin <gmsoft@gentoo.org> dhcp-3.0.3-r9.ebuild:
  Stable on hppa.

  25 Jun 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  dhcp-3.0.3-r9.ebuild:
  ppc stable, bug #137689

  23 Jun 2006; Markus Rothe <corsair@gentoo.org> dhcp-3.0.3-r9.ebuild:
  Stable on ppc64; bug #137689

  23 Jun 2006; Chris Gianelloni <wolf31o2@gentoo.org> dhcp-3.0.3-r9.ebuild:
  Stable on x86 wrt bug #137689.

  23 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org> dhcp-3.0.3-r9.ebuild:
  Stable on sparc wrt #137689

  09 Jun 2006; <roy@gentoo.org> -dhcp-3.0.4.ebuild, dhcp-3.0.3-r9.ebuild,
  dhcp-3.0.4-r1.ebuild:
  minimal USE flag stops the building of the DHCP server
  doc USE flag installs the documentation

*dhcp-3.0.3-r9 (23 May 2006)

  23 May 2006; Roy Marples <uberlord@gentoo.org>
  files/dhcp-3.0.3-dhclient-resolvconf.patch, +dhcp-3.0.3-r9.ebuild:
  dhclient-script now works with invalid, RFC violating but sometimes used
  space seperated domain names, #134101 thanks to Jan Spitalnik.

*dhcp-3.0.3-r8 (23 May 2006)

  23 May 2006; Roy Marples <uberlord@gentoo.org> +dhcp-3.0.3-r8.ebuild:
  As 3.0.4 is a bust for 64-bit servers, push fixes downto 3.0.3-r8.

*dhcp-3.0.4-r1 (11 May 2006)

  11 May 2006; Roy Marples <uberlord@gentoo.org> files/dhcpd.conf,
  files/dhcpd.init, +dhcp-3.0.4-r1.ebuild:
  Fixed typo in conf.d/dhcpd and fixed chroot pidfile, #133019 thanks to Hod.

  10 May 2006; Roy Marples <uberlord@gentoo.org>
  files/dhcp-3.0.3-dhclient-metric.patch,
  files/dhcp-3.0.3-dhclient-no-down.patch:
  Tweak patches so that IF_METRIC is applied to the subnet route too.

  09 May 2006; Roy Marples <uberlord@gentoo.org> dhcp-3.0.4.ebuild:
  Correct location for default dhclient conf and pid files.

*dhcp-3.0.4 (05 May 2006)

  05 May 2006; Roy Marples <uberlord@gentoo.org>
  +files/dhcp-3.0.4-dhclient-stdin-conf.patch, +dhcp-3.0.4.ebuild:
  New upstream release.

*dhcp-3.0.4_rc1 (21 Apr 2006)
*dhcp-3.0.3-r7 (21 Apr 2006)

  21 Apr 2006; Roy Marples <uberlord@gentoo.org>
  +files/dhcp-3.0.3-dhclient-dbus.patch, +files/dhcp-3.0.3-x-option.patch,
  +dhcp-3.0.3-r7.ebuild, +dhcp-3.0.4_rc1.ebuild:
  New patches for dbus and eXtended option environment support
  which should allow us to be used by NetworkManager.

  20 Apr 2006; Roy Marples <uberlord@gentoo.org>
  files/dhcp-3.0.3-dhclient-hostname.patch,
  files/dhcp-3.0.3-dhclient-metric.patch,
  files/dhcp-3.0.3-dhclient-mtu.patch,
  +files/dhcp-3.0.3-dhclient-no-down.patch, dhcp-3.0.3-r6.ebuild,
  dhcp-3.0.4_beta3-r1.ebuild:
  metric patch now applies to ifconfig on all OS's apart from Linux.
  Split no down interface into seperate patch.
  Make SEDMANPAGES instead of CATMANPAGES, #130251.

  14 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> dhcp-3.0.3-r6.ebuild,
  dhcp-3.0.4_beta3-r1.ebuild:
  Confirm man installation names and category, so that the installed copies on
  non-Linux are the same as the ones on Linux.

  31 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> dhcp-3.0.3-r6.ebuild:
  Add ~x86-fbsd keyword.

  22 Mar 2006; Roy Marples <uberlord@gentoo.org>
  files/dhcp-3.0.3-dhclient-hostname.patch,
  files/dhcp-3.0.3-dhclient-metric.patch,
  files/dhcp-3.0.3-dhclient-mtu.patch, files/dhcp-3.0.3-dhclient-ntp.patch,
  files/dhcp-3.0.3-dhclient-resolvconf.patch, dhcp-3.0.3-r6.ebuild,
  dhcp-3.0.4_beta3-r1.ebuild:
  Tweaked patchset to apply cleanly.
  Support PEER_DNS and PEER_NTP options.

  21 Mar 2006; Diego Pettenò <flameeyes@gentoo.org> dhcp-3.0.3-r6.ebuild,
  dhcp-3.0.4_beta3-r1.ebuild:
  Make net-tools a dependency only for linux kernel.

  21 Mar 2006; Roy Marples <uberlord@gentoo.org>
  +files/dhcp-3.0.3-dhclient-hostname.patch,
  files/dhcp-3.0.3-dhclient-metric.patch,
  +files/dhcp-3.0.3-dhclient-mtu.patch, dhcp-3.0.3-r6.ebuild,
  dhcp-3.0.4_beta3-r1.ebuild:
  Added token ring patch back to 3.0.3-r6, #126971
  Fixed setting hostname on Linux kernels where it reports (none).
  dhclient-script now supports interface mtu option.

*dhcp-3.0.4_beta3-r1 (20 Mar 2006)
*dhcp-3.0.3-r6 (20 Mar 2006)

  20 Mar 2006; Roy Marples <uberlord@gentoo.org>
  +files/dhcp-3.0.3-dhclient-metric.patch,
  files/dhcp-3.0.3-dhclient-ntp.patch,
  +files/dhcp-3.0.3-dhclient-resolvconf.patch, +dhcp-3.0.3-r6.ebuild,
  +dhcp-3.0.4_beta3-r1.ebuild:
  dhclient-script now supports resolvconf, creates ntp.conf files and uses the
  env variable IF_METRIC to set a metric on default routes.

*dhcp-3.0.4_beta3 (28 Feb 2006)

  28 Feb 2006; Roy Marples <uberlord@gentoo.org> +files/dhcpd.conf,
  +files/dhcpd.init, +dhcp-3.0.4_beta3.ebuild:
  Version bump.
  3.0.4_beta3 has had the init script and config renamed to dhcpd.
  The config file has also changed slightly and the new init script can now be
  fully multiplexed as a result.
  You *have* to remove the old dhcp init script.

*dhcp-3.0.4_beta2-r2 (24 Feb 2006)
*dhcp-3.0.3-r5 (24 Feb 2006)

  24 Feb 2006; Roy Marples <uberlord@gentoo.org>
  +files/dhcp-3.0.3-dhclient-stdin-conf.patch,
  +files/dhcp-3.0.4_beta2-dhclient-stdin-conf.patch, +dhcp-3.0.3-r5.ebuild,
  +dhcp-3.0.4_beta2-r2.ebuild:
  Added a patch to dhclient so it can read extra config from stdin.
  Users won't use this, but baselayout-1.12.0_pre17 will.

*dhcp-3.0.3-r4 (23 Feb 2006)

  23 Feb 2006; Roy Marples <uberlord@gentoo.org> files/dhcp.init,
  +dhcp-3.0.3-r4.ebuild:
  Bump for a new init script that fixes non chroots, #123813.

*dhcp-3.0.3-r3 (23 Feb 2006)

  23 Feb 2006; Roy Marples <uberlord@gentoo.org> files/dhcp.init,
  +dhcp-3.0.3-r3.ebuild:
  Bump for new init script which fixes CHROOT handling, #122805.

  18 Feb 2006; Simon Stelling <blubb@gentoo.org> ChangeLog:
  stable on amd64

  17 Feb 2006; Markus Rothe <corsair@gentoo.org> dhcp-3.0.3-r2.ebuild:
  Stable on ppc64; bug #89424

  17 Feb 2006; Joseph Jezak <josejx@gentoo.org> dhcp-3.0.3-r2.ebuild:
  Marked ppc stable for bug #89424.

  09 Feb 2006; Gustavo Zacarias <gustavoz@gentoo.org> dhcp-3.0.3-r2.ebuild:
  Stable on sparc wrt #89424

  09 Feb 2006; Joshua Kinard <kumba@gentoo.org> dhcp-3.0.3-r2.ebuild:
  Marked stable on mips.

  08 Feb 2006; Mark Loeser <halcy0n@gentoo.org> dhcp-3.0.3-r2.ebuild:
  Stable on x86; bug #89424

  07 Feb 2006; Aron Griffis <agriffis@gentoo.org> dhcp-3.0.3-r2.ebuild:
  Mark 3.0.3-r2 stable on alpha

  28 Dec 2005; Guy Martin <gmsoft@gentoo.org> dhcp-3.0.3-r2.ebuild:
  No more unaligned access on hppa. Marking stable.

  22 Dec 2005; Roy Marples <uberlord@gentoo.org> dhcp-3.0.4_beta2-r1.ebuild:
  Remove script, host-name and domain-name options from the sample dhclient.conf

  21 Dec 2005; Roy Marples <uberlord@gentoo.org> dhcp-3.0.1-r1.ebuild,
  dhcp-3.0.3-r2.ebuild, dhcp-3.0.4_beta2-r1.ebuild:
  Updated post merge message to use emerge --config, #109482.

*dhcp-3.0.4_beta2-r1 (14 Dec 2005)
*dhcp-3.0.3-r2 (14 Dec 2005)

  14 Dec 2005; Roy Marples <uberlord@gentoo.org> files/dhcp.init,
  -dhcp-3.0.3-r1.ebuild, +dhcp-3.0.3-r2.ebuild, -dhcp-3.0.4_beta2.ebuild,
  +dhcp-3.0.4_beta2-r1.ebuild:
  Fixed correct owner of lease file, #115554 thanks to Jan Spitalnik.

*dhcp-3.0.4_beta2 (09 Dec 2005)

  09 Dec 2005; Roy Marples <uberlord@gentoo.org>
  +files/dhcp-3.0.3-no_isc_blurb.patch, +dhcp-3.0.4_beta2.ebuild:
  New upstream beta release, fixes #101891.
  Dropped token ring patch as a better fix has been made upstream.
  Added patch to quiet the isc blurb if the -q option is given.
  (patch nobbled from RedHat and adapted by me for dhclient and dhcrelay)
  Install Japanese documentation if ja is in LINGUAS and en isn't.
  Tart up the installed dhclient-script to add a comment saying
  that they aren't used when using Gentoo baselayout net scripts.
  Branded the binaries with Gentoo revision.

  09 Dec 2005; Roy Marples <uberlord@gentoo.org> dhcp-3.0.3-r1.ebuild:
  multilib fixed.

  07 Dec 2005; Roy Marples <uberlord@gentoo.org> dhcp-3.0.3-r1.ebuild:
  Fixed sandbox violation, #114753.

*dhcp-3.0.3-r1 (07 Dec 2005)

  07 Dec 2005; Roy Marples <uberlord@gentoo.org>
  +files/dhcp-3.0.3-libdst.patch, +files/dhcp-3.0-fix-perms.patch,
  +files/dhcp-3.0-paranoia.patch, files/dhcp.conf, +files/dhcp.init,
  files/dhcrelay.conf, +files/dhcrelay.init, metadata.xml,
  -dhcp-3.0.2.ebuild, -dhcp-3.0.3.ebuild, +dhcp-3.0.3-r1.ebuild:
  Split patches out into FILESDIR.
  Stop installing dhclient-script.sample as baselayout has its own.
  chroot creation no longer assumes a default directory.
  We copy resolv.conf and localtime as a real files into the chroot now.
  document resolv.conf in conf.d/dhcp for chroots, #113869.
  init script now parses dhcpd.conf for pidfile and leasefile locations, #89428.
  libdst.a gets installed now, #75544 thanks to Ron O'Hara.

  04 Dec 2005; Tom Gall <tgall@gentoo.org> dhcp-3.0.1-r1.ebuild:
  stable on ppc64

*dhcp-3.0.3 (12 Oct 2005)

  12 Oct 2005; Roy Marples <uberlord@gentoo.org> +files/dhcp-3.0.3-tr.patch,
  +files/dhclient-ntp.patch, +dhcp-3.0.3.ebuild:
  Version bump
  Includes fixes for #102473 (tr.c not compiling, patch by Ed Catmur)
  and dhclient ntp support #63868

  15 Sep 2005; Aron Griffis <agriffis@gentoo.org> dhcp-3.0.1-r1.ebuild:
  Mark 3.0.1-r1 stable on alpha

  04 Sep 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/dhcp-3.0.2-gmake.patch, dhcp-3.0.2.ebuild:
  Added patch to fix wrong 'make' calls on Gentoo/FreeBSD.

  04 Sep 2005; Diego Pettenò <flameeyes@gentoo.org> dhcp-3.0.2.ebuild:
  Remove -Werror cflag that is passed when building on FreeBSD to fix
  Gentoo/FreeBSD.

  17 Jun 2005; Michael Hanselmann <hansmi@gentoo.org> dhcp-3.0.1-r1.ebuild:
  Stable on ppc.

  20 May 2005; Rene Nussbaumer <killerfox@gentoo.org> dhcp-3.0.1-r1.ebuild:
  Stable on hppa

  19 May 2005; Gustavo Zacarias <gustavoz@gentoo.org> dhcp-3.0.1-r1.ebuild:
  Stable on sparc

  17 May 2005; Jan Brinkmann <luckyduck@gentoo.org> dhcp-3.0.1-r1.ebuild:
  stable on amd64

*dhcp-3.0.2 (16 May 2005)

  16 May 2005; Seemant Kulleen <seemant@gentoo.org>
  -files/dhcp-3.0.1-fix-invalid-attribute.patch,
  -files/dhcp-3.0+paranoia.patch, -files/dhcp-3.0pl2-fix-perms.patch,
  dhcp-3.0.1.ebuild, dhcp-3.0.1-r1.ebuild, +dhcp-3.0.2.ebuild:
  Version bump thanks to: Bjarke Istrup Pedersen <Bjarke.ip@tekpunkt.dk> in
  bug #88630. Additionally, moved the patches to a tarball on the mirrors.
  Configs will probably follow

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

  20 Dec 2004; <max@gentoo.org> files/dhcrelay.conf, files/dhcrelay.rc6:
  Fix dhcrelay startup script for proper commandline arguments and proper
  shutdown pidfile. Fixes bug #48207.

*dhcp-3.0.1-r1 (20 Dec 2004)

  20 Dec 2004; <max@gentoo.org> -files/conf.dhcpd, files/dhcp.conf,
  files/dhcp.rc6, +dhcp-3.0.1-r1.ebuild:
  Removed unused conf.dhcpd file. Move the -q option out of rc6 script into
  conf.d file for easier debugging. Add localtime to the chroot setup. Add
  commented LD_PRELOAD variable for proper name resoluting inside chroot. Fixes
  bug #41217.

  10 Nov 2004; Travis Tilley <lv@gentoo.org>
  +files/dhcp-3.0.1-fix-invalid-attribute.patch, dhcp-3.0.1.ebuild:
  fixed some invalid attributes in includes/dhcpd.h so that dhcp compiles
  using gcc 3.4 again. closes bug 69555

  17 Oct 2004; Dylan Carlson <absinthe@gentoo.org> dhcp-3.0.1.ebuild:
  keywords ~amd64.

  02 Oct 2004; Bryan Østergaard <kloeri@gentoo.org> dhcp-3.0.1.ebuild:
  Keyword ~alpha, bug 65840.

  07 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> dhcp-3.0.1.ebuild:
  Stable on sparc

*dhcp-3.0.1 (18 Jul 2004)

  18 Jul 2004; Mike Frysinger <vapier@gentoo.org>
  +files/dhcp-3.0+paranoia.patch, +dhcp-3.0.1.ebuild, dhcp-3.0_p2-r5.ebuild,
  dhcp-3.0_p2-r6.ebuild:
  Version bump #57347 by Martin Jackson. Also move paranoia patch out of
  $DISTDIR and into $FILESDIR.

  01 Jul 2004; Jon Hood <squinky86@gentoo.org> dhcp-3.0_p2-r4.ebuild,
  dhcp-3.0_p2-r5.ebuild, dhcp-3.0_p2-r6.ebuild:
  change virtual/glibc to virtual/libc

  27 Apr 2004; Aron Griffis <agriffis@gentoo.org> dhcp-3.0_p2-r4.ebuild:
  Add inherit eutils

  06 Apr 2004; Joshua Brindle <method@gentoo.org> dhcp-3.0_p2-r4.ebuild,
  dhcp-3.0_p2-r5.ebuild, dhcp-3.0_p2-r6.ebuild:
  added selinux policy to rdepend

*dhcp-3.0_p2-r6 (08 Mar 2004)
*dhcp-3.0_p2-r5 (08 Mar 2004)
*dhcp-3.0_p2-r4 (08 Mar 2004)

  08 Mar 2004; Seemant Kulleen <seemant@gentoo.org> dhcp-3.0_p2-r2.ebuild,
  dhcp-3.0_p2-r3.ebuild, dhcp-3.0_p2-r4.ebuild, dhcp-3.0_p2-r5.ebuild,
  dhcp-3.0_p2-r6.ebuild, dhcp-3.0_p2.ebuild:
  Forced a version bump on these ebuilds. Basically -r0 is now -r4, -r2 is now
  -r5 and -r3 is now -r6. The reason for the revision bump was to make this
  package PROVIDE virtual/dhcp. Closes a long-standing bloat-reduction request
  made on gentoo-dev mailing list by: William Hubbs <kc5eiv@kc5eiv.homeip.net>
  at http://article.gmane.org/gmane.linux.gentoo.devel/11579

  09 Mar 2004; Bartosch Pixa <darkspecter@gentoo.org> dhcp-3.0_p2-r2.ebuild:
  set ppc in keywords

  04 Mar 2004; Gustavo Zacarias <gustavoz@gentoo.org> dhcp-3.0_p2-r3.ebuild:
  stable on sparc

  24 Feb 2004; Max Kalika <max@gentoo.org> dhcp-3.0_p2-r3.ebuild:
  Bump to stable x86.

  14 Jan 2004; Max Kalika <max@gentoo.org> dhcp-3.0_p2-r3.ebuild,
  files/dhcp.rc6, files/dhcrelay.rc6:
  Use proper pid file and directory. Fixes bug #35751.

  14 Jan 2004; Max Kalika <max@gentoo.org> dhcp-3.0_p2-r3.ebuild,
  files/dhcp.conf, files/dhcp.rc6, files/dhcrelay.conf, files/dhcrelay.rc6:
  Add dhcrelay startup script. Contributed by Martin Jackson on bug #33895.

  14 Jan 2004; Max Kalika <max@gentoo.org> dhcp-3.0_p2-r3.ebuild:
  Readd the ebuild and chown patch to address bugs #27079 and #36869.

  05 Jan 2004; Jason Wever <weeve@gentoo.org> dhcp-3.0_p2-r2.ebuild:
  Marked stable on sparc.

  31 Dec 2003; Guy Martin <gmsoft@gentoo.org> dhcp-3.0_p2-r2.ebuild:
  Marked stable on hppa.

  18 Nov 2003; Max Kalika <max@gentoo.org> dhcp-3.0_p2-r2.ebuild:
  Some fixes from bug 31840.

  07 Nov 2003; Max Kalika <max@gentoo.org> dhcp-3.0_p2-r3.ebuild,
  files/dhcp-3.0pl2-fix-perms.patch:
  Remove experimental version. The current stable works correctly.
  Finally fixes bug 31840.

*dhcp-3.0_p2-r3 (05 Nov 2003)

  05 Nov 2003; Max Kalika <max@gentoo.org> dhcp-3.0_p2-r3.ebuild,
  files/dhcp-3.0pl2-fix-perms.patch:
  Experimental attempt to fix 31840.

  05 Nov 2003; Max Kalika <max@gentoo.org> dhcp-3.0_p2-r2.ebuild,
  files/dhcp.rc6:
  Use a PID file for startup/shutdown.

  24 Oct 2003; Max Kalika <max@gentoo.org> dhcp-3.0_p2-r2.ebuild:
  Fix ownership as part of pkg_postinst(). Fixes bug 31840.

  22 Oct 2003; Max Kalika <max@gentoo.org> dhcp-3.0_p2-r2.ebuild:
  Use enewuser() from eutils.eclass.

  21 Oct 2003; Max Kalika <max@gentoo.org> dhcp-3.0_p2-r1.ebuild,
  dhcp-3.0_p2-r2.ebuild:
  Bump latest to stable x86.

*dhcp-3.0_p2-r2 (02 Oct 2003)

  02 Oct 2003; Mike Frysinger <vapier@gentoo.org> :
  Add patch to fix user options to dhclient #30049 and add USE=static
  support #30026.

  16 Sep 2003; Max Kalika <max@gentoo.org> dhcp-3.0_p2-r1.ebuild:
  Set proper ownership on /var/lib/dhcp.

  13 Aug 2003; Max Kalika <max@gentoo.org> dhcp-3.0_p2-r1.ebuild,
  files/dhcp.rc6:
  Move dhcpd.leases file creation to the startup script. Change "use named" to
  "use dns". Other cleanups.

  25 Jul 2003; lanius@gentoo.org files/dhcp.rc6, files/dhcp.rc7:
  added "use named" to rc scripts (bug #25239)

*dhcp-3.0_p2-r1 (23 Jul 2003)

  23 Jul 2003; Max Kalika <max@gentoo.org> dhcp-3.0_p2-r1.ebuild,
  files/dhcp.conf, files/dhcp.rc5, files/dhcp.rc6:
  Add support for the dhcp-paranoia patch which allows to run the server
  chrooted and under a different user/group id. Remove unused dhcp.rc5 file.
  Create a new startup script and dub it dhcp.rc6 as that file isn't currently
  used by anything. Other various cleanups.

  17 Jan 2003; Daniel Ahlberg <aliz@gentoo.org> dhcp-3.0_p2.ebuild :
  Unmasked, security update.

*dhcp-3.0_p2 (15 Jan 2003)

  01 Mar 2003; Jason Wever <weeve@gentoo.org> dhcp-3.0_p2.ebuild:
  Applied fix for bug #11960 to omit -O flags so dhcp will no longer bus error
  on sbus sparcs.

  24 Feb 2003; Nicholas Wourms <dragon@gentoo.org> dhcp-3.0_p2.ebuild :
  Added testing mips keyword to the ebuild.

  15 Jan 2003; Brandon Low <lostlogic@gentoo.org> dhcp-3.0_p2.ebuild:
  Version update, and update the ebuild to automatically assign
  it's source name.

*dhcp-3.0_p1 (29 Dec 2002)

  24 Feb 2003; Nicholas Wourms <dragon@gentoo.org> dhcp-3.0_p1.ebuild :
  Added testing mips keyword to the ebuild.

  29 Dec 2002; Daniel Robbins <drobbins@gentoo.org>: Renamed from 3.0-r4 to
  reflect the version (3.0_pl1) of the sources being used.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
*dhcp-3.0-r4 (21 Sep 2002)

  21 Sep 2002; Mike Frysinger <vapier@gentoo.org> dhcp-3.0-r4.ebuild, dhclient.c-3.0-dw-cli-fix.patch, digest-dhcp-3.0-r4

  Added a small patch per #8088 to fix the -nw bug (patch comes from upstream)

*dhcp-3.0-r3 (16 Jun 2002)

  03 Sep  2002; Brandon Low <lostlogic@gentoo.org> dhcp-3.0-r3.ebuild, files/conf.dhcp,
						   files/dhcp.rc7, digest-dhcp-3.0-r3:

  Update ebuild to touch dhcp.leases, fix config and init.d files
  to work more sanely.

*dhcp-3.0-r2 (16 Jun 2002)

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

  Added PPC to KEYWORDS.


  6 Jul 2002; phoen][x <phoenix@gentoo.org>: dhcp-3.0-r2.ebuild:
  Added KEYWORDS.
  
  16 Jun 2002; Brandon Low <lostlogic@gentoo.org>: dhcp-3.0-r2.ebuild:

  This moves the definition of which ethernet ports to listen on to
  /etc/conf.d where it should be this is prettier now thank TrAns13nT
  for making fix this bug.

*dhcp-3.0-r1 (6 July 2002)

  6 Jul 2002; phoen][x <phoenix@gentoo.org>: dhcp-3.0-r1.ebuild:
  Added KEYWORDS.

*dhcp-3.0 (14 Feb 2002)

  6 Jul 2002; phoen][x <phoenix@gentoo.org>: dhcp-3.0.ebuild:
  Added KEYWORDS, SLOTS.

  14 Feb 2002; Daniel Robbins <drobbins@gentoo.org>: New 3.0 release.

*dhcp-3.0_rc12-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.