summaryrefslogtreecommitdiff
blob: bcc4e6576f326678e7b52fb05e6b2855cc9d2531 (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
# ChangeLog for gnome-extra/gtkhtml
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/ChangeLog,v 1.283 2013/11/30 19:24:00 pacho Exp $

  30 Nov 2013; Pacho Ramos <pacho@gentoo.org> gtkhtml-4.6.6.ebuild:
  amd64 stable, bug #478252

*gtkhtml-4.6.6 (23 Jul 2013)

  23 Jul 2013; Pacho Ramos <pacho@gentoo.org> +gtkhtml-4.6.6.ebuild:
  Version bump

  21 Jul 2013; Pacho Ramos <pacho@gentoo.org>
  -files/libgtkhtml-2.2.0-alpha.patch, -gtkhtml-2.11.1.ebuild:
  Remove masked for removal package

*gtkhtml-4.6.5 (12 May 2013)

  12 May 2013; Pacho Ramos <pacho@gentoo.org> +gtkhtml-4.6.5.ebuild,
  -gtkhtml-4.4.3.ebuild, -gtkhtml-4.4.4.ebuild:
  Version bump, drop old

  09 Apr 2013; Agostino Sarubbo <ago@gentoo.org> gtkhtml-4.6.4.ebuild:
  Stable for sh, wrt bug #458984

  01 Apr 2013; Agostino Sarubbo <ago@gentoo.org> gtkhtml-4.6.4.ebuild:
  Stable for sparc, wrt bug #458984

  01 Apr 2013; Agostino Sarubbo <ago@gentoo.org> gtkhtml-4.6.4.ebuild:
  Stable for alpha, wrt bug #458984

  29 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org> gtkhtml-4.4.3.ebuild,
  gtkhtml-4.4.4.ebuild, -gtkhtml-4.6.2.ebuild:
  Clean up old revision.

  29 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gtkhtml-4.6.4.ebuild:
  Stable for ia64, wrt bug #458984

  28 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gtkhtml-4.6.4.ebuild:
  Stable for arm, wrt bug #458984

  27 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gtkhtml-4.6.4.ebuild:
  Stable for ppc64, wrt bug #458984

  26 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gtkhtml-4.6.4.ebuild:
  Stable for ppc, wrt bug #458984

  25 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gtkhtml-4.6.4.ebuild:
  Stable for x86, wrt bug #458984

  25 Mar 2013; Agostino Sarubbo <ago@gentoo.org> gtkhtml-4.6.4.ebuild:
  Stable for amd64, wrt bug #458984

*gtkhtml-4.6.4 (18 Feb 2013)

  18 Feb 2013; Alexandre Rostovtsev <tetromino@gentoo.org>
  -gtkhtml-4.6.1.ebuild, +gtkhtml-4.6.4.ebuild:
  Version bump; drop old.

*gtkhtml-4.6.2 (22 Jan 2013)

  22 Jan 2013; Alexandre Rostovtsev <tetromino@gentoo.org>
  +gtkhtml-4.6.2.ebuild:
  Version bump.

*gtkhtml-4.6.1 (17 Dec 2012)

  17 Dec 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  gtkhtml-2.11.1.ebuild, gtkhtml-3.32.2.ebuild, -gtkhtml-4.2.2.ebuild,
  -gtkhtml-4.2.3.ebuild, gtkhtml-4.4.3.ebuild, gtkhtml-4.4.4.ebuild,
  +gtkhtml-4.6.1.ebuild:
  Version bump for gnome-3.6. Update homepage, description, license. Drop old.

  28 Oct 2012; Raúl Porcel <armin76@gentoo.org> gtkhtml-4.4.3.ebuild:
  alpha/ia64/sh/sparc stable wrt #427544

  16 Oct 2012; Anthony G. Basile <blueness@gentoo.org> gtkhtml-4.4.3.ebuild:
  stable ppc, bug #427544

  14 Oct 2012; Matt Turner <mattst88@gentoo.org> gtkhtml-4.4.4.ebuild:
  Stable on alpha, bug 427544.

  10 Oct 2012; Gilles Dartiguelongue <eva@gentoo.org> gtkhtml-3.32.2.ebuild,
  +files/gtkhtml-3.32.2-g_thread_init.patch:
  Fix build with recent glib, bug #436462.

  07 Oct 2012; Anthony G. Basile <blueness@gentoo.org> gtkhtml-4.4.3.ebuild:
  stable ppc64, bug #427544

  06 Oct 2012; Markus Meier <maekke@gentoo.org> gtkhtml-4.4.3.ebuild:
  arm stable, bug #427544

  04 Oct 2012; Agostino Sarubbo <ago@gentoo.org> gtkhtml-4.4.3.ebuild:
  Stable for amd64, wrt bug #427544

  03 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> gtkhtml-4.4.3.ebuild:
  x86 stable wrt bug #427544

*gtkhtml-4.4.4 (13 Aug 2012)

  13 Aug 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  -gtkhtml-4.4.2.ebuild, +gtkhtml-4.4.4.ebuild:
  Version bump, drop old.

  15 Jul 2012; Raúl Porcel <armin76@gentoo.org> gtkhtml-4.2.3.ebuild:
  alpha/ia64/sh/sparc stable wrt #410611

*gtkhtml-4.4.3 (23 Jun 2012)

  23 Jun 2012; Pacho Ramos <pacho@gentoo.org> +gtkhtml-4.4.3.ebuild,
  -gtkhtml-4.4.1.ebuild:
  Version bump, remove old.

*gtkhtml-4.4.2 (25 May 2012)

  25 May 2012; Pacho Ramos <pacho@gentoo.org> +gtkhtml-4.4.2.ebuild:
  Version bump.

  24 May 2012; Samuli Suominen <ssuominen@gentoo.org> gtkhtml-4.2.3.ebuild:
  ppc stable wrt #410611

  05 May 2012; Jeff Horelick <jdhore@gentoo.org> gtkhtml-2.11.1.ebuild,
  gtkhtml-3.32.2.ebuild, gtkhtml-4.2.2.ebuild, gtkhtml-4.2.3.ebuild,
  gtkhtml-4.4.1.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  29 Apr 2012; Markus Meier <maekke@gentoo.org> gtkhtml-4.2.3.ebuild:
  x86 stable, bug #410611

  25 Apr 2012; Markus Meier <maekke@gentoo.org> gtkhtml-4.2.3.ebuild:
  arm stable, bug #410611

*gtkhtml-4.4.1 (20 Apr 2012)

  20 Apr 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  +gtkhtml-4.4.1.ebuild:
  Version bump, fixes gtk+-3.4 and glib-2.32 compatibility (bug #412351, thanks
  to Emmanuel Appiah et al.)

  19 Apr 2012; Brent Baude <ranger@gentoo.org> gtkhtml-4.2.3.ebuild:
  Marking gtkhtml-4.2.3 ppc64 stable for bug 410611

  18 Apr 2012; Agostino Sarubbo <ago@gentoo.org> gtkhtml-4.2.3.ebuild:
  Stable for amd64, wrt bug #410611

  25 Mar 2012; Raúl Porcel <armin76@gentoo.org> gtkhtml-4.2.2.ebuild:
  alpha/ia64/sh/sparc stable wrt #393007

  05 Mar 2012; Brent Baude <ranger@gentoo.org> gtkhtml-4.2.2.ebuild:
  Marking gtkhtml-4.2.2 ppc stable for bug 393007

  05 Mar 2012; Brent Baude <ranger@gentoo.org> gtkhtml-4.2.2.ebuild:
  Marking gtkhtml-4.2.2 ppc64 stable for bug 393007

*gtkhtml-4.2.3 (20 Jan 2012)

  20 Jan 2012; Alexandre Rostovtsev <tetromino@gentoo.org>
  -gtkhtml-4.0.2.ebuild, -gtkhtml-4.2.1.ebuild, +gtkhtml-4.2.3.ebuild:
  Version bump, removes deprecation flags. Drop old.

  18 Jan 2012; Markus Meier <maekke@gentoo.org> gtkhtml-4.2.2.ebuild:
  arm stable, bug #393007

  14 Jan 2012; Markus Meier <maekke@gentoo.org> gtkhtml-4.2.2.ebuild:
  x86 stable, bug #393007

  29 Dec 2011; Pacho Ramos <pacho@gentoo.org> gtkhtml-4.2.2.ebuild:
  amd64 stable, bug 393007

*gtkhtml-4.2.2 (20 Nov 2011)

  20 Nov 2011; Pacho Ramos <pacho@gentoo.org> +gtkhtml-4.2.2.ebuild,
  -gtkhtml-4.0.1.ebuild:
  Version bump, remove old.

*gtkhtml-4.2.1 (31 Oct 2011)

  31 Oct 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
  +gtkhtml-4.2.1.ebuild:
  Bump to 4.2.1 from the gnome overlay. Now uses gsettings instead of gconf.

*gtkhtml-4.0.2 (09 Sep 2011)

  09 Sep 2011; Pacho Ramos <pacho@gentoo.org> +gtkhtml-4.0.2.ebuild:
  Version bump.

*gtkhtml-4.0.1 (19 Aug 2011)

  19 Aug 2011; Nirbheek Chauhan <nirbheek@gentoo.org> +gtkhtml-4.0.1.ebuild:
  Bump to 4.0.1, from gnome overlay for GNOME 3

  23 Mar 2011; Nirbheek Chauhan <nirbheek@gentoo.org> gtkhtml-2.11.1.ebuild,
  -gtkhtml-3.30.2.ebuild, -gtkhtml-3.30.3.ebuild, -gtkhtml-3.32.1.ebuild:
  Fix slot-deps on gnome libs, remove old

  22 Mar 2011; Brent Baude <ranger@gentoo.org> gtkhtml-3.32.2.ebuild:
  Marking gtkhtml-3.32.2 ppc stable for bug 353436

  21 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> gtkhtml-3.32.2.ebuild:
  ppc64 stable wrt #353436

  12 Mar 2011; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.32.2.ebuild:
  alpha/arm/ia64/sh/sparc stable wrt #353436

  24 Feb 2011; Thomas Kahle <tomka@gentoo.org> gtkhtml-3.32.2.ebuild:
  x86 stable per bug 353436

  23 Feb 2011; Markos Chandras <hwoarang@gentoo.org> gtkhtml-3.32.2.ebuild:
  Stable on amd64 wrt bug #353436

*gtkhtml-3.32.2 (07 Feb 2011)

  07 Feb 2011; Pacho Ramos <pacho@gentoo.org> +gtkhtml-3.32.2.ebuild:
  Version bump with some bugfixes.

  30 Jan 2011; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.30.3.ebuild:
  alpha/arm/ia64/sh/sparc stable wrt #348987

  19 Jan 2011; Markos Chandras <hwoarang@gentoo.org> gtkhtml-3.30.3.ebuild:
  Stable on amd64 wrt bug #348987

  18 Jan 2011; Christian Faulhammer <fauli@gentoo.org>
  gtkhtml-3.30.3.ebuild:
  x86 stable, bug 348987

*gtkhtml-3.32.1 (28 Nov 2010)

  28 Nov 2010; Pacho Ramos <pacho@gentoo.org> -gtkhtml-3.28.3.ebuild,
  -gtkhtml-3.32.0.ebuild, +gtkhtml-3.32.1.ebuild, -files/gtkhtml-editor.xml:
  Version bump fixing a crash, remove old.

  17 Oct 2010; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.30.2.ebuild:
  alpha/ia64/sh/sparc stable wrt #324077

  14 Oct 2010; Markus Meier <maekke@gentoo.org> gtkhtml-3.30.2.ebuild:
  arm stable, bug #324077

  12 Oct 2010; Gilles Dartiguelongue <eva@gentoo.org>
  -gtkhtml-3.26.3.ebuild, gtkhtml-3.32.0.ebuild:
  Add slot limitation to gtk+, missing DEPEND on xproto and use gnome2
  phases where needed.

*gtkhtml-3.32.0 (12 Oct 2010)

  12 Oct 2010; Pacho Ramos <pacho@gentoo.org> +gtkhtml-3.32.0.ebuild:
  Version bump for Gnome 2.32: Add support for multimedia keys, bugfixes and
  translation updates. Update to EAPI3, add preserve_old_lib to prevent
  breakage after update due upstream renaming libs, this also affects to old
  .la files and, then, newly provided ones are dropped since people will
  need to fix .la files anyway (even with lafilefixer or newer portage).

  07 Oct 2010; Samuli Suominen <ssuominen@gentoo.org> gtkhtml-3.30.2.ebuild:
  ppc64 stable wrt #324077

  26 Sep 2010; <nirbheek@gentoo.org> gtkhtml-3.30.2.ebuild,
  gtkhtml-3.30.3.ebuild:
  Fix build issues with gtk+-2.22 by *actually* removing
  -D*DISABLE_DEPRECATED cflags

  11 Sep 2010; Joseph Jezak <josejx@gentoo.org> gtkhtml-3.30.2.ebuild:
  Marked ppc for bug #324077.

  18 Aug 2010; Markus Meier <maekke@gentoo.org> gtkhtml-3.28.3.ebuild:
  arm stable, bug #314899

*gtkhtml-3.30.3 (16 Aug 2010)

  16 Aug 2010; Gilles Dartiguelongue <eva@gentoo.org> gtkhtml-3.30.2.ebuild,
  +gtkhtml-3.30.3.ebuild:
  Version bump. About USE=glade removal, see upstream commit:7b4440c7.

  14 Aug 2010; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.28.3.ebuild:
  alpha/ia64/sh/sparc stable wrt #314899

  01 Aug 2010; Christian Faulhammer <fauli@gentoo.org>
  gtkhtml-3.30.2.ebuild:
  x86 stable, bug 324077

  31 Jul 2010; Pacho Ramos <pacho@gentoo.org> gtkhtml-3.30.2.ebuild:
  amd64 stable, bug 324077

  20 Jul 2010; Jeroen Roovers <jer@gentoo.org> gtkhtml-2.11.1.ebuild,
  gtkhtml-3.26.3.ebuild, gtkhtml-3.28.3.ebuild, gtkhtml-3.30.2.ebuild:
  Drop HPPA keywording (bug #324511).

*gtkhtml-3.30.2 (23 Jun 2010)

  23 Jun 2010; Pacho Ramos <pacho@gentoo.org> -gtkhtml-3.30.1-r1.ebuild,
  -files/gtkhtml-3.30.1-crash-attachment.patch,
  -files/gtkhtml-3.30.1-crash-table.patch,
  -files/gtkhtml-3.30.1-magic-spacebar.patch, +gtkhtml-3.30.2.ebuild:
  Version bump with updated translations and fixes, remove old.

*gtkhtml-3.30.1-r1 (13 Jun 2010)

  13 Jun 2010; Pacho Ramos <pacho@gentoo.org> -gtkhtml-3.28.2.ebuild,
  +gtkhtml-3.30.1-r1.ebuild, +files/gtkhtml-3.30.1-crash-attachment.patch,
  +files/gtkhtml-3.30.1-crash-table.patch,
  +files/gtkhtml-3.30.1-magic-spacebar.patch:
  Add new version for Gnome 2.30, clean old version.

  04 Jun 2010; Markus Meier <maekke@gentoo.org> gtkhtml-3.28.3.ebuild:
  x86 stable, bug #314899

  03 May 2010; Olivier Crête <tester@gentoo.org> gtkhtml-3.28.3.ebuild:
  amd64 stable, bug #314899

  03 May 2010; Samuli Suominen <ssuominen@gentoo.org> gtkhtml-2.11.1.ebuild,
  gtkhtml-3.26.3.ebuild, gtkhtml-3.28.2.ebuild, gtkhtml-3.28.3.ebuild:
  Remove dummy gnome-base/gail depend.

*gtkhtml-3.28.3 (08 Mar 2010)

  08 Mar 2010; Gilles Dartiguelongue <eva@gentoo.org>
  +gtkhtml-3.28.3.ebuild:
  Version bump. Small bug fixes.

  24 Feb 2010; Gilles Dartiguelongue <eva@gentoo.org>
  -gtkhtml-3.24.5.ebuild, -gtkhtml-3.28.1.ebuild:
  Clean up old revisions.

  18 Jan 2010; Jeroen Roovers <jer@gentoo.org> gtkhtml-3.26.3.ebuild:
  Stable for HPPA (bug #281427).

  16 Jan 2010; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.26.3.ebuild:
  sh stable

  07 Jan 2010; Christian Faulhammer <fauli@gentoo.org>
  gtkhtml-3.28.2.ebuild:
  Transfer Prefix keywords

*gtkhtml-3.28.2 (23 Dec 2009)

  23 Dec 2009; Gilles Dartiguelongue <eva@gentoo.org>
  +gtkhtml-3.28.2.ebuild:
  Version bump. Bug fixes and translation updates.

  03 Dec 2009; Brent Baude <ranger@gentoo.org> gtkhtml-3.26.3.ebuild:
  Marking gtkhtml-3.26.3 ppc64 stable for bug 281427

  28 Nov 2009; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.26.3.ebuild:
  alpha/ia64/sparc stable wrt #281427

  05 Nov 2009; Markus Meier <maekke@gentoo.org> gtkhtml-3.26.3.ebuild:
  arm stable, bug #281427

  04 Nov 2009; Gilles Dartiguelongue <eva@gentoo.org> gtkhtml-3.24.5.ebuild,
  gtkhtml-3.26.3.ebuild, gtkhtml-3.28.1.ebuild:
  Update enchant dependency per bug #289209.

*gtkhtml-3.28.1 (29 Oct 2009)

  29 Oct 2009; Gilles Dartiguelongue <eva@gentoo.org>
  +gtkhtml-3.28.1.ebuild, +files/gtkhtml-editor.xml:
  New version for GNOME 2.28.

  24 Oct 2009; nixnut <nixnut@gentoo.org> gtkhtml-3.26.3.ebuild:
  ppc stable #281427

  16 Oct 2009; Markus Meier <maekke@gentoo.org> gtkhtml-3.26.3.ebuild:
  x86 stable, bug #281427

  08 Oct 2009; Olivier Crête <tester@gentoo.org> gtkhtml-3.26.3.ebuild:
  Stable on amd64, bug #281427

  12 Sep 2009; Gilles Dartiguelongue <eva@gentoo.org>
  -gtkhtml-3.12.3.ebuild, -files/gtkhtml-3.12.3-allow-deprecated.patch:
  Clean up deprecated gtkhtml:3.8 after taking care of bug #280961.

  18 Aug 2009; Michael Sterrett <mr_bones_@gentoo.org>
  +gtkhtml-3.12.3.ebuild, +files/gtkhtml-3.12.3-allow-deprecated.patch:
  resurrect gtkhtml-3.12.3.ebuild which is still used

  09 Aug 2009; Gilles Dartiguelongue <eva@gentoo.org>
  -gtkhtml-3.12.3.ebuild, -files/gtkhtml-3.12.3-allow-deprecated.patch,
  -gtkhtml-3.26.1.1.ebuild, -gtkhtml-3.26.2.ebuild,
  -files/gtkhtml-editor.xml:
  Clean up old revisions.

*gtkhtml-3.26.3 (19 Jul 2009)

  19 Jul 2009; Gilles Dartiguelongue <eva@gentoo.org>
  +gtkhtml-3.26.3.ebuild:
  Version bump. Emit signal in HTML mode, change toolbar style, translation
  updates.

  08 Jun 2009; Gilles Dartiguelongue <eva@gentoo.org> gtkhtml-3.26.2.ebuild:
  Set GCONF_DEBUG=no, bug #268745.

  08 Jun 2009; Gilles Dartiguelongue <eva@gentoo.org> gtkhtml-3.24.5.ebuild:
  Set WANT_AUTOMAKE and add gnome-common to DEPEND, bug #272845.

*gtkhtml-3.26.2 (18 May 2009)

  18 May 2009; Gilles Dartiguelongue <eva@gentoo.org>
  +gtkhtml-3.26.2.ebuild:
  Bump to 3.26.2. Bug fixes and translation updates.

  03 May 2009; Gilles Dartiguelongue <eva@gentoo.org>
  -files/gtkhtml-3.0.10-no-extern-cluealigned.diff,
  -files/gtkhtml-3.2-gi18n.patch, -files/gtkhtml-3.2-i18n.patch,
  -files/gtkhtml-3.6.2-fbsd.patch,
  -files/gtkhtml-3.14.3-get_left_margin-fix.patch:
  Clean up orphaned patches.

*gtkhtml-3.26.1.1 (03 May 2009)

  03 May 2009; Gilles Dartiguelongue <eva@gentoo.org>
  +files/gtkhtml-editor.xml, -gtkhtml-3.2.5.ebuild, -gtkhtml-3.6.2.ebuild,
  -gtkhtml-3.16.3.ebuild, -gtkhtml-3.18.3.ebuild, -gtkhtml-3.24.1.1.ebuild,
  -gtkhtml-3.24.2.ebuild, -gtkhtml-3.24.3.ebuild, -gtkhtml-3.24.4.ebuild,
  +gtkhtml-3.26.1.1.ebuild:
  New version for GNOME 2.26. Bug fixes and translation updates.
  Clean up old releases and kill unused slots.

  28 Apr 2009; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.18.3.ebuild:
  arm/sh stable

  27 Apr 2009; Jeroen Roovers <jer@gentoo.org> gtkhtml-3.24.5:
  Stable for HPPA (bug #260063).

  27 Apr 2009; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.24.5.ebuild:
  arm stable

  12 Apr 2009; Friedrich Oslage <bluebird@gentoo.org> gtkhtml-3.24.5.ebuild:
  Stable on sparc, bug #260063

  18 Mar 2009; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.24.5.ebuild:
  alpha/ia64 stable wrt #260063

  15 Mar 2009; Markus Meier <maekke@gentoo.org> gtkhtml-3.24.5.ebuild:
  x86 stable, bug #260063

  11 Mar 2009; Daniel Gryniewicz <dang@gentoo.org> gtkhtml-3.24.5.ebuild:
  Marked stable on amd64

  06 Mar 2009; Brent Baude <ranger@gentoo.org> gtkhtml-3.24.5.ebuild:
  Marking gtkhtml-3.24.5 ppc for bug 260063

  06 Mar 2009; Brent Baude <ranger@gentoo.org> gtkhtml-3.24.4.ebuild:
  Marking gtkhtml-3.24.4 ppc stable for bug 260063

  05 Mar 2009; Brent Baude <ranger@gentoo.org> gtkhtml-3.24.5.ebuild:
  Marking gtkhtml-3.24.5 ppc64 stable for bug 260063

*gtkhtml-3.24.5 (26 Feb 2009)

  26 Feb 2009; Daniel Gryniewicz <dang@gentoo.org> +gtkhtml-3.24.5.ebuild:
  Bump to gtkhtml-3.24.5

*gtkhtml-3.24.4 (31 Jan 2009)

  31 Jan 2009; Gilles Dartiguelongue <eva@gentoo.org>
  +gtkhtml-3.24.4.ebuild:
  Bump to 3.24.4. Bug fixes.

*gtkhtml-3.24.3 (26 Jan 2009)

  26 Jan 2009; Gilles Dartiguelongue <eva@gentoo.org>
  +gtkhtml-3.24.3.ebuild:
  Bump to 3.24.3. Bug fixes, notably sigsegv in
  gtkhtml_editor_set_changed().

*gtkhtml-3.24.2 (24 Nov 2008)

  24 Nov 2008; Gilles Dartiguelongue <eva@gentoo.org>
  +gtkhtml-3.24.2.ebuild:
  New version for GNOME 2.24.2. One small bug fix.

*gtkhtml-3.24.1.1 (19 Nov 2008)

  19 Nov 2008; Gilles Dartiguelongue <eva@gentoo.org>
  -gtkhtml-3.14.3-r1.ebuild, -gtkhtml-3.18.1.ebuild, -gtkhtml-3.18.2.ebuild,
  +gtkhtml-3.24.1.1.ebuild:
  New version for GNOME 2.24. Rewrite of the composer code, we keep the
  bonobo component until we make sure nothing uses it in the tree anymore.
  Clean up old revisions.

  13 Nov 2008; Brent Baude <ranger@gentoo.org> gtkhtml-3.18.3.ebuild:
  Marking gtkhtml-3.18.3 ppc64 stable for bug 236971

  18 Oct 2008; Brent Baude <ranger@gentoo.org> gtkhtml-3.18.3.ebuild:
  Marking gtkhtml-3.18.3 ppc stable for bug 236971

  01 Oct 2008; Peter Alfredsen <loki_val@gentoo.org>
  files/gtkhtml-3.12.3-allow-deprecated.patch:
  Update allow-deprecated patch to play nice with gtk-2.14.3.

  25 Sep 2008; Jeroen Roovers <jer@gentoo.org> gtkhtml-3.18.3.ebuild:
  Stable for HPPA (bug #236971).

  09 Sep 2008; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.18.3.ebuild:
  alpha/ia64/sparc stable wrt #236971

  08 Sep 2008; Markus Meier <maekke@gentoo.org> gtkhtml-3.18.3.ebuild:
  x86 stable, bug #236971

  07 Sep 2008; Olivier Crête <tester@gentoo.org> gtkhtml-3.18.3.ebuild:
  amd64 stable, bug #236971

  12 Aug 2008; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.18.2.ebuild:
  alpha/ia64/sparc stable wrt #229709

  10 Aug 2008; Markus Meier <maekke@gentoo.org> gtkhtml-3.18.2.ebuild:
  x86 stable, bug #229709

  30 Jul 2008; Brent Baude <ranger@gentoo.org> gtkhtml-3.18.2.ebuild:
  Marking gtkhtml-3.18.2 ppc stable for bug 229709

  26 Jul 2008; Olivier Crête <tester@gentoo.org> gtkhtml-3.18.2.ebuild:
  Stable on amd64, bug #229709

*gtkhtml-3.18.3 (01 Jul 2008)

  01 Jul 2008; Gilles Dartiguelongue <eva@gentoo.org>
  +gtkhtml-3.18.3.ebuild:
  bump to 3.18.3. Bug fixes and translation updates.

*gtkhtml-3.18.2 (26 May 2008)

  26 May 2008; Gilles Dartiguelongue <eva@gentoo.org> -gtkhtml-2.6.3.ebuild,
  -gtkhtml-3.14.3.ebuild, -gtkhtml-3.18.0.ebuild, +gtkhtml-3.18.2.ebuild:
  New version for GNOME-2.22.2. Bug fixes and translation updates. Cleaning
  up old revisions.

*gtkhtml-3.18.1 (07 Apr 2008)

  07 Apr 2008; Gilles Dartiguelongue <eva@gentoo.org>
  +gtkhtml-3.18.1.ebuild:
  bump to 3.18.1, one bug fix and two translation updates.

  27 Mar 2008; Gilles Dartiguelongue <eva@gentoo.org> gtkhtml-2.11.1.ebuild:
  fix typo on fbsd conditional, bug #215004

*gtkhtml-3.18.0 (23 Mar 2008)

  23 Mar 2008; Mart Raudsepp <leio@gentoo.org> +gtkhtml-3.18.0.ebuild:
  New version for GNOME-2.22. Lots of bug fixes, code modernization and
  improvements, etc

  17 Mar 2008; Mart Raudsepp <leio@gentoo.org> gtkhtml-3.2.5.ebuild,
  gtkhtml-3.6.2.ebuild, gtkhtml-3.14.3.ebuild, gtkhtml-3.14.3-r1.ebuild:
  Be compatible with newer glib and more future-proof in the old versions as
  well, bug 210657

  15 Mar 2008; Mart Raudsepp <leio@gentoo.org> gtkhtml-3.16.3.ebuild:
  Be compatible with newer glib, bug 210657

  07 Mar 2008; Christoph Mende <angelos@gentoo.org> gtkhtml-2.11.1.ebuild:
  Stable on amd64, bug #207154

  05 Mar 2008; Daniel Gryniewicz <dang@gentoo.org>
  +files/gtkhtml-3.12.3-allow-deprecated.patch, gtkhtml-3.12.3.ebuild:
  Don't set G_DISABLE_DEPRECATED; it breaks builds

  04 Feb 2008; Jeroen Roovers <jer@gentoo.org> gtkhtml-3.16.3.ebuild:
  Stable for HPPA (bug #208366).

  03 Feb 2008; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.16.3.ebuild:
  alpha/ia64/sparc stable wrt #208366

  02 Feb 2008; Chris Gianelloni <wolf31o2@gentoo.org> gtkhtml-3.16.3.ebuild:
  Stable on amd64 wrt bug #208366.

  01 Feb 2008; Brent Baude <ranger@gentoo.org> gtkhtml-3.16.3.ebuild:
  Marking gtkhtml-3.16.3 ppc64 and ppc stable for bug 208366

  01 Feb 2008; Christian Faulhammer <opfer@gentoo.org>
  gtkhtml-3.16.3.ebuild:
  stable x86, bug 208366

  30 Jan 2008; Christian Faulhammer <opfer@gentoo.org>
  +files/gtkhtml-3.2-gi18n.patch, gtkhtml-3.2.5.ebuild:
  apply patch for proper compilation on amd64. Contributed by Yu Yuwei
  <acevery AT gmail DOT com> and Ed Catmur <ed@ AT atmur DOT co DOT uk> in bug
  193458

  29 Jan 2008; Daniel Gryniewicz <dang@gentoo.org> gtkhtml-3.2.5.ebuild,
  gtkhtml-3.6.2.ebuild, gtkhtml-3.12.3.ebuild, gtkhtml-3.14.3.ebuild,
  gtkhtml-3.14.3-r1.ebuild, gtkhtml-3.16.1.ebuild, gtkhtml-3.16.2.ebuild,
  gtkhtml-3.16.3.ebuild:
  Add a slot dep on libsoup to prepare for the new 2.4 slot

  25 Jan 2008; Markus Rothe <corsair@gentoo.org> gtkhtml-2.11.1.ebuild:
  Stable on ppc64; bug #207154

  24 Jan 2008; nixnut <nixnut@gentoo.org> gtkhtml-2.11.1.ebuild:
  Stable on ppc wrt bug 207154

  24 Jan 2008; Jeroen Roovers <jer@gentoo.org> gtkhtml-2.11.1.ebuild:
  Stable for HPPA (bug #207154).

  23 Jan 2008; Markus Meier <maekke@gentoo.org> gtkhtml-2.11.1.ebuild:
  x86 stable, bug #207154

  23 Jan 2008; Raúl Porcel <armin76@gentoo.org> gtkhtml-2.11.1.ebuild:
  alpha/ia64/sparc stable wrt #207154

  14 Jan 2008; Gilles Dartiguelongue <eva@gentoo.org>
  -files/gtkhtml-fix_preedit.patch, -gtkhtml-3.0.10-r1.ebuild,
  -gtkhtml-3.2.4.ebuild, -gtkhtml-3.16.0.ebuild:
  cleanup old revisions and fix bug #193496

  11 Jan 2008; Ferris McCormick <fmccor@gentoo.org> ChangeLog:
  Fix digests for 2.11.1

  11 Jan 2008; Gilles Dartiguelongue <eva@gentoo.org> gtkhtml-2.11.1.ebuild:
  fix 2.11.1 $S (bug #205215)

  09 Jan 2008; Gilles Dartiguelongue <eva@gentoo.org> gtkhtml-2.6.3.ebuild,
  gtkhtml-2.11.1.ebuild, gtkhtml-3.0.10-r1.ebuild, gtkhtml-3.2.4.ebuild,
  gtkhtml-3.2.5.ebuild, gtkhtml-3.6.2.ebuild:
  fix quoting and some ebuild style in 2.11.1

*gtkhtml-3.16.3 (09 Jan 2008)

  09 Jan 2008; Gilles Dartiguelongue <eva@gentoo.org>
  +gtkhtml-3.16.3.ebuild:
  bump to 3.16.3

  01 Dec 2007; Markus Rothe <corsair@gentoo.org> gtkhtml-3.2.5.ebuild:
  Stable on ppc64

  29 Nov 2007; Jeroen Roovers <jer@gentoo.org> gtkhtml-3.16.1.ebuild:
  Stable for HPPA (bug #199740).

  26 Nov 2007; Markus Rothe <corsair@gentoo.org> gtkhtml-3.16.1.ebuild:
  Stable on ppc64; bug #199740

*gtkhtml-3.16.2 (26 Nov 2007)

  26 Nov 2007; Mart Raudsepp <leio@gentoo.org> +gtkhtml-3.16.2.ebuild:
  Version bump for bug, performance and memory leak fixes

  24 Nov 2007; Brent Baude <ranger@gentoo.org> gtkhtml-3.16.1.ebuild:
  Marking gtkhtml-3.16.1 ppc stable for bug 199740

  22 Nov 2007; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.16.1.ebuild:
  alpha/ia64/sparc stable wrt #199740

  21 Nov 2007; Dawid Węgliński <cla@gentoo.org> gtkhtml-3.16.1.ebuild:
  Stable on x86 (bug #199740)

  20 Nov 2007; Samuli Suominen <drac@gentoo.org> gtkhtml-3.16.1.ebuild:
  amd64 stable wrt #199740

  06 Nov 2007; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.14.3-r1.ebuild:
  sparc stable wrt #193339

*gtkhtml-3.16.1 (17 Oct 2007)

  17 Oct 2007; Daniel Gryniewicz <dang@gentoo.org> +gtkhtml-3.16.1.ebuild:
  Bump to 3.16.1
  	Fixed focus issue after selecting paragraph format (Milan Crha)

*gtkhtml-3.16.0 (12 Oct 2007)

  12 Oct 2007; Rémi Cardona <remi@gentoo.org> +gtkhtml-3.16.0.ebuild:
  new version for Gnome 2.20

  27 Sep 2007; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.14.3-r1.ebuild:
  alpha/ia64 stable wrt #193339

  25 Sep 2007; Jeroen Roovers <jer@gentoo.org> gtkhtml-3.14.3-r1.ebuild:
  Stable for HPPA (bug #193339).

  22 Sep 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  gtkhtml-3.14.3-r1.ebuild:
  ppc stable, bug #193339

  22 Sep 2007; Tom Gall <tgall@gentoo.org>
  gtkhtml-3.14.3-r1.ebuild:
  stable on ppc64

  21 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  gtkhtml-3.14.3-r1.ebuild:
  Stable on amd64 wrt bug #193339.

  21 Sep 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  gtkhtml-3.14.3-r1.ebuild:
  Stable on x86 wrt bug #193339.

*gtkhtml-2.11.1 (15 Sep 2007)

  15 Sep 2007; Gilles Dartiguelongue <eva@gentoo.org>
  +gtkhtml-2.11.1.ebuild:
  bump to 2.11.1

*gtkhtml-3.14.3-r1 (31 Aug 2007)

  31 Aug 2007; Mart Raudsepp <leio@gentoo.org>
  +files/gtkhtml-3.14.3-get_left_margin-fix.patch, -gtkhtml-3.0.10.ebuild,
  +gtkhtml-3.14.3-r1.ebuild:
  Add patch for a fix for get_left_margin related crashes

  29 Aug 2007; Doug Goldstein <cardoe@gentoo.org> gtkhtml-3.0.10-r1.ebuild:
  amd64 stable

  28 Aug 2007; Jeroen Roovers <jer@gentoo.org> gtkhtml-3.14.3.ebuild:
  Stable for HPPA (bug #185823).

  11 Aug 2007; Mart Raudsepp <leio@gentoo.org> -gtkhtml-3.10.2.ebuild,
  -gtkhtml-3.14.2.ebuild:
  Removing Gnome 2.14

  11 Aug 2007; Andrej Kacian <ticho@gentoo.org> gtkhtml-3.14.3.ebuild:
  Stable on x86, bug #185823.

  10 Aug 2007; Christoph Mende <angelos@gentoo.org> gtkhtml-3.14.3.ebuild:
  Stable on amd64 wrt bug #185823

  08 Aug 2007; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.14.3.ebuild:
  alpha/ia64 stable wrt #185823

  07 Aug 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  gtkhtml-3.14.3.ebuild:
  Stable on ppc wrt bug #185823.

  07 Aug 2007; Gustavo Zacarias <gustavoz@gentoo.org> gtkhtml-3.14.3.ebuild:
  Stable on sparc wrt #185823

  06 Aug 2007; Gilles Dartiguelongue <eva@gentoo.org> gtkhtml-2.6.3.ebuild:
  gnome-vfs is an optional dependency for testing purpose only, see bug #187865

*gtkhtml-3.14.3 (25 Jul 2007)

  25 Jul 2007; Mart Raudsepp <leio@gentoo.org> -gtkhtml-3.14.0.ebuild,
  -gtkhtml-3.14.1.ebuild, +gtkhtml-3.14.3.ebuild:
  Version bump

*gtkhtml-3.14.2 (27 Jun 2007)

  27 Jun 2007; <pva@gentoo.org> +gtkhtml-3.14.2.ebuild:
  Version bump to 3.14.2.

  11 Jun 2007; Daniel Gryniewicz <dang@gentoo.org> ChangeLog:
  Marked stable on amd64 for bug #171107

  02 Jun 2007; Brent Baude <ranger@gentoo.org> gtkhtml-3.12.3.ebuild:
  Marking gtkhtml-3.12.3 ppc stable for bug #171107

  31 May 2007; Jeroen Roovers <jer@gentoo.org> gtkhtml-3.12.3.ebuild:
  Stable for HPPA (bug #171107).

  31 May 2007; Daniel Gryniewicz <dang@gentoo.org> gtkhtml-3.12.3.ebuild:
  Marked stable on amd64 for bug #171107

  31 May 2007; Brent Baude <ranger@gentoo.org> gtkhtml-3.12.3.ebuild:
  Marking gtkhtml-3.12.3 ppc64 stable for bug #171107

  30 May 2007; Raúl Porcel <armin76@gentoo.org> gtkhtml-3.12.3.ebuild:
  alpha/ia64 stable wrt #171107

  29 May 2007; Andrej Kacian <ticho@gentoo.org> gtkhtml-3.12.3.ebuild:
  Stable on x86, bug #171107.

  29 May 2007; Gustavo Zacarias <gustavoz@gentoo.org> gtkhtml-3.12.3.ebuild:
  Stable on sparc wrt #171107

  28 May 2007; Mart Raudsepp <leio@gentoo.org> gtkhtml-3.12.3.ebuild:
  Fix tests

  04 May 2007; Roy Marples <uberlord@gentoo.org> gtkhtml-2.6.3.ebuild:
  Added ~x86-fbsd keyword

*gtkhtml-3.14.1 (16 Apr 2007)

  16 Apr 2007; Daniel Gryniewicz <dang@gentoo.org> +gtkhtml-3.14.1.ebuild:
  Bump to 3.14.1

  16 Apr 2007; Markus Rothe <corsair@gentoo.org> ChangeLog:
  Stable on ppc64

*gtkhtml-3.14.0 (27 Mar 2007)

  27 Mar 2007; Daniel Gryniewicz <dang@gentoo.org> +gtkhtml-3.14.0.ebuild:
  gnome 2.18.0

  10 Mar 2007; Roy Marples <uberlord@gentoo.org> gtkhtml-3.12.3.ebuild:
  Added ~x86-fbsd keyword.

  16 Feb 2007; Daniel Gryniewicz <dang@gentoo.org>
  -files/gtkhtml-3.0.7-libtool.patch, gtkhtml-3.0.10.ebuild,
  gtkhtml-3.0.10-r1.ebuild:
  Remove libtool patch; the bug it was working around is fixed; bug #165524

*gtkhtml-3.12.3 (07 Feb 2007)

  07 Feb 2007; Mart Raudsepp <leio@gentoo.org> -files/gtkhtml-gcc34.patch,
  -files/gtkhtml-gcc4.patch, -gtkhtml-2.6.0.ebuild, -gtkhtml-3.8.2.ebuild,
  -gtkhtml-3.12.1.ebuild, +gtkhtml-3.12.3.ebuild:
  Version bump. Punt some old versions and stale patches

  21 Jan 2007; Bryan Østergaard <kloeri@gentoo.org> gtkhtml-3.12.2.ebuild:
  Stable on IA64, bug 156662.

  18 Jan 2007; Jeroen Roovers <jer@gentoo.org> gtkhtml-3.12.2.ebuild:
  Stable for HPPA (bug #147751).

  14 Jan 2007; Bryan Østergaard <kloeri@gentoo.org> gtkhtml-3.12.2.ebuild:
  Stable on Alpha.

  21 Dec 2006; Markus Rothe <corsair@gentoo.org> gtkhtml-3.12.2.ebuild:
  Stable on ppc64; bug #156662

  21 Dec 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  -gtkhtml-1.1.10-r1.ebuild:
  gnome-1.x removal

  18 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org> gtkhtml-3.12.2.ebuild:
  Stable on sparc

  17 Dec 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  gtkhtml-3.12.2.ebuild:
  Stable on ppc wrt bug #156662.

  12 Dec 2006; Chris Gianelloni <wolf31o2@gentoo.org> gtkhtml-3.12.2.ebuild:
  Stable on amd64 wrt bug #156662.

  10 Dec 2006; Andrej Kacian <ticho@gentoo.org> gtkhtml-3.12.2.ebuild:
  Stable on x86, bug #156662.

*gtkhtml-3.12.2 (21 Nov 2006)

  21 Nov 2006; <dang@gentoo.org> +gtkhtml-3.12.2.ebuild:
  Bump to 3.12.2

  20 Oct 2006; Aron Griffis <agriffis@gentoo.org> gtkhtml-2.6.3.ebuild:
  Mark 2.6.3 stable on alpha

  14 Oct 2006; Thomas Cort <tcort@gentoo.org> gtkhtml-3.10.2.ebuild:
  Stable on alpha.

*gtkhtml-3.12.1 (12 Oct 2006)

  12 Oct 2006; Mart Raudsepp <leio@gentoo.org> -gtkhtml-3.12.0.ebuild,
  +gtkhtml-3.12.1.ebuild:
  New version for minor translation updates

  13 Sep 2006; Aron Griffis <agriffis@gentoo.org> gtkhtml-3.10.2.ebuild:
  Mark 3.10.2 stable on ia64. #139612

*gtkhtml-3.12.0 (07 Sep 2006)

  07 Sep 2006; Daniel Gryniewicz <dang@gentoo.org> +gtkhtml-3.12.0.ebuild:
  New version for gnome 2.16

  05 Sep 2006; Joshua Kinard <kumba@gentoo.org> gtkhtml-2.6.0.ebuild,
  gtkhtml-2.6.3.ebuild, gtkhtml-3.2.4.ebuild, gtkhtml-3.2.5.ebuild,
  gtkhtml-3.6.2.ebuild, gtkhtml-3.8.2.ebuild, gtkhtml-3.10.2.ebuild:
  Removing mips keywords as gnome is no longer supported on mips.

  16 Aug 2006; Markus Rothe <corsair@gentoo.org> gtkhtml-3.10.2.ebuild:
  Stable on ppc64

  23 Jul 2006; Daniel Gryniewicz <dang@gentoo.org> -gtkhtml-3.6.1.ebuild,
  -gtkhtml-3.8.1.ebuild, -gtkhtml-3.10.0.ebuild, -gtkhtml-3.10.1.ebuild:
  Clean up unnecessary versions

  17 Jul 2006; Daniel Gryniewicz <dang@gentoo.org> gtkhtml-3.10.2.ebuild:
  Marked stable on amd64 for bug #139612

  16 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  gtkhtml-3.10.2.ebuild:
  hppa stable, bug #139612

  14 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  gtkhtml-3.10.2.ebuild:
  ppc stable, bug #139612

  12 Jul 2006; Chris Gianelloni <wolf31o2@gentoo.org> gtkhtml-3.10.2.ebuild:
  Stable on x86 wrt bug #139612.

  10 Jul 2006; Gustavo Zacarias <gustavoz@gentoo.org> gtkhtml-3.10.2.ebuild:
  Stable on sparc wrt #139612

*gtkhtml-3.10.2 (27 Jun 2006)

  27 Jun 2006; Daniel Gryniewicz <dang@gentoo.org> +gtkhtml-3.10.2.ebuild:
  Bump for 2.14.2

  10 Jun 2006; John N. Laliberte <allanonjl@gentoo.org>
  gtkhtml-3.2.4.ebuild, gtkhtml-3.2.5.ebuild, gtkhtml-3.6.1.ebuild,
  gtkhtml-3.6.2.ebuild:
  hack the atoms to work with portage. we should reverse this at some point in
  the future when portage officially supports it.

*gtkhtml-3.10.1 (06 May 2006)

  06 May 2006; <dang@gentoo.org> +gtkhtml-3.10.1.ebuild:
  Bump for 2.14.1

  27 Apr 2006; Marien Zwart <marienz@gentoo.org>
  files/digest-gtkhtml-1.1.10-r1, files/digest-gtkhtml-2.6.0,
  files/digest-gtkhtml-2.6.3, files/digest-gtkhtml-3.0.10,
  files/digest-gtkhtml-3.0.10-r1, files/digest-gtkhtml-3.8.1,
  files/digest-gtkhtml-3.8.2, Manifest:
  Fixing SHA256 digest, pass four

  19 Mar 2006; John N. Laliberte <allanonjl@gentoo.org>
  gtkhtml-3.2.4.ebuild, gtkhtml-3.2.5.ebuild, gtkhtml-3.6.1.ebuild,
  gtkhtml-3.6.2.ebuild:
  fix atoms so we dont block the newer gtkhtml-3.10. fixes

*gtkhtml-3.10.0 (18 Mar 2006)

  18 Mar 2006; John N. Laliberte <allanonjl@gentoo.org>
  +gtkhtml-3.10.0.ebuild:
  new version. remove static useflag. if you unmask this, it will cause
  upgrade downgrade cycles since its in the same slot. (until we fix the deps
  see bug #126700)

  06 Feb 2006; Aron Griffis <agriffis@gentoo.org> gtkhtml-1.1.10-r1.ebuild:
  Mark 1.1.10-r1 stable on ia64

  03 Feb 2006; Guy Martin <gmsoft@gentoo.org> gtkhtml-3.8.2.ebuild:
  Stable on hppa.

  03 Feb 2006; Aron Griffis <agriffis@gentoo.org> gtkhtml-3.8.2.ebuild:
  Mark 3.8.2 stable on alpha

  02 Feb 2006; Aron Griffis <agriffis@gentoo.org> gtkhtml-3.8.2.ebuild:
  Mark 3.8.2 stable on ia64

  22 Jan 2006; Markus Rothe <corsair@gentoo.org> gtkhtml-3.8.2.ebuild:
  Stable on ppc64

  22 Jan 2006; <dang@gentoo.org> gtkhtml-3.8.2.ebuild:
  Marked stable on amd64 per bug #119634

  22 Jan 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  gtkhtml-3.8.2.ebuild:
  Marked ppc stable for bug #119634; Stabilize Gnome-2.12.2

  22 Jan 2006; Joshua Jackson <tsunam@gentoo.org> gtkhtml-3.8.2.ebuild:
  Stable on x86 for bug #119634; Stabilize Gnome-2.12.2

  20 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org> gtkhtml-3.8.2.ebuild:
  Stable on sparc wrt #119634

  12 Jan 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  gtkhtml-3.2.4.ebuild, gtkhtml-3.2.5.ebuild, gtkhtml-3.6.1.ebuild,
  gtkhtml-3.6.2.ebuild:
  Fixing libgtkhtml references

*gtkhtml-3.8.2 (12 Jan 2006)
*gtkhtml-3.8.1 (12 Jan 2006)
*gtkhtml-3.6.2 (12 Jan 2006)
*gtkhtml-3.6.1 (12 Jan 2006)
*gtkhtml-3.2.5 (12 Jan 2006)
*gtkhtml-3.2.4 (12 Jan 2006)
*gtkhtml-3.0.10-r1 (12 Jan 2006)
*gtkhtml-3.0.10 (12 Jan 2006)
*gtkhtml-2.6.3 (12 Jan 2006)
*gtkhtml-2.6.0 (12 Jan 2006)

  12 Jan 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  +files/libgtkhtml-2.2.0-alpha.patch, +files/gtkhtml-3.0.7-libtool.patch,
  +files/gtkhtml-3.0.10-no-extern-cluealigned.diff,
  +files/gtkhtml-3.2-i18n.patch, +files/gtkhtml-3.6.2-fbsd.patch,
  +files/gtkhtml-fix_preedit.patch, +gtkhtml-2.6.0.ebuild,
  +gtkhtml-2.6.3.ebuild, +gtkhtml-3.0.10.ebuild, +gtkhtml-3.0.10-r1.ebuild,
  +gtkhtml-3.2.4.ebuild, +gtkhtml-3.2.5.ebuild, +gtkhtml-3.6.1.ebuild,
  +gtkhtml-3.6.2.ebuild, +gtkhtml-3.8.1.ebuild, +gtkhtml-3.8.2.ebuild:
  Moving all gnome-extra/libgtkhtml to gnome-extra/gtkhtml

  12 Jan 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  gtkhtml-1.1.10-r1.ebuild:
  Slotting to 1 to allow movement into gnome-extra/libgtkhtml

  28 Nov 2005; Simon Stelling <blubb@gentoo.org> gtkhtml-1.1.10-r1.ebuild:
  fix multilib-strict issues

  26 Aug 2005; Aron Griffis <agriffis@gentoo.org> gtkhtml-1.1.10-r1.ebuild:
  add ~ia64

  10 Jun 2005; Mark Loeser <halcy0n@gentoo.org> +files/gtkhtml-gcc4.patch,
  gtkhtml-1.1.10-r1.ebuild:
  Patch to fix compilation with GCC4

  25 Aug 2004; Karol Wojtaszek <sekretarz@gentoo.org>
  gtkhtml-1.1.10-r1.ebuild:
  Fixing compile problems with gcc-34. Bug #52037

  25 Mar 2004; Martin Holzer <mholzer@gentoo.org> gtkhtml-1.1.10.ebuild:
  fixing depend. see 45343

*gtkhtml-1.1.10-r1 (06 Feb 2004)

  06 Feb 2004; <spider@gentoo.org> :
  move some things from RDEPEND to DEPEND (intltool, gettext).

  20 Jan 2004; <gustavoz@gentoo.org> gtkhtml-1.1.10.ebuild:
  stable on sparc

  09 Jan 2004; Aron Griffis <agriffis@gentoo.org> gtkhtml-1.1.10.ebuild:
  stable on alpha

  28 Sep 2003; Alastair Tse <liquidx@gentoo.org> gtkhtml-1.1.8.ebuild:
  change gal dep

  16 May 2003; Lars Weiler <pylon@gentoo.org> gtkhtml-1.1.10.ebuild:
  Set ppc in KEYWORDS

  29 Apr 2003; Alastair Tse <liquidx@gentoo.org> gtkhtml-1.1.10.ebuild:
  bumping to stable

  06 Apr 2003; Martin Schlemmer <azarah@gentoo.org> gtkhtml-1.1.10.ebuild:
  Fix borkage with "-nls" in USE.

*gtkhtml-1.1.10 (05 Apr 2003)

  06 Jul 2003; Guy Martin <gmsoft@gentoo.org> gtkhtml-1.1.10.ebuild :
  Added hppa to KEYWORDS.

  05 Apr 2003; Alastair Tse <liquidx@gentoo.org> gtkhtml-1.1.10.ebuild:
  version bump

*gtkhtml-3.0.1 (13 Mar 2003)
  
  21 Mar 2003; Alastair Tse <liquidx@gentoo.org> gtkhtml-3.0.1.ebuild:
  moved to gnome-extra/libgtkhtml-3.0.1

  19 Mar 2003; Alastair Tse <liquidx@gentoo.org> gtkhtml-3.0.1.ebuild:
  changed sources to use gnome.org rather than ximian.com

  13 Mar 2003; Alastair Tse <liquidx@gentoo.org> gtkhtml-3.0.1.ebuild:
  Version Bump and SLOTted.

*gtkhtml-1.1.8 (04 Mar 2003)

  28 Mar 2003; Aron Griffis <agriffis@gentoo.org> gtkhtml-1.1.8.ebuild:
  Add ~alpha to KEYWORDS

  21 Mar 2003; Jason Wever <weeve@gentoo.org> gtkhtml-1.1.8.ebuild:
  Changed ~sparc keyword to sparc.

  21 Mar 2003; Alastair Tse <liquidx@gentoo.org> gtkhtml-1.1.8.ebuild:
  marked as stable for x86

  19 Mar 2003; Alastair Tse <liquidx@gentoo.org> gtkhtml-1.1.8.ebuild:
  Force dependency on gal-0.23 to avoid depending on gal-1.99
  
  04 Mar 2003; Alastair Tse <liquidx@gentoo.org> gtkhtml-1.1.8.ebuild files/digest-gtkhtml-1.1.8 :
  version bump. bug #16816.

*gtkhtml-1.1.7-r1 (22 Dec 2002)

  04 Feb 2003; Seemant Kulleen <seemant@gentoo.org>
  gtkhtml-1.1.7-r1.ebuild :

  Changed to use einstall || die, thanks to a report from KG-awol in
  #gentoo on freenode.

  24 Jan 2003; foser <foser@gentoo.org> gtkhtml-1.1.7-r1.ebuild :
  Removed the evolution blocking dep (#13624)

  08 Jan 2003; Martin Schlemmer <azarah@gentoo.org> gtkhtml-1.1.7-r1.ebuild :
  Mark stable for x86.  Do not install if evo < 1.2.0 are installed.

  24 Dec 2002; Martin Schlemmer <azarah@gentoo.org> gtkhtml-1.1.7-r1.ebuild :
  Fix deps as well for gconf fix (should always depend on gconf)...

  22 Dec 2002; Stefan Jones <cretin@gento.org> :
  To fix a gconf include dir not found bug.

*gtkhtml-1.1.7 (17 Dec 2002)

  17 Dec 2002; Stefan Jones <cretin@gentoo.org> :
  New version.

*gtkhtml-1.1.6-r1 (08 Dec 2002)
                                                                                                   
  08 Dec 2002; Jack Morgan <jmorgan@gentoo.org> gtkhtml-1.0.4.ebuild, 
  gtkhtml-1.1.6.ebuild, gtkhtml-1.1.6-r1.ebuild : 
  Removed sparc64 keyword gtkhtml-1.0.4.ebuild
  Removed ~sparc64 keyword gtkhtml-1.1.6.ebuild, gtkhtml-1.1.6-r1.ebuild 

  08 Dec 2002; Brandon Low <lostlogic@gentoo.org> gtkhtml-1.1.6-r1.ebuild :
  Make USE="gnome" be ignored cuz it breaks.

*gtkhtml-1.1.6 (16 Nov 2002)

  18 Nov 2002; foser <foser@gentoo.org> gtkhtml-1.1.6.ebuild :
  Fixed gal dep (bug #10895)

  16 Nov 2002; Martin Schlemmer <azarah@gentoo.org> :
  Update version.

*gtkhtml-1.1.2 (28 Sep 2002)
  28 Sep 2002; Martin Schlemmer <azarah@gentoo.org> :
  New version.  Add gnome.org eclass support.  Libtoolize
  all of them.  It seems it should be compadible to 1.0,
  but we will need to do some work to get everything to
  find the headers (CFLAGS="$CFLAGS -I/usr/include/gtkhtml-1.1" ?).

*gtkhtml-1.0.4 (19 Aug 2002)

  31 Dec 2002; Jon Nall <nall@gentoo.org> gtkhtml-1.0.4.ebuild :
  added -Os to flags to change to -O2

  15 Dec 2002; Jon Nall <nall@gentoo.org> gtkhtml-1.0.4.ebuild :
  replace any optimization from -O3 to -O9 with -O2. this fixes bug
  #11703 where the gtkhtml-editor component asserts during spell
  check

  15 Sep 2002; Spider <<spider@gentoo.org>> :
  fix dependency on libglade

  19 Aug 2002; Gabriele Giorgetti <stroke@gentoo.org> gtkhtml-1.0.4.ebuild:
  New version, and lintool clean.


*gtkhtml-1.0.2-r2 (12 Jun 2002)
  11 Aug 2002; Spider <spider@gentoo.org > gtkhtml-1.0.2-r2.ebuild :
  fixed gconf and control center dependencies
  - I want the new dependency spec. now.

  12 Jun 2002; Gabriele Giorgetti <stroke@gentoo.org> gtkhtml-1.0.2-r2.ebuild
     
  Changed deps to work even if gnome2 packages are unmasked  

*gtkhtml-1.0.2-r1 (11 Apr 2002)

  11 Apr 2002; Seemant Kulleen <seemant@gentoo.org> gtkhtml-1.0.2-r1.ebuild
  files/digest-gtkhtml-1.0.2-r1

  bonobo support has been added back in.

*gtkhtml-1.0.2 (1 Apr 2002)

  1 Apr 2002; Seemant Kulleen <seemant@gentoo.org> gtkhtml-1.0.2.ebuild :

  Version bump, and dependency clean up.  Now bonobo and gconf support are
  compiled in based on the bonobo and gnome USE flags, respectively

*gtkhtml-1.0.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.