summaryrefslogtreecommitdiff
blob: 0d20535fbb0b43d112d5e2a12711d21e4104a5c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
# ChangeLog for app-doc/doxygen
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/doxygen/ChangeLog,v 1.291 2015/08/06 14:54:01 tamiko Exp $

*doxygen-1.8.10-r1 (06 Aug 2015)

  06 Aug 2015; Matthias Maier <tamiko@gentoo.org> +doxygen-1.8.10-r1.ebuild:
  do not link support libraries dynamically, see discussion on bug #554974;
  reintroduce useless latex use flag, see bug #556808

*doxygen-1.8.10 (05 Aug 2015)

  05 Aug 2015; Matthias Maier <tamiko@gentoo.org> +doxygen-1.8.10.ebuild,
  +files/doxygen-1.8.10-link_with_pthread.patch, doxygen-9999.ebuild:
  version bump; switch to cmake - many thanks to Alex Turbov for a preliminary
  ebuild; drop keywords due to major build system change

  02 Aug 2015; Pacho Ramos <pacho@gentoo.org> doxygen-1.8.9.1.ebuild:
  sparc stable wrt bug #550348

  24 Jul 2015; Mikle Kolyada <zlogene@gentoo.org> doxygen-1.8.9.1.ebuild:
  ia64 stable wrt bug #550348

  23 Jul 2015; Pacho Ramos <pacho@gentoo.org> doxygen-1.8.9.1.ebuild:
  ppc stable wrt bug #550348

  16 Jul 2015; Tobias Klausmann <klausman@gentoo.org> doxygen-1.8.9.1.ebuild:
  Stable on alpha, bug 550348

  07 Jul 2015; Markus Meier <maekke@gentoo.org> doxygen-1.8.9.1.ebuild:
  arm stable, bug #550348

*doxygen-9999 (28 May 2015)

  28 May 2015; Matthias Maier <tamiko@gentoo.org> +doxygen-9999.ebuild:
  add a live version

  27 May 2015; Agostino Sarubbo <ago@gentoo.org> doxygen-1.8.9.1.ebuild:
  Stable for x86, wrt bug #550348

  27 May 2015; Agostino Sarubbo <ago@gentoo.org> doxygen-1.8.9.1.ebuild:
  Stable for amd64, wrt bug #550348

  08 Apr 2015; Michał Górny <mgorny@gentoo.org> doxygen-1.8.3.1.ebuild,
  doxygen-1.8.4-r2.ebuild, doxygen-1.8.5.ebuild, doxygen-1.8.8.ebuild,
  doxygen-1.8.9.1.ebuild:
  Remove old Python implementations

  21 Jan 2015; Matthias Maier <tamiko@gentoo.org> -doxygen-1.7.6.1.ebuild:
  drop old

*doxygen-1.8.9.1 (21 Jan 2015)

  21 Jan 2015; Matthias Maier <tamiko@gentoo.org> +doxygen-1.8.9.1.ebuild,
  +files/doxygen-1.8.9.1-empty-line-sigsegv.patch:
  version bump, bug #536584

  26 Dec 2014; Jeroen Roovers <jer@gentoo.org> doxygen-1.8.8.ebuild:
  Marked ~hppa (bug #533458).

  25 Dec 2014; Patrick Lauer <patrick@gentoo.org> metadata.xml:
  Remove unneeded useflag from metadata.xml

  25 Dec 2014; Matthias Maier <tamiko@gentoo.org> -doxygen-1.5.8-r1.ebuild,
  doxygen-1.8.8.ebuild:
  drop over 4 year old version that cannot be compiled any more; remove elibc_*
  and userland_* use flags from IUSE

  24 Dec 2014; Matthias Maier <tamiko@gentoo.org> doxygen-1.8.8.ebuild:
  put ~amd64-fbsd back in place, bug #533458

  24 Dec 2014; Jeroen Roovers <jer@gentoo.org> doxygen-1.8.8.ebuild:
  Drop keywords (bug #533458).

*doxygen-1.8.8 (24 Dec 2014)

  24 Dec 2014; Matthias Maier <tamiko@gentoo.org> +doxygen-1.8.8.ebuild,
  doxygen-1.8.5.ebuild, metadata.xml:
  version bump and support for python3, bug #499532; add support for doxysearch,
  bug #508962; fix linkage on with sys-libc/uclibc, bug #512782; add support for
  clang assisted parsing, bug #515840; fix linkage on Gentoo/FreeBSD, bug
  #511024

  03 Sep 2014; Christoph Junghans <ottxor@gentoo.org> doxygen-1.8.5.ebuild:
  Added ~x64-macos (tested by me)

  01 Aug 2014;  <tgall@gentoo.org> doxygen-1.8.3.1.ebuild,
  doxygen-1.8.4-r2.ebuild, doxygen-1.8.5.ebuild:
  arm64, initial support

  13 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> doxygen-1.8.5.ebuild:
  sparc stable wrt bug #511450

  13 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> doxygen-1.8.5.ebuild:
  ia64 stable wrt bug #511450

  13 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> doxygen-1.8.5.ebuild:
  alpha stable wrt bug #511450

  10 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> doxygen-1.8.5.ebuild:
  ppc64 stable wrt byg #511450

  09 Jun 2014; Markus Meier <maekke@gentoo.org> doxygen-1.8.5.ebuild:
  arm stable, bug #511450

  08 Jun 2014; Agostino Sarubbo <ago@gentoo.org> doxygen-1.8.5.ebuild:
  Stable for ppc, wrt bug #511450

  03 Jun 2014; Jeroen Roovers <jer@gentoo.org> doxygen-1.8.5.ebuild:
  Stable for HPPA (bug #511450).

  02 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> doxygen-1.8.5.ebuild:
  x86 stable wrt bug #511450

  02 Jun 2014; Mikle Kolyada <zlogene@gentoo.org> doxygen-1.8.5.ebuild:
  amd64 stable wrt bug #511450

  28 May 2014; Jeroen Roovers <jer@gentoo.org> doxygen-1.8.5.ebuild:
  RESTRICT=test (bug #504448).

  27 May 2014; Kacper Kowalik <xarthisius@gentoo.org> metadata.xml:
  Drop maintainership (http://article.gmane.org/gmane.linux.gentoo.devel/90674)

  21 Jan 2014; Patrick Lauer <patrick@gentoo.org> -doxygen-1.4.7.ebuild,
  -doxygen-1.5.4.ebuild:
  Remove old EAPI1 ebuilds

  27 Dec 2013; Tom Wijsman <TomWij@gentoo.org> -files/doxygen-1.5-dot-eps.patch:
  [QA] Remove unused files.

  06 Nov 2013; Kacper Kowalik <xarthisius@gentoo.org> doxygen-1.8.5.ebuild:
  Remove obsolete bit fixing DESTDIR for doxywizard. Fixes bug #490298 by Dennis
  Schridde <devurandom@gmx.net>

*doxygen-1.8.5 (03 Nov 2013)

  03 Nov 2013; Kacper Kowalik <xarthisius@gentoo.org> +doxygen-1.8.5.ebuild:
  Version bump. Fixes #490124 by David Hallas <david@cgp.dk>

  01 Nov 2013; Markos Chandras <hwoarang@gentoo.org> doxygen-1.8.4-r2.ebuild:
  Add ~mips per #444688

  05 Sep 2013; Michał Górny <mgorny@gentoo.org> doxygen-1.8.3.1.ebuild,
  doxygen-1.8.4-r2.ebuild:
  Clean up PYTHON_COMPAT from old implementations.

  10 Aug 2013; Mark Loeser <halcy0n@gentoo.org> doxygen-1.7.6.1.ebuild,
  doxygen-1.8.3.1.ebuild, doxygen-1.8.4-r2.ebuild:
  Revert workaround for ppc64 now that we have gcc-4.6; bug #263641

  04 Jul 2013; Agostino Sarubbo <ago@gentoo.org> doxygen-1.8.3.1.ebuild:
  Stable for x86, wrt bug #471692

  30 Jun 2013; Agostino Sarubbo <ago@gentoo.org> doxygen-1.8.3.1.ebuild:
  Stable for s390, wrt bug #471692

  29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> doxygen-1.8.3.1.ebuild:
  Stable for sparc, wrt bug #471692

*doxygen-1.8.4-r2 (26 Jun 2013)

  26 Jun 2013; Kacper Kowalik <xarthisius@gentoo.org> +doxygen-1.8.4-r2.ebuild,
  +files/doxygen-1.8.4-infinite_loop.patch, -doxygen-1.8.4-r1.ebuild,
  -doxygen-1.8.4.ebuild:
  Apply upstream patch for fixing infinite loop wrt #474716 by Marien Zwart
  <marienz@gentoo.org>. Drop old

  26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> doxygen-1.8.3.1.ebuild:
  Stable for ia64, wrt bug #471692

  26 Jun 2013; Agostino Sarubbo <ago@gentoo.org> doxygen-1.8.3.1.ebuild:
  Stable for alpha, wrt bug #471692

  25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> doxygen-1.8.3.1.ebuild:
  Stable for ppc64, wrt bug #471692

  24 Jun 2013; Agostino Sarubbo <ago@gentoo.org> doxygen-1.8.3.1.ebuild:
  Stable for ppc, wrt bug #471692

  09 Jun 2013; Agostino Sarubbo <ago@gentoo.org> doxygen-1.8.3.1.ebuild:
  Stable for sh, wrt bug #471692

*doxygen-1.8.4-r1 (04 Jun 2013)

  04 Jun 2013; Tomáš Chvátal <scarabeus@gentoo.org> +doxygen-1.8.4-r1.ebuild,
  +files/doxygen-1.8.4-libreoffice.patch:
  Revbump 1.8.4 due to broken libo doc generating. Patch already applied
  upstream and will be in next version.

  03 Jun 2013; Jeroen Roovers <jer@gentoo.org> doxygen-1.8.3.1.ebuild:
  Stable for HPPA (bug #471692).

  02 Jun 2013; Chema Alonso <nimiux@gentoo.org> doxygen-1.8.3.1.ebuild:
  Stable for amd64 wrt bug #471692

  02 Jun 2013; Markus Meier <maekke@gentoo.org> doxygen-1.8.3.1.ebuild:
  arm stable, bug #471692

*doxygen-1.8.4 (19 May 2013)

  19 May 2013; Kacper Kowalik <xarthisius@gentoo.org> +doxygen-1.8.4.ebuild:
  Version bump

  02 Mar 2013; Markos Chandras <hwoarang@gentoo.org> doxygen-1.5.8-r1.ebuild,
  doxygen-1.7.6.1.ebuild, doxygen-1.8.3.1.ebuild:
  Move Qt dependencies to the new category

  16 Feb 2013; Michał Górny <mgorny@gentoo.org> doxygen-1.8.3.1.ebuild:
  Migrate to python-any-r1, bug #457870.

  03 Feb 2013; Kacper Kowalik <xarthisius@gentoo.org> doxygen-1.7.6.1.ebuild,
  doxygen-1.8.3.1.ebuild:
  Respect AR/CC wrt #455206 by Alphat-PC <AlphatPC@gmail.com>. Thanks to the
  reporter for the patch

  02 Feb 2013; Kacper Kowalik <xarthisius@gentoo.org> doxygen-1.5.8-r1.ebuild,
  doxygen-1.7.6.1.ebuild, doxygen-1.8.3.1.ebuild:
  Adjust make_desktop_entry so that it complies to latest fdo standard. Fixes
  #455150 by Denis M. (Phr33d0m) <god@politeia.in>

*doxygen-1.8.3.1 (28 Jan 2013)

  28 Jan 2013; Kacper Kowalik <xarthisius@gentoo.org> +doxygen-1.8.3.1.ebuild,
  +files/doxygen-1.8.3.1-empty-line-sigsegv.patch, -doxygen-1.8.1.2.ebuild,
  -doxygen-1.8.2.ebuild:
  Version bump including fixes for #454348 reported by 
  Sebastian Pipping <sping@gentoo.org>. Drop old

  07 Oct 2012; Pacho Ramos <pacho@gentoo.org> metadata.xml:
  Drop maintainer due retirement, #24135.

  13 Aug 2012; Kacper Kowalik <xarthisius@gentoo.org> Manifest:
  Fix Manifest for new upstream tarball (bug #431192).

*doxygen-1.8.2 (11 Aug 2012)

  11 Aug 2012; Kacper Kowalik <xarthisius@gentoo.org> +doxygen-1.8.2.ebuild:
  Version bump

  11 Aug 2012; Kacper Kowalik <xarthisius@gentoo.org> -doxygen-1.6.3.ebuild,
  -doxygen-1.7.2.ebuild, -doxygen-1.7.3.ebuild, -doxygen-1.7.5.1.ebuild,
  -doxygen-1.8.0.ebuild, -doxygen-1.8.1.ebuild,
  -files/doxygen-1.5.7.1-substitute.patch, -files/doxygen-1.6.2-dot-eps.patch,
  -files/doxygen-1.7.1-dot-eps.patch, -files/doxygen-1.7.5.1-dot-eps.patch,
  metadata.xml:
  Drop old

  11 Aug 2012; Kacper Kowalik <xarthisius@gentoo.org> doxygen-1.7.6.1.ebuild,
  doxygen-1.8.1.2.ebuild:
  Fix date in man pages wrt #428280 by Samuel BAUER <samuel.bauer@yahoo.fr>

  09 Aug 2012; Kacper Kowalik <xarthisius@gentoo.org> doxygen-1.8.1.2.ebuild:
  Increase default buffer stack for Fortran parser

*doxygen-1.8.1.2 (28 Jul 2012)

  28 Jul 2012; Kacper Kowalik <xarthisius@gentoo.org> +doxygen-1.8.1.2.ebuild:
  Version bump wrt #428332 by Michał Górny <mgorny@gentoo.org>

  31 May 2012; Zac Medico <zmedico@gentoo.org> doxygen-1.5.4.ebuild,
  doxygen-1.5.8-r1.ebuild, doxygen-1.6.3.ebuild, doxygen-1.7.2.ebuild,
  doxygen-1.7.3.ebuild:
  inherit multilib for get_libdir

*doxygen-1.8.1 (29 May 2012)

  29 May 2012; Kacper Kowalik <xarthisius@gentoo.org> +doxygen-1.8.1.ebuild,
  +files/doxygen-1.8.1-prefix-misc-alt.patch:
  Version bump

  08 May 2012; Kacper Kowalik <xarthisius@gentoo.org> doxygen-1.4.7.ebuild,
  doxygen-1.5.4.ebuild, doxygen-1.5.8-r1.ebuild, doxygen-1.6.3.ebuild,
  doxygen-1.7.2.ebuild, doxygen-1.7.3.ebuild, doxygen-1.7.5.1.ebuild,
  doxygen-1.7.6.1.ebuild, doxygen-1.8.0.ebuild:
  Use http instead of ftp in SRC_URI to avoid possible firewall issues. Fixes
  #411189 by Kevin Pyle

  26 Apr 2012; Alexis Ballier <aballier@gentoo.org> doxygen-1.8.0.ebuild:
  keyword ~amd64-fbsd

  26 Apr 2012; Alexis Ballier <aballier@gentoo.org> doxygen-1.8.0.ebuild:
  fix build with BSD userland

  13 Apr 2012; Ulrich Müller <ulm@gentoo.org> doxygen-1.7.5.1.ebuild:
  Move EAPI assignment to top of ebuild, bug 411875.

  01 Apr 2012; Raúl Porcel <armin76@gentoo.org> doxygen-1.7.6.1.ebuild:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #323647

  23 Mar 2012; Jeff Horelick <jdhore@gentoo.org> doxygen-1.7.6.1.ebuild:
  marked x86 per bug 323647

  20 Mar 2012; Jeroen Roovers <jer@gentoo.org> doxygen-1.7.6.1.ebuild:
  Stable for HPPA (bug #323647).

  20 Mar 2012; Agostino Sarubbo <ago@gentoo.org> doxygen-1.7.6.1.ebuild:
  Stable for amd64, wrt bug #323647

  19 Mar 2012; Markus Meier <maekke@gentoo.org> doxygen-1.7.6.1.ebuild:
  arm stable, bug #323647

  17 Mar 2012; Matt Turner <mattst88@gentoo.org> doxygen-1.4.7.ebuild:
  Drop mips keyword. ~mips was dropped in 2006, and no one ever added it back
  to newer versions.

  16 Mar 2012; Brent Baude <ranger@gentoo.org> doxygen-1.7.6.1.ebuild:
  Marking doxygen-1.7.6.1 ppc for bug 323647

  16 Mar 2012; Brent Baude <ranger@gentoo.org> doxygen-1.7.6.1.ebuild:
  Marking doxygen-1.7.6.1 ppc64 for bug 323647

*doxygen-1.8.0 (29 Feb 2012)

  29 Feb 2012; Kacper Kowalik <xarthisius@gentoo.org> +doxygen-1.8.0.ebuild:
  Version bump wrt bug 406229 by <supercilious.dude@gmail.com>

  15 Feb 2012; Kacper Kowalik <xarthisius@gentoo.org> doxygen-1.7.6.1.ebuild:
  Don't RDEPEND on python, thanks to Arfrever Frehtes Taifersar Arahesis
  <arfrever.fta@gmail.com>

  14 Feb 2012; Kacper Kowalik <xarthisius@gentoo.org> doxygen-1.7.6.1.ebuild:
  Improve Python-related code wrt #308353 by Arfrever Frehtes Taifersar
  Arahesis. Thanks to Ian Delaney <johneed@hotmail.com> for the patch

  14 Feb 2012; Kacper Kowalik <xarthisius@gentoo.org> -doxygen-1.5.5.ebuild,
  -doxygen-1.5.6.ebuild, -doxygen-1.5.7.1.ebuild, -doxygen-1.5.9.ebuild,
  -doxygen-1.6.1.ebuild, -doxygen-1.6.2.ebuild, -doxygen-1.7.1.ebuild,
  -doxygen-1.7.4.ebuild, -files/doxywizard.png, doxygen-1.4.7.ebuild,
  doxygen-1.5.4.ebuild, doxygen-1.5.8-r1.ebuild, doxygen-1.6.3.ebuild,
  doxygen-1.7.2.ebuild, doxygen-1.7.3.ebuild, doxygen-1.7.5.1.ebuild,
  doxygen-1.7.6.1.ebuild:
  Drop old, move binary files to external mirrors wrt #370913

*doxygen-1.7.6.1 (14 Feb 2012)

  14 Feb 2012; Kacper Kowalik <xarthisius@gentoo.org> +doxygen-1.7.6.1.ebuild,
  metadata.xml:
  Version bump: EAPI4, reorder vars, initial support for LINGUAS, use 'dot'
  instead of 'nodot', add missing dependencies on perl and bison (fixes bug
  #399349 by bay), respect CC and CXX, call eqmake4 for doxywizard, always use
  emake, simplify latex+doc logic. Add myself as maintainer.

*doxygen-1.7.5.1 (05 Nov 2011)

  05 Nov 2011; Steve Arnold <nerdboy@gentoo.org> +doxygen-1.7.5.1.ebuild,
  +files/doxygen-1.7.5.1-dot-eps.patch:
  Updated to latest upstream release, removed external Tcl patch (see bug
  #388863).  Thanks to Philipp for the updated no-dot patch.

  03 Sep 2011; Steve Arnold <nerdboy@gentoo.org> doxygen-1.7.4.ebuild:
  Newer (and cleaner) version using more of the qt4-r2 functionality.
  Thanks to radhermit for bugging me about this...

  03 Sep 2011; Steve Arnold <nerdboy@gentoo.org> doxygen-1.7.4.ebuild:
  More updates to force qmake to use the right config settings; should 
  also fix bug #378963.  Qmake could really use a nice eclass...

*doxygen-1.7.4 (09 Apr 2011)

  09 Apr 2011; Steve Arnold <nerdboy@gentoo.org> +doxygen-1.7.4.ebuild:
  Updated to new upstream release (both bug fixes and new stuff). Closes 
  bug 362457.  Might want to stable this one soon-ish...

  29 Mar 2011; Jeroen Roovers <jer@gentoo.org> doxygen-1.7.3.ebuild:
  Stable for HPPA (bug #356813).

  25 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> doxygen-1.7.3.ebuild:
  ppc/ppc64 stable wrt #356813

  21 Mar 2011; Christoph Mende <angelos@gentoo.org> doxygen-1.7.3.ebuild:
  Stable on amd64 wrt bug #356813

  20 Mar 2011; Raúl Porcel <armin76@gentoo.org> doxygen-1.7.3.ebuild:
  alpha/arm/ia64/s390/sh/sparc stable wrt #356813

  20 Mar 2011; Steve Arnold <nerdboy@gentoo.org> doxygen-1.7.3.ebuild:
  Added final kluge to force local LDFLAGS on doxywizard.  Tested on amd64
  but not yet marked stable.

  19 Mar 2011; Thomas Kahle <tomka@gentoo.org> doxygen-1.7.3.ebuild:
  x86 stable per bug 356813

*doxygen-1.7.3 (01 Feb 2011)

  01 Feb 2011; Steve Arnold <nerdboy@gentoo.org> +doxygen-1.7.3.ebuild:
  Added latest upstream release, closes bug #351578.

  18 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org> doxygen-1.7.2.ebuild:
  ppc64 stable wrt #338632

  18 Jan 2011; Steve Arnold <nerdboy@gentoo.org> doxygen-1.7.2.ebuild:
  Updated with suggested workaround for ppc64 stable-ing (see comment #17 
  of bug #263641).

  15 Jan 2011; Raúl Porcel <armin76@gentoo.org> doxygen-1.7.2.ebuild:
  ia64/s390/sh stable wrt #338632

  13 Jan 2011; Brent Baude <ranger@gentoo.org> doxygen-1.7.2.ebuild:
  Marking doxygen-1.7.2 ppc for bug 338632

  04 Jan 2011; Michael Weber <xmw@gentoo.org> doxygen-1.7.2.ebuild:
  sparc stable (bug 338632)

  29 Dec 2010; Markos Chandras <hwoarang@gentoo.org> doxygen-1.7.2.ebuild:
  Stable on amd64 wrt bug #338632

  27 Dec 2010; Jeroen Roovers <jer@gentoo.org> doxygen-1.7.2.ebuild:
  Stable for HPPA (bug #338632).

  27 Dec 2010; Markus Meier <maekke@gentoo.org> doxygen-1.7.2.ebuild:
  arm stable, bug #338632

  21 Dec 2010; Steve Arnold <nerdboy@gentoo.org> doxygen-1.7.2.ebuild:
  Updated anti-flag mangling per bug 348629 (artifact of EAPI update).  But
  even with some extra massaging (and brute force sedding) doxywizard is
  being stubborn with all that tmake/qmake on-the-fly writing of things...

  20 Dec 2010; Tobias Klausmann <klausman@gentoo.org> doxygen-1.7.2.ebuild:
  Stable on alpha, bug #338632

  13 Dec 2010; Thomas Kahle <tomka@gentoo.org> doxygen-1.7.2.ebuild:
  x86 stable per bug 338632

  07 Dec 2010; Steve Arnold <nerdboy@gentoo.org>
  -files/doxygen-1.4.3-cp1251.patch, -files/doxygen-gcc4.patch,
  -files/doxygen-1.4.3-nls.patch, -files/doxygen-1.4.4-darwin.patch,
  -files/bsd-configure.patch:
  Removing stale patch files, closes bug 340547.

*doxygen-1.7.2 (02 Nov 2010)

  02 Nov 2010; Steve Arnold <nerdboy@gentoo.org> +doxygen-1.7.2.ebuild,
  metadata.xml:
  Updated to latest release and added (optional) native Tcl support.  See
  upstream bug #633448 and Gentoo bug #340397.

  07 Oct 2010; Alex Alexander <wired@gentoo.org> doxygen-1.5.8-r1.ebuild:
  only call eqmake4 if use qt4, bug #340092

  04 Oct 2010; Steve Arnold <nerdboy@gentoo.org> doxygen-1.5.8-r1.ebuild:
  Needed additional updates to pick up the qt4 qmake config correctly.

  02 Oct 2010; Steve Arnold <nerdboy@gentoo.org> doxygen-1.5.8-r1.ebuild:
  Updated LDFLAGS and EAPI; closes QA bug #336736.

  29 Sep 2010; Steve Arnold <nerdboy@gentoo.org> doxygen-1.7.1.ebuild:
  Added minor upstream latex doc fix (only affects package PDF docs).

  27 Jul 2010; Steve Arnold <nerdboy@gentoo.org>
  +files/doxygen-1.7.1-dot-eps.patch:
  Commiting lost patch (fixes bug 329915).

*doxygen-1.7.1 (26 Jul 2010)

  26 Jul 2010; Steve Arnold <nerdboy@gentoo.org> +doxygen-1.7.1.ebuild:
  Updated to latest upstream release (fixes bug 325019).

  22 May 2010; Justin Lecher <jlec@gentoo.org> doxygen-1.6.1.ebuild,
  doxygen-1.6.2.ebuild, doxygen-1.6.3.ebuild:
  Removed epause in EAPI=3 ebuilds

*doxygen-1.6.3 (08 Mar 2010)
*doxygen-1.6.2 (08 Mar 2010)

  08 Mar 2010; Steve Arnold <nerdboy@gentoo.org> +doxygen-1.6.2.ebuild,
  +files/doxygen-1.6.2-dot-eps.patch, +doxygen-1.6.3.ebuild:
  Updated to latest versions, (closes bug 300577) simplified texlive deps.

  08 Feb 2010; Jonathan Callen <abcd@gentoo.org>
  +files/doxygen-1.5.6-prefix-misc-alt.patch, doxygen-1.6.1.ebuild:
  Bump to EAPI=3, add prefix support/keywords/patch

  17 Jan 2010; Dominik Kapusta <ayoy@gentoo.org> doxygen-1.5.9.ebuild,
  doxygen-1.6.1.ebuild:
  Ported to qt4-r2 eclass + switched to EAPI="2" for 1.5.9

  02 Jan 2010; Ben de Groot <yngwin@gentoo.org> doxygen-1.4.7.ebuild,
  doxygen-1.5.4.ebuild, doxygen-1.5.5.ebuild, doxygen-1.5.6.ebuild,
  doxygen-1.5.7.1.ebuild:
  Drop qt3 support

  26 Dec 2009; Peter Volkov <pva@gentoo.org> doxygen-1.4.7.ebuild,
  doxygen-1.5.4.ebuild, doxygen-1.5.5.ebuild, doxygen-1.5.6.ebuild,
  doxygen-1.5.7.1.ebuild, doxygen-1.5.8-r1.ebuild, doxygen-1.5.9.ebuild,
  doxygen-1.6.1.ebuild:
  virtual/ghostscript->app-text/ghostscript-gpl: ghostscript-gpl is the only
  implementation left in the tree.

*doxygen-1.6.1 (25 Sep 2009)

  25 Sep 2009; Steve Arnold <nerdboy@gentoo.org> -doxygen-1.6.0.ebuild,
  +doxygen-1.6.1.ebuild:
  Updated to current release; fixes eigen borkage plus a few other issues 
  (closes bugs 282598 and 283780).

  27 Aug 2009; Raúl Porcel <armin76@gentoo.org> doxygen-1.5.8-r1.ebuild:
  arm/ia64/sh/s390 stable wrt #263641

  27 Aug 2009; Steve Arnold <nerdboy@gentoo.org> doxygen-1.5.4.ebuild,
  doxygen-1.5.8-r1.ebuild, doxygen-1.5.9.ebuild, doxygen-1.6.0.ebuild:
  Update missing latex font deps (closes bug 274673).

*doxygen-1.5.9 (25 Aug 2009)

  25 Aug 2009; Steve Arnold <nerdboy@gentoo.org> +doxygen-1.5.9.ebuild:
  Adding version 1.5.9 until some issues are worked out.  This fixes some
  problems with 1.5.8, and 1.6.0 is masked for time being.  Fixes bug
  #275753.

*doxygen-1.6.0 (25 Aug 2009)

  25 Aug 2009; Steve Arnold <nerdboy@gentoo.org>
  +files/doxygen-1.5-dot-eps.patch, +doxygen-1.6.0.ebuild:
  Updated to latest upstream release (see bug #269961) and there is 
  already one reported failure (see bug #282598) which has been reported 
  upstream (http://bugzilla.gnome.org/show_bug.cgi?id=592975).

  12 Jul 2009; Tobias Klausmann <klausman@gentoo.org>
  doxygen-1.5.8-r1.ebuild:
  Stable on alpha, bug #263641

  09 Jul 2009; Jeroen Roovers <jer@gentoo.org> doxygen-1.5.8-r1.ebuild:
  Stable for HPPA (bug #263641).

*doxygen-1.5.8-r1 (17 Jun 2009)

  17 Jun 2009; Peter Volkov <pva@gentoo.org> -doxygen-1.5.8.ebuild,
  +doxygen-1.5.8-r1.ebuild:
  Revbump to make doxygen-1.5.8-kdedocs.patch get our users, bug #266693.

  08 Jun 2009; Steve Arnold <nerdboy@gentoo.org>
  +files/doxygen-1.5.8-kdedocs.patch, doxygen-1.5.8.ebuild:
  Updated with back-ported patch, courtesy of (thanks!) Martin von Gagern 
  <Martin.vGagern@gmx.net>.

  01 Jun 2009; Ferris McCormick <fmccor@gentoo.org> doxygen-1.5.8.ebuild:
  Sparc stable, Bug #263641, required for Bug #271815.

  31 May 2009; Markus Meier <maekke@gentoo.org> doxygen-1.5.8.ebuild:
  amd64/x86 stable, bug #271815

  31 May 2009; nixnut <nixnut@gentoo.org> doxygen-1.5.8.ebuild:
  ppc stable #271815

  30 May 2009; Ulrich Mueller <ulm@gentoo.org> doxygen-1.4.7.ebuild,
  doxygen-1.5.4.ebuild, doxygen-1.5.5.ebuild, doxygen-1.5.6.ebuild,
  doxygen-1.5.7.1.ebuild, doxygen-1.5.8.ebuild:
  Remove app-text/tetex from dependencies, bug 227443.

  04 Feb 2009; Ben de Groot <yngwin@gentoo.org> doxygen-1.5.8:
  Correct qt:4 dep to use split deps

*doxygen-1.5.8 (03 Feb 2009)

  03 Feb 2009; Steve Arnold <nerdboy@gentoo.org> +doxygen-1.5.8.ebuild:
  Update to latest version with qt4 support (closes bug #252978).

  24 Dec 2008; Steve Arnold <nerdboy@gentoo.org>
  +files/doxygen-1.5.7.1-substitute.patch, doxygen-1.5.7.1.ebuild:
  Updated with patch for bug #251533 (relpath empty string replacement issue).

  04 Nov 2008; Diego Pettenò <flameeyes@gentoo.org> doxygen-1.5.7.1.ebuild:
  Add flex dependency.

*doxygen-1.5.7.1 (02 Nov 2008)

  02 Nov 2008; Steve Arnold <nerdboy@gentoo.org> +doxygen-1.5.7.1.ebuild:
  Updated texlive deps (again) and fixed the last of the DESTDIR issues
  (for the latest upstream release).  Closes bug #240201.

  11 Oct 2008; Steve Arnold <nerdboy@gentoo.org> doxygen-1.5.6.ebuild,
  doxygen-1.5.5.ebuild, doxygen-1.5.4.ebuild, doxygen-1.4.7.ebuild:
  Updated latex depends for bugs 237960 and 241350 since the virtual does
  not seem to be working very well for people.  Added several deps for
  texlive; thanks to mephinet <mephinet@gmx.net> and <gengor@gentoo.org>
  for helping to track down some of the needed depends (this latex/tetex
  thing is painful).

  02 Sep 2008; Christian Faulhammer <opfer@gentoo.org>
  -doxygen-1.4.4.ebuild, -doxygen-1.5.2.ebuild:
  clean up

  02 Sep 2008; Christian Faulhammer <opfer@gentoo.org> doxygen-1.4.7.ebuild:
  rename USE=tetex to USE=latex for bug 196745

*doxygen-1.5.6 (16 Aug 2008)

  16 Aug 2008; Steve Arnold <nerdboy@gentoo.org>
  -files/1.4.6/01_all_cp1251.patch, -files/1.4.6/02_all_freebsd.patch,
  -files/1.4.6/03_all_segfault.patch,
  -files/1.4.6/05_all_system-libpng.patch, -files/1.4.6/06_all_qtools.patch,
  -doxygen-1.4.2.ebuild, -doxygen-1.4.3-r1.ebuild, -doxygen-1.4.5.ebuild,
  -doxygen-1.4.6.ebuild, -doxygen-1.5.1.ebuild, -doxygen-1.5.3.ebuild,
  +doxygen-1.5.6.ebuild:
  Added latest release (see bug #223275) and cleaned up stale versions. I
  tried to keep enough of the older ones around not to leave anyone out in
  the cold; if you really need one of the above old versions in portage,
  please file a bug with your requirements.

  29 Jul 2008; Carsten Lohrke <carlo@gentoo.org> doxygen-1.4.2.ebuild,
  doxygen-1.4.3-r1.ebuild, doxygen-1.4.4.ebuild, doxygen-1.4.5.ebuild,
  doxygen-1.4.6.ebuild, doxygen-1.4.7.ebuild, doxygen-1.5.1.ebuild,
  doxygen-1.5.2.ebuild, doxygen-1.5.3.ebuild, doxygen-1.5.4.ebuild,
  doxygen-1.5.5.ebuild:
  Fix bug #233117.

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

  03 Jul 2008; Steve Arnold <nerdboy@gentoo.org> doxygen-1.5.4.ebuild,
  doxygen-1.5.5.ebuild:
  updated latest stable/testing with latex USE flag per bug #230155

  27 Apr 2008; Steve Arnold <nerdboy@gentoo.org> doxygen-1.4.7.ebuild,
  doxygen-1.5.1.ebuild, doxygen-1.5.2.ebuild, doxygen-1.5.3.ebuild,
  doxygen-1.5.4.ebuild, doxygen-1.5.5.ebuild:
  updated postinst info for bug #217885

  13 Mar 2008; <ricmm@gentoo.org> doxygen-1.4.2.ebuild,
  doxygen-1.4.4.ebuild, doxygen-1.4.7.ebuild:
  Drop to ~mips due to unstable deps

  12 Mar 2008; Steve Arnold <nerdboy@gentoo.org> doxygen-1.5.4.ebuild,
  doxygen-1.5.5.ebuild:
  updated for bug #212770

*doxygen-1.5.5 (16 Feb 2008)

  16 Feb 2008; Steve Arnold <nerdboy@gentoo.org>
  +files/doxygen-1.5-qtlibdir.patch, +files/doxygen-1.5-system-libpng.patch,
  doxygen-1.5.2.ebuild, doxygen-1.5.3.ebuild, doxygen-1.5.4.ebuild,
  +doxygen-1.5.5.ebuild:
  Updated with patch from bug #210237 and added latest release.  Fixed
  broken config with hack for lib64 path for QT and back-ported patches
  to several previous versions (tested on both 32 and 64-bit machines).
  Closes bugs #209977 and #210237.

  24 Jan 2008; Christoph Mende <angelos@gentoo.org> doxygen-1.5.4.ebuild:
  Stable on amd64, bug #203652

  08 Jan 2008; Jeroen Roovers <jer@gentoo.org> doxygen-1.5.4.ebuild:
  Stable for HPPA (bug #203652).

  31 Dec 2007; Raúl Porcel <armin76@gentoo.org> doxygen-1.5.4.ebuild:
  alpha/ia64/sparc stable wrt #203652

  30 Dec 2007; Markus Meier <maekke@gentoo.org> doxygen-1.5.4.ebuild:
  x86 stable, bug #203652

  29 Dec 2007; Brent Baude <ranger@gentoo.org> doxygen-1.5.4.ebuild:
  Marking doxygen-1.5.4 ppc for bug 203652

  29 Dec 2007; Brent Baude <ranger@gentoo.org> doxygen-1.5.4.ebuild:
  Marking doxygen-1.5.4 ppc64 for bug 203652

  15 Dec 2007; Steve Arnold <nerdboy@gentoo.org> doxygen-1.5.4.ebuild:
  Updated depends for bug 202027 (added virtual/libconv and implicit
  deps are now declared explicitly).

  23 Nov 2007; Steve Arnold <nerdboy@gentoo.org> doxygen-1.5.4.ebuild:
  adding libconv hack for FreeBSD (inadvertently dropped on the floor)

*doxygen-1.5.4 (21 Nov 2007)

  21 Nov 2007; Steve Arnold <nerdboy@gentoo.org> +doxygen-1.5.4.ebuild:
  Updated to new version, closes bug 198954.

  21 Sep 2007; Roy Marples <uberlord@gentoo.org> doxygen-1.5.3.ebuild:
  Link to libiconv for FreeBSD.

*doxygen-1.5.3 (02 Sep 2007)

  02 Sep 2007; Steve Arnold <nerdboy@gentoo.org> +files/doxywizard.png,
  +doxygen-1.5.3.ebuild:
  Updated to latest release, added desktop entry and nodot use flag
  (addresses bugs 188124 and 181890).  USE=nodot will remove both the
  graphviz dependency and the capability to generate dot-based graphs.
  If someone has a better icon for doxywizard, please post a bug :)

  12 Jul 2007; Fabian Groffen <grobian@gentoo.org> doxygen-1.4.2.ebuild,
  doxygen-1.4.3-r1.ebuild, doxygen-1.4.4.ebuild, doxygen-1.4.5.ebuild,
  doxygen-1.4.6.ebuild, doxygen-1.4.7.ebuild, doxygen-1.5.1.ebuild,
  doxygen-1.5.2.ebuild:
  Dropped ppc-macos keyword, see you in prefix

  06 Jul 2007; Lars Weiler <pylon@gentoo.org> doxygen-1.5.2.ebuild:
  Stable on ppc; bug #184044.

  05 Jul 2007; Christoph Mende <angelos@gentoo.org> doxygen-1.5.2.ebuild:
  Stable on amd64 wrt bug #184044

  05 Jul 2007; Jeroen Roovers <jer@gentoo.org> doxygen-1.5.2.ebuild:
  Stable for HPPA (bug #184044).

  05 Jul 2007; Markus Rothe <corsair@gentoo.org> doxygen-1.5.2.ebuild:
  Stable on ppc64; bug #184044

  04 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org> doxygen-1.5.2.ebuild:
  Stable on sparc wrt #184044

  04 Jul 2007; Raúl Porcel <armin76@gentoo.org> doxygen-1.5.2.ebuild:
  alpha/ia64/x86 stable wrt #184044

  23 Jun 2007; Joshua Kinard <kumba@gentoo.org> doxygen-1.4.7.ebuild:
  Stable on mips.

*doxygen-1.5.2 (24 Apr 2007)

  24 Apr 2007; Steve Arnold <nerdboy@gentoo.org> +doxygen-1.5.2.ebuild:
  updated to latest upstream release, and removed unicode USE flag (ru
  patch incorporated upstream).  Closes bug #174831.

  12 Mar 2007; Steve Arnold <nerdboy@gentoo.org> doxygen-1.4.7.ebuild,
  doxygen-1.5.1.ebuild:
  Updated with new utf8-ru patches for the latest versions.  Thanks to
  Sergey Belyashov <Sergey.Belyashov at gmail.com> for the utf8-ru fixes.
  Fixes bug #167617.

  23 Jan 2007; Marius Mauch <genone@gentoo.org> doxygen-1.4.2.ebuild,
  doxygen-1.4.3-r1.ebuild, doxygen-1.4.4.ebuild, doxygen-1.4.5.ebuild,
  doxygen-1.4.6.ebuild, doxygen-1.4.7.ebuild, doxygen-1.5.1.ebuild:
  Replacing einfo with elog

*doxygen-1.5.1 (01 Nov 2006)

  01 Nov 2006; Steve Arnold <nerdboy@gentoo.org>
  +files/doxygen-1.5-legacy-patches.diff, +doxygen-1.5.1.ebuild:
  version bump (bug 152033) and patch consolidation

  24 Oct 2006; Fabian Groffen <grobian@gentoo.org> doxygen-1.4.7.ebuild:
  Marked ppc-macos stable (bug #138937)

  19 Oct 2006; Bryan Østergaard <kloeri@gentoo.org> doxygen-1.4.7.ebuild:
  Stable on Alpha.

  15 Sep 2006; Steve Arnold <nerdboy@gentoo.org> doxygen-1.4.7.ebuild:
  added fix for bug 147298 (using flag-o-matic), since -O3 still produces
  broken code...

  14 Sep 2006; Danny van Dyk <kugelfang@gentoo.org> doxygen-1.4.7.ebuild:
  Marked stable on amd64 wrt bug #138397.

  13 Sep 2006; Aron Griffis <agriffis@gentoo.org> doxygen-1.4.7.ebuild:
  Mark 1.4.7 stable on ia64. #138937

  13 Sep 2006; <ticho@gentoo.org> doxygen-1.4.7.ebuild:
  Stable on x86, bug 138937.

  10 Sep 2006; Stephanie Lockwood-Childs <wormo@gentoo.org>
  doxygen-1.4.7.ebuild:
  stable on ppc (Bug #138937)

  04 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org> doxygen-1.4.7.ebuild:
  Stable on sparc wrt #138937

  02 Sep 2006; Jeroen Roovers <jer@gentoo.org> doxygen-1.4.7.ebuild:
  Stable for HPPA (bug #138937).

  12 Aug 2006; Markus Rothe <corsair@gentoo.org> doxygen-1.4.7.ebuild:
  Stable on ppc64; bug #138937

  28 Jul 2006; Caleb Tennis <caleb@gentoo.org> doxygen-1.4.7.ebuild:
  QA: Changed all instances of qt to qt3, per bug #141552

  13 Jul 2006; Aron Griffis <agriffis@gentoo.org> doxygen-1.4.6.ebuild:
  Mark 1.4.6 stable on ia64. #138937

  12 Jul 2006; Danny van Dyk <kugelfang@gentoo.org> doxygen-1.4.7.ebuild:
  QA: Changed qt to qt3.

  09 Jul 2006; Steve Arnold <nerdboy@gentoo.org> doxygen-1.4.2.ebuild,
  doxygen-1.4.3-r1.ebuild, doxygen-1.4.4.ebuild, doxygen-1.4.5.ebuild,
  doxygen-1.4.6.ebuild, doxygen-1.4.7.ebuild:
  removed ewarn from pkg_postinst (bug 139761)

  03 Jul 2006; Lars Weiler <pylon@gentoo.org> doxygen-1.4.6.ebuild:
  Stable on ppc; bug #138937.

  03 Jul 2006; Markus Ullmann <jokey@gentoo.org> Manifest:
  Fixing digest

*doxygen-1.4.7 (03 Jul 2006)

  03 Jul 2006; Steve Arnold <nerdboy@gentoo.org>
  +files/1.4.7/01_all_cp1251.patch, +files/1.4.7/05_all_system-libpng.patch,
  +files/1.4.7/06_all_qtools.patch, +doxygen-1.4.7.ebuild:
  Version bump for bug #137283, need arch testing and graphviz answers (see
  bug #134575) before package cleanup can occur.  Filed bug #138937 on the
  doxygen stablization issue.  Thanks to Adam Piatyszek for providing the
  updated ebuild and patches.

  24 Jun 2006; Doug Goldstein <cardoe@gentoo.org> doxygen-1.4.2.ebuild,
  doxygen-1.4.3-r1.ebuild, doxygen-1.4.4.ebuild, doxygen-1.4.5.ebuild,
  doxygen-1.4.6.ebuild:
  USE flag qt->qt3/qt4 change bug #137785

  27 May 2006; Steve Arnold <nerdboy@gentoo.org>
  -files/1.4.6/04_amd64_qtools.patch, files/doxygen-gcc4.patch:
  Removed offending amd64_qtools patch from 1.4.6; graphviz still needs work
  before newer doxygen versions can go stable...

  08 May 2006; Steve Arnold <nerdboy@gentoo.org>
  +files/1.4.6/01_all_cp1251.patch, +files/1.4.6/03_all_segfault.patch,
  -files/doxygen-1.4.6-freebsd.patch, +files/1.4.6/02_all_freebsd.patch,
  +files/1.4.6/04_amd64_qtools.patch,
  +files/1.4.6/05_all_system-libpng.patch, +files/1.4.6/06_all_qtools.patch,
  doxygen-1.4.6.ebuild:
  Added patches for bugs 129142, 121770, and 129560, and consolidated 1.4.6
  patches in subdir.

  08 Apr 2006; Steve Arnold <nerdboy@gentoo.org> doxygen-1.4.2.ebuild,
  doxygen-1.4.3-r1.ebuild, doxygen-1.4.4.ebuild, doxygen-1.4.5.ebuild,
  doxygen-1.4.6.ebuild:
  Updated QT environment stuff to address bug 127596, as well as updates
  for bugs 126374 and 127823 (1.4.6 only).

  05 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> ChangeLog:
  Recommit manifest, connection lost during commit.

  05 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  +files/doxygen-1.4.6-freebsd.patch, doxygen-1.4.6.ebuild:
  Add patch to allow building on FreeBSD and keyword ~x86-fbsd.

  08 Feb 2006; Steve Arnold <nerdboy@gentoo.org> doxygen-1.4.2.ebuild,
  doxygen-1.4.3-r1.ebuild, doxygen-1.4.4.ebuild, doxygen-1.4.5.ebuild,
  doxygen-1.4.6.ebuild:
  updated all versions with kluge for QT environment lameness

  28 Jan 2006; Simon Stelling <blubb@gentoo.org>
  -files/doxygen-utf8-ru.patch.gz, doxygen-1.4.2.ebuild,
  doxygen-1.4.3-r1.ebuild, doxygen-1.4.4.ebuild, doxygen-1.4.5.ebuild,
  doxygen-1.4.6.ebuild:
  move compressed patches to the mirrors

*doxygen-1.4.6 (18 Jan 2006)

  18 Jan 2006; Steve Arnold <nerdboy@gentoo.org> doxygen-1.4.2.ebuild,
  doxygen-1.4.3-r1.ebuild, doxygen-1.4.4.ebuild, doxygen-1.4.5.ebuild,
  +doxygen-1.4.6.ebuild:
  Added workaround for bug 118580, and new version for bugs 117613 and 110615.
  ~mips removed temporarily from 1.4.5 and 1.4.6 until it gets updated to
  graphviz-2.6 or better.

  27 Dec 2005; Bryan Østergaard <kloeri@gentoo.org doxygen-1.4.4.ebuild:
  Stable on alpha.

  21 Dec 2005; Marcus D. Hanwell <cryos@gentoo.org> doxygen-1.4.4.ebuild:
  Stable on amd64.

  21 Dec 2005; Steve Arnold <nerdboy@gentoo.org> +files/doxygen-gcc4.patch,
  +files/doxygen-utf8-ru.patch.gz, doxygen-1.4.2.ebuild,
  doxygen-1.4.3-r1.ebuild, doxygen-1.4.4.ebuild, doxygen-1.4.5.ebuild:
  Patched all versions with fixes for bugs 112076 and 113420.  Thanks
  to Robert Marmorstein <rmmarm@wm.edu> and Sergey Belyashov <b-s-a@narod.ru>
  for the patches.  Most users unaffected so far...

  24 Nov 2005; Markus Rothe <corsair@gentoo.org> doxygen-1.4.4.ebuild:
  Stable on ppc64

  11 Nov 2005; Michael Hanselmann <hansmi@gentoo.org> doxygen-1.4.4.ebuild:
  Stable on ppc.

  30 Oct 2005; Bryan Østergaard <kloeri@gentoo.org> doxygen-1.4.4.ebuild:
  Stable on ia64.

  21 Oct 2005; Aaron Walker <ka0ttic@gentoo.org> doxygen-1.4.4.ebuild:
  Stable on mips.

*doxygen-1.4.5 (20 Oct 2005)

  20 Oct 2005; Steve Arnold <nerdboy@gentoo.org> -doxygen-1.3.8.ebuild,
  -doxygen-1.3.9.1.ebuild, -doxygen-1.4.1.ebuild, doxygen-1.4.2.ebuild,
  doxygen-1.4.3-r1.ebuild, doxygen-1.4.4.ebuild, +doxygen-1.4.5.ebuild:
  Removed doc dep from tetex, added new version, cleaned up old ebuilds,
  and a stable bump for x86 and sparc

  08 Oct 2005; Fabian Groffen <grobian@gentoo.org>
  +files/doxygen-1.4.4-darwin.patch, doxygen-1.4.4.ebuild:
  Adding a patch which changes the macos profile in such a way that the final
  linking stage can succeed.  Applied unconditionally, since it only messes with
  the macos profile.

  06 Oct 2005; Fabian Groffen <grobian@gentoo.org> doxygen-1.4.4.ebuild:
  Remove ppc-macos specific patch, it's not necessary anymore

  17 Sep 2005; Steve Arnold <nerdboy@gentoo.org> doxygen-1.4.4.ebuild:
  replaced lost patch change (fixes bug #106167)

*doxygen-1.4.4 (16 Sep 2005)

  16 Sep 2005; Steve Arnold <nerdboy@gentoo.org> -doxygen-1.3.5.ebuild,
  -doxygen-1.3.5-r1.ebuild, -doxygen-1.3.6.ebuild, -doxygen-1.3.7.ebuild,
  doxygen-1.3.8.ebuild, +doxygen-1.4.4.ebuild:
  version bump to close bug #101852 and cleaned up old ebuilds; also marked
  1.3.8 as stable for ppc64, since it was that way for both older and
  newer versions...

  29 Aug 2005; Lina Pezzella <j4rg0n@gentoo.org> doxygen-1.4.2.ebuild,
  doxygen-1.4.3-r1.ebuild:
  Backported ppc-macos qt fix to version 1.4.2. Changed conditional to
  userland_Darwin where appropriate.

  23 Aug 2005; Aron Griffis <agriffis@gentoo.org> doxygen-1.4.2.ebuild:
  stable on ia64

  08 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> doxygen-1.4.2.ebuild:
  Stable on mips.

  28 Jul 2005; Caleb Tennis <caleb@gentoo.org> doxygen-1.3.5.ebuild,
  doxygen-1.3.5-r1.ebuild, doxygen-1.3.6.ebuild, doxygen-1.3.7.ebuild,
  doxygen-1.3.8.ebuild, doxygen-1.3.9.1.ebuild, doxygen-1.4.1.ebuild,
  doxygen-1.4.2.ebuild, doxygen-1.4.3-r1.ebuild:
  Made qt dep explict on qt3 per bug #100235

  18 Jul 2005; Lina Pezzella <j4rg0n@gentoo.org> doxygen-1.4.3-r1.ebuild:
  Updated ebuild to support USE=qt on ppc-macos

  05 Jul 2005; Ilya A. Volynets-Evenbach <iluxa@gentoo.org>
  doxygen-1.4.3-r1.ebuild:
  replace make with emake for main build to allow parallelization

  11 Jun 2005; Steve Arnold <nerdboy@gentoo.org>
  +files/doxygen-1.4.3-nls.patch, +doxygen-1.4.3-r1.ebuild
  -doxygen-1.4.3.ebuild:
  added patch for ChrisWhite's obscure Japanese beetle (bug 95627)
  thanks!  removed previous ~arch

  31 May 2005; Rene Nussbaumer <killerfox@gentoo.org> doxygen-1.4.2.ebuild:
  Stable on hppa.

  31 May 2005; Markus Rothe <corsair@gentoo.org> doxygen-1.3.9.1.ebuild,
  doxygen-1.4.2.ebuild:
  Stable on ppc64

  31 May 2005; Fernando J. Pereda <ferdy@gentoo.org> doxygen-1.4.2.ebuild:
  Stable on alpha

*doxygen-1.4.3 (30 May 2005)

  30 May 2005; Steve Arnold <nerdboy@gentoo.org>
  +files/doxygen-1.4.3-cp1251.patch, doxygen-1.4.2.ebuild,
  +doxygen-1.4.3.ebuild:
  new version for bug 92789, patch for bug 85668, and stable bumps on
  covered arches. Also added brute-force workaround for bug 89075.

  15 May 2005; Fernando J. Pereda <ferdy@gentoo.org> doxygen-1.4.1.ebuild:
  alpha stable

  05 May 2005; Aron Griffis <agriffis@gentoo.org> doxygen-1.4.1.ebuild:
  stable on ia64

  05 May 2005; Michael Hanselmann <hansmi@gentoo.org> doxygen-1.4.1.ebuild:
  Stable on hppa.

  09 Apr 2005; Michael Hanselmann <hansmi@gentoo.org> doxygen-1.4.1.ebuild:
  Stable on ppc.

  08 Apr 2005; Markus Rothe <corsair@gentoo.org> doxygen-1.4.1.ebuild:
  Stable on ppc64

  08 Apr 2005; Marcus D. Hanwell <cryos@gentoo.org> doxygen-1.4.1.ebuild:
  Marked stable on amd64.

  02 Apr 2005; Steve Arnold <nerdboy@gentoo.org> doxygen-1.3.9.1.ebuild,
  doxygen-1.4.1.ebuild:
  updated recent ebuilds for bug 80045 and bumped and added new version

  31 Mar 2005; <blubb@gentoo.org> doxygen-1.3.9.1.ebuild:
  stable on amd64

  27 Mar 2005; Michael Hanselmann <hansmi@gentoo.org> doxygen-1.3.9.1.ebuild:
  Stable on ppc.

  26 Mar 2005; Bryan Østergaard <kloeri@gentoo.org> doxygen-1.3.9.1.ebuild:
  Stable on alpha.

  19 Feb 2005; <burgundy@gentoo.org> +files/bsd-configure.patch,
  doxygen-1.4.1.ebuild:
  Patched to work on ppc-macos

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

  26 Jan 2005; Gustavo Zacarias <gustavoz@gentoo.org> doxygen-1.3.9.1.ebuild:
  Stable on sparc

*doxygen-1.4.1 (25 Jan 2005)

  25 Jan 2005; Steve Arnold <nerdboy@gentoo.org> doxygen-1.3.9.1.ebuild,
  +doxygen-1.4.1.ebuild:
  Added 1.4.1 and bumped 1.3.9.1 to x86, sparc, ppc

  02 Jan 2005; Ciaran McCreesh <ciaranm@gentoo.org> :
  Change encoding to UTF-8 for GLEP 31 compliance

  14 Nov 2004; Bryan Østergaard <kloeri@gentoo.org> doxygen-1.3.8.ebuild:
  Stable on alpha.

*doxygen-1.3.9.1 (23 Oct 2004)

  23 Oct 2004; Steve Arnold <nerdboy@gentoo.org> metadata.xml,
  +doxygen-1.3.9.1.ebuild:
  updated to current upstream release, several bug fixes and enhancements
  (closes bug 67550)

  17 Oct 2004; Dylan Carlson <absinthe@gentoo.org> doxygen-1.3.5-r1.ebuild,
  doxygen-1.3.7.ebuild, doxygen-1.3.8.ebuild:
  stable on amd64.

  08 Oct 2004; Guy Martin <gmsoft@gentoo.org> doxygen-1.3.8.ebuild:
  Marked stable on hppa.

  20 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> doxygen-1.3.8.ebuild:
  Stable on sparc

*doxygen-1.3.8 (18 Sep 2004)

  18 Sep 2004; Steve Arnold <nerdboy@gentoo.org> doxygen-1.3.8.ebuild:
  marked stable on x86

  13 Aug 2004; Jason Wever <weeve@gentoo.org> doxygen-1.3.7.ebuild:
  Stable on sparc.

  13 Aug 2004; Bryan Østergaard <kloeri@gentoo.org> doxygen-1.3.7.ebuild:
  Stable on alpha.

  01 Aug 2004; Steve Arnold <nerdboy@gentoo.org> doxygen-1.3.7.ebuild:
  Bumped 1.3.7 to x86 and added 1.3.8

  23 Jul 2004; Tom Gall <tgall@gentoo.org> doxygen-1.3.7.ebuild:
  stable on ppc64

  09 Jun 2004; Ferris McCormick <fmccor@gentoo.org> doxygen-1.3.6.ebuild:
  Marked stable on sparc.

  05 Jun 2004; Stephen P. Becker <geoman@gentoo.org> doxygen-1.3.6.ebuild:
  Added ~mips keyword.

*doxygen-1.3.7 (05 Jun 2004)

  05 Jun 2004; Steve Arnold <nerdboy@gentoo.org> doxygen-1.2.18.ebuild,
  doxygen-1.3.2.ebuild, doxygen-1.3.3.ebuild, doxygen-1.3.4.ebuild,
  doxygen-1.3.6.ebuild, doxygen-1.3.7.ebuild:
  marked 1.3.6 stable for x86, ppc, and hppa; removed old ebuilds
  (leaving at least one stable for each arch) and added 1.3.7

  03 Jun 2004; Stephen P. Becker <geoman@gentoo.org> doxygen-1.3.5-r1.ebuild:
  Stable on mips.

  26 May 2004; Guy Martin <gmsoft@gentoo.org> doxygen-1.3.5-r1.ebuild:
  Marked stable on hppa.

  12 May 2004; Ferris McCormick <fmccor@gentoo.org> doxygen-1.3.5-r1.ebuild:
  Marked stable for sparc.

*doxygen-1.3.6 (08 May 2004)

  08 May 2004; Steve Arnold <nerdboy@gentoo.org> doxygen-1.3.5-r1.ebuild,
  doxygen-1.3.6.ebuild:
  added 1.3.6 ebuild (closes bug 49015) and marked 1.3.5-r1 x86

  04 May 2004; Bryan Østergaard <kloeri@gentoo.org> doxygen-1.3.5-r1.ebuild:
  Stable on alpha.

  24 Apr 2004; Bret Curtis <psi29a@gentoo.org> doxygen-1.3.5.ebuild:
  Added to ~mips

  03 Mar 2004; <agriffis@gentoo.org> doxygen-1.3.5-r1.ebuild,
  doxygen-1.3.5.ebuild:
  add ia64 keywords

*doxygen-1.3.5-r1 (29 Feb 2004)

  29 Feb 2004; <sarnold@gentoo.org> doxygen-1.3.5-r1.ebuild,
  doxygen-1.3.5.ebuild, metadata.xml:
  removed ia64 temporarily due to bad depends on tetex and ghostscript

*doxygen-1.3.5-r1 (29 Feb 2004)

  29 Feb 2004; <nerdboy@gentoo.org> doxygen-1.3.5-r1.ebuild, metadata.xml:
  tested all USE flag variations and fixed a small pdf install glitch

  21 Feb 2004; Mamoru KOMACHI <usata@gentoo.org> doxygen-1.3.2.ebuild,
  doxygen-1.3.3.ebuild, doxygen-1.3.4.ebuild, doxygen-1.3.5.ebuild:
  Added tetex IUSE flag. Thanks to Ronny Schoebel <ronny@l61.de> for
  submitting a patch to ebuilds. This closes bug #42067

  06 Feb 2004; <gustavoz@gentoo.org> doxygen-1.3.5.ebuild:
  stable on sparc

*doxygen-1.2.18 (26 Jan 2004)

  26 Jan 2004; Jason Wever <weeve@gentoo.org> doxygen-1.2.18.ebuild:
  Putting doxygen-1.2.18 back into the tree to fix dependency problems when all
  stable doxygen ebuilds for sparc were removed.

  19 Jan 2004; Guy Martin <gmsoft@gentoo.org> doxygen-1.3.5.ebuild :
  Marked stable on hppa.

  15 Jan 2004; <agriffis@gentoo.org> doxygen-1.3.5.ebuild:
  stable on alpha and ia64

  12 Jan 2004; <nerdboy@gentoo.org> doxygen-1.2.15-r1.ebuild,
  doxygen-1.2.16.ebuild, doxygen-1.2.18.ebuild, doxygen-1.3.2.ebuild,
  doxygen-1.3.3.ebuild, doxygen-1.3.4.ebuild, doxygen-1.3.5.ebuild,
  doxygen-1.3.ebuild, files/doxygen-1.2.15-r1.diff,
  files/doxygen-1.2.16-gentoo.diff:
  bumped 1.3.5 to x86, fixed headers, and removed old ebuilds

  09 Dec 2003; Heinrich Wendel <lanius@gentoo.org> doxygen-1.3.2.ebuild,
  doxygen-1.3.3.ebuild, doxygen-1.3.4.ebuild, doxygen-1.3.5.ebuild,
  doxygen-1.3.ebuild:
  changed app-text/ghostscript to virtual/ghostscript

*doxygen-1.3.5 (06 Dec 2003)

  06 Dec 2003; <nerdboy@gentoo.org> doxygen-1.3.4.ebuild,
  doxygen-1.3.5.ebuild:
  bump 1.3.4 to x86 and add 1.3.5 ~x86

  16 Nov 2003; Brad House <brad_mssw@gentoo.org> doxygen-1.3.4.ebuild:
  mark stable on amd64

  27 Oct 2003; Mamoru KOMACHI <usata@gentoo.org> doxygen-1.3.2.ebuild,
  doxygen-1.3.3.ebuild, doxygen-1.3.4.ebuild, doxygen-1.3.ebuild:
  Changed app-text/tetex to virtual/tetex. See Bug #32063.

*doxygen-1.3.4 (20 Oct 2003)

  20 Oct 2003; <nerdboy@gentoo.org> doxygen-1.3.4.ebuild, metadata.xml:
  version bump to latest stable release, added to dev-tools herd

  16 Oct 2003; Aron Griffis <agriffis@gentoo.org> doxygen-1.3.3.ebuild:
  Stable on alpha

*doxygen-1.3.3 (02 Sep 2003)

  02 Sep 2003; Patrick Kursawe <phosphan@gentoo.org> doxygen-1.3.3.ebuild,
  doxygen-1.3.ebuild,doxygen-1.3.2.ebuild:
  Added ghostscript to DEPENDs because of bug 26987; Version bump.

*doxygen-1.3.2 (14 Jul 2003)

  14 Jul 2003; Patrick Kursawe <phosphan@gentoo.org> doxygen-1.3.2.ebuild:
  Version bump as requested in bug 24292

  01 Jul 2003; Patrick Kursawe <phosphan@gentoo.org> doxygen-1.3.ebuild:
  Bug was not yet dead, had to add one more "addwrite" line

  30 Jun 2003; Patrick Kursawe <phosphan@gentoo.org> doxygen-1.3.ebuild:
  Installing docs requires more write permissions, fixed bug 23738

  17 Jun 2003; Will Woods <wwoods@gentoo.org> doxygen-1.2.18.ebuild,
  doxygen-1.3.ebuild:
  Added alpha/~alpha to KEYWORDS

  19 May 2003; Grant Goodyear <g2boojum@gentoo.org> doxygen-1.3.ebuild:
  Sed-fu to make configure work w/ install from either coreutils or fileutils

*doxygen-1.3 (15 Apr 2003)

  15 Apr 2003; Jyrki Muukkonen <jyrki@kruu.org> doxygen-1.3.ebuild:
  - Version bump, ~x86 ~ppc and ~sparc keywords.
  - Updated description
  - Added IUSE="doc qt". With "doc" it builds the HTML and PDF versions of
    the manual, and hence depends on app-text/tetex. HTML version needs latex
    for generating some bitmap formulas and PDF version uses pdftex. Tested
    with tetex-1.0.7-r12 and tetex-2.0.2
  - Change \setlength{\footrulewidth} to \renewcommand{\footrulewidth} in
    doxygen_manual.tex to make it work with tetex-2.x also. Looks like it
    works with tetex-1.x too.
  - Simplified the tmake.conf sed(1) hack and ./configure options.
  - Also made the actual compiling use emake instead of make.
  - And applied by wmertens@gentoo.org, who also added a sandbox violation
    fix for the docs.

*doxygen-1.2.18 (13 Oct 2002)

  06 Apr 2003; Jason Wever <weeve@gentoo.org> doxygen-1.2.18.ebuild:
  Changed ~sparc keyword to sparc.

  19 Mar 2003; Jason Wever <weeve@gentoo.org> doxygen-1.2.18.ebuild:
  Added ~sparc to keywords.

  13 Oct 2002; Phil Bordelon <sunflare@gentoo.org> doxygen-1.2.18.ebuild :
  Version bump, along with some added fixes provided by CJ Kucera
  <pez@apocalyptech.com> in Bug 7353.

*doxygen-1.2.16 (08 Jul 2002)

  08 Jul 2002; Phil Bordelon <sunflare@gentoo.org> doxygen-1.2.15.ebuild doxygen-1.2.15-r1.ebuild doxygen-1.2.16.ebuild :
  Did a version bump.  Also lintool'd and repoman'd the ebuild so that
  it matches modern form.  Added KEYWORDs and SLOTs to the old ebuilds
  as well.

*doxygen-1.2.15-r1 (11 May 2002)

  11 Jun 2002; Wout Mertens <wmertens@gentoo.org>:
  Changed qt dependency syntax so Portage wouldn't get weird dependency
  problems. Builds fine with qt3.

  02 Jun 2002; Wout Mertens <wmertens@gentoo.org>:
  Changed ebuild to depend on graphvis as per bug #3320.
  While I was at it, changed it so lintool was happy. Therefore, the Author
  field was removed, and copied to here:
  Author Sean Mitchell <sean@arawak.on.ca>, updated Tom von Schwerdtner
  <tvon@etria.org>

  11 May 2002; pvdabeel <pvdabeel@gentoo.org> ChangeLog :
  Doxygen compiles and runs perfectly with qt3 too. Both qt2 and qt3
  are supported by the ebuild now

*doxygen-1.2.15 (17 Apr 2002)

  17 Apr 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog :
  Copied 1.2.13.1 ebuild over for 1.2.15 (#1786)

*doxygen-1.2.13.1 (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.