summaryrefslogtreecommitdiff
blob: d87eca5dc374e5b769c785de157adcd3c8252cf7 (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
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
# ChangeLog for x11-libs/gtk+
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/ChangeLog,v 1.318 2007/06/14 02:42:37 leio Exp $

*gtk+-2.10.13 (14 Jun 2007)

  14 Jun 2007; Mart Raudsepp <leio@gentoo.org> +gtk+-2.10.13.ebuild:
  Version bump for bug fixes. Should also fix our bug #180669

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

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

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

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

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

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

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

  27 May 2007; Joshua Kinard <kumba@gentoo.org> gtk+-2.10.11.ebuild:
  Stable on mips.

  26 May 2007; Daniel Gryniewicz <dang@gentoo.org> gtk+-2.10.11.ebuild:
  icon cache patch shouldn't have gone into .11

  22 May 2007; Daniel Gryniewicz <dang@gentoo.org>
  +files/gtk+-2.10.11-update-icon-subdirs.patch, gtk+-2.10.11.ebuild,
  gtk+-2.10.12.ebuild:
  Add patch to check intelligently for icon cache updates

*gtk+-2.10.12 (03 May 2007)

  03 May 2007; Saleem Abdulrasool <compnerd@gentoo.org>
  +gtk+-2.10.12.ebuild:
  Version bump from upstream with numerous bug fixes

  22 Mar 2007; Chris Gianelloni <wolf31o2@gentoo.org> gtk+-2.10.9.ebuild:
  Stable on alpha/ia64/ppc wrt bug #163678.

  15 Mar 2007; Markus Rothe <corsair@gentoo.org> gtk+-2.10.9.ebuild:
  Stable on ppc64; bug #163678

  15 Mar 2007; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.10.9.ebuild:
  Stable on sparc wrt #163678

  15 Mar 2007; Jeroen Roovers <jer@gentoo.org> gtk+-2.10.9.ebuild:
  Stable for HPPA (bug #163678).

*gtk+-2.10.11 (14 Mar 2007)

  14 Mar 2007; Daniel Gryniewicz <dang@gentoo.org> +gtk+-2.10.11.ebuild:
  Bump to 2.10.11
  	- Tons of bug fixes...

  14 Mar 2007; Simon Stelling <blubb@gentoo.org> gtk+-2.10.9.ebuild:
  stable on amd64; security bug 163678

  14 Mar 2007; Christian Faulhammer <opfer@gentoo.org> gtk+-2.10.9.ebuild:
  stable x86, bug 163678

  21 Feb 2007; Simon Stelling <blubb@gentoo.org> gtk+-2.10.6.ebuild,
  gtk+-2.10.9.ebuild:
  we don't need the use x86 && [[ LIBDIR == lib32 ]] hack anymore

*gtk+-2.10.9 (25 Jan 2007)

  25 Jan 2007; Mart Raudsepp <leio@gentoo.org> +gtk+-2.10.9.ebuild:
  Version bump

*gtk+-2.10.7-r1 (16 Jan 2007)

  16 Jan 2007; Mart Raudsepp <leio@gentoo.org>
  +files/gtk+-2.10.7-mozilla-dnd-fix.patch, -gtk+-2.10.7.ebuild,
  +gtk+-2.10.7-r1.ebuild:
  Fix drag and drop problem in mozilla products, bug 162362

*gtk+-2.10.7 (14 Jan 2007)

  14 Jan 2007; Mart Raudsepp <leio@gentoo.org>
  +files/gtk+-2.10.7-textview-fix.patch, +gtk+-2.10.7.ebuild:
  Version bump, also fix bug 158179

  10 Jan 2007; Mart Raudsepp <leio@gentoo.org> -gtk+-1.2.10-r11.ebuild:
  Remove old gtk1 revision

  09 Jan 2007; Mart Raudsepp <leio@gentoo.org>
  -files/gtk+-gdk-pixbuf-testfix.patch, -gtk+-2.8.8.ebuild,
  -gtk+-2.8.12.ebuild:
  Remove some old versions

  06 Jan 2007; Stephen P. Becker <geoman@gentoo.org> gtk+-1.2.10-r12.ebuild:
  stable on mips

  05 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> gtk+-2.8.8.ebuild,
  gtk+-2.8.12.ebuild, gtk+-2.8.19.ebuild, gtk+-2.8.20-r1.ebuild,
  gtk+-2.10.6.ebuild:
  Remove debug.eclass usage.

  09 Dec 2006; Bryan Østergaard <kloeri@gentoo.org> gtk+-2.10.6.ebuild:
  Stable on Alpha.

  07 Dec 2006; Mart Raudsepp <leio@gentoo.org> gtk+-2.10.6.ebuild:
  Fix the broken syntax in elog for the module rebuild suggestion, bug #157419

  07 Dec 2006; Doug Goldstein <cardoe@gentoo.org> gtk+-2.10.6.ebuild:
  Removed pdf USE flag check since cairo no longer has the pdf USE flag

  01 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.10.6.ebuild:
  Stable on hppa wrt #156572

  01 Dec 2006; Markus Rothe <corsair@gentoo.org> gtk+-2.10.6.ebuild:
  Stable on ppc64; bug #156572

  01 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.10.6.ebuild:
  Stable on sparc wrt #156572

  30 Nov 2006; Tobias Scherbaum <dertobi123@gentoo.org> gtk+-2.10.6.ebuild:
  ppc stable, bug #156572

  30 Nov 2006; Christian Faulhammer <opfer@gentoo.org> gtk+-2.10.6.ebuild:
  stable x86, bug #156572

  29 Nov 2006; Olivier Crête <tester@gentoo.org> gtk+-2.10.6.ebuild:
  Stable on amd64 for bugs #156572

  12 Nov 2006; Donnie Berkholz <dberkholz@gentoo.org>; gtk+-2.8.8.ebuild,
  gtk+-2.8.12.ebuild, gtk+-2.8.19.ebuild, gtk+-2.8.20-r1.ebuild,
  gtk+-2.10.6.ebuild:
  Remove warning about Nvidia drivers RENDER accel being broken (Andy Ritger,
  Nvidia). It's reported fixed on >=8756 and current stable is 8776.

  05 Nov 2006; Mart Raudsepp <leio@gentoo.org> gtk+-1.2.10-r12.ebuild:
  Fix automake dependency, bug #150503

  01 Nov 2006; Bryan Østergaard <kloeri@gentoo.org> gtk+-1.2.10-r12.ebuild:
  Stable on Alpha, bug 150355.

  20 Oct 2006; Simon Stelling <blubb@gentoo.org> Manifest:
  repoman broke the manifest

  20 Oct 2006; Simon Stelling <blubb@gentoo.org> gtk+-1.2.10-r12.ebuild:
  stable on amd64

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

  14 Oct 2006; Aron Griffis <agriffis@gentoo.org> gtk+-1.2.10-r12.ebuild:
  Mark 1.2.10-r12 stable on ia64. #150355

  11 Oct 2006; Stephanie Lockwood-Childs <wormo@gentoo.org>
  gtk+-1.2.10-r12.ebuild:
  stable on ppc (Bug #150355)

  10 Oct 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  gtk+-1.2.10-r12.ebuild:
  Stable on sparc wrt #150355

  09 Oct 2006; Jeroen Roovers <jer@gentoo.org> gtk+-1.2.10-r12.ebuild:
  Stable for HPPA (bug #150355).

*gtk+-2.10.6 (07 Oct 2006)

  07 Oct 2006; Mart Raudsepp <leio@gentoo.org>
  -files/gtk+-2.10.5-buildfile_typo.patch, -gtk+-2.10.4.ebuild,
  -gtk+-2.10.5.ebuild, +gtk+-2.10.6.ebuild:
  New version in the 2.10 series

  07 Oct 2006; Markus Rothe <corsair@gentoo.org> gtk+-1.2.10-r12.ebuild:
  Stable on ppc64; bug #150355

  07 Oct 2006; Andrej Kacian <ticho@gentoo.org> gtk+-1.2.10-r12.ebuild:
  Stable on x86, bug #150355.

*gtk+-1.2.10-r12 (07 Oct 2006)

  07 Oct 2006; Alin Nastac <mrness@gentoo.org>
  +files/gtk+-1.2.10-as-needed.patch, +gtk+-1.2.10-r12.ebuild:
  Strip unsupported languages from LINGUAS (#114797). Fix broken compilation
  of dependent packages when they're build with LDFLAGS=-Wl,--as-needed
  (#133819).

*gtk+-2.10.5 (02 Oct 2006)

  02 Oct 2006; Mart Raudsepp <leio@gentoo.org>
  +files/gtk+-2.10.5-buildfile_typo.patch, +gtk+-2.10.5.ebuild:
  Version bump for 2.10 series.

*gtk+-2.10.4 (28 Sep 2006)

  28 Sep 2006; Mart Raudsepp <leio@gentoo.org> -gtk+-2.10.2.ebuild,
  -gtk+-2.10.3.ebuild, +gtk+-2.10.4.ebuild:
  Add 2.10.4, and clean up older 2.10 versions

  25 Sep 2006; Daniel Gryniewicz <dang@gentoo.org> Manifest:
  Fix digest

  23 Sep 2006; Markus Rothe <corsair@gentoo.org> gtk+-2.8.19.ebuild,
  gtk+-2.8.20-r1.ebuild, gtk+-2.10.2.ebuild, gtk+-2.10.3.ebuild:
  Do not filter -mminimal-toc on ppc64, else it won't build

  15 Sep 2006; John N. Laliberte <allanonjl@gentoo.org> Manifest:
  fix digest, #147632

  14 Sep 2006; Daniel Gryniewicz <dang@gentoo.org>
  +files/gtk+-gdk-pixbuf-testfix.patch, +gtk+-2.8.8.ebuild:
  Oops, missed a hard dep on 2.8.8.  Thanks, mr-bones

  13 Sep 2006; Daniel Gryniewicz <dang@gentoo.org> gtk+-2.8.19.ebuild,
  gtk+-2.8.20-r1.ebuild, gtk+-2.10.2.ebuild, gtk+-2.10.3.ebuild:
  Only allow upstream-supported CFLAGS.  Bug #133469

  13 Sep 2006; Daniel Gryniewicz <dang@gentoo.org>
  -files/gtk+-gdk-pixbuf-testfix.patch, -gtk+-1.2.10-r10.ebuild,
  -gtk+-2.8.8.ebuild, -gtk+-2.8.17.ebuild, -gtk+-2.8.18.ebuild,
  -gtk+-2.8.20.ebuild:
  Clean up old versions

  12 Sep 2006; Daniel Gryniewicz <dang@gentoo.org> gtk+-2.10.3.ebuild:
  Remove monolithic X deps

*gtk+-2.10.3 (05 Sep 2006)

  05 Sep 2006; Daniel Gryniewicz <dang@gentoo.org> -gtk+-2.10.0.ebuild,
  -gtk+-2.10.1.ebuild, +gtk+-2.10.3.ebuild:
  Add 2.10.3, and clean up older 2.10 versions

  05 Sep 2006; Joshua Kinard <kumba@gentoo.org> gtk+-2.8.19.ebuild:
  Marked stable on mips.

  04 Sep 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  gtk+-1.2.10-r11.ebuild:
  Stable on sparc

  27 Aug 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  gtk+-1.2.10-r11.ebuild:
  Add an if block around the warning for gtkrc as per bug #141253

*gtk+-2.10.2 (26 Aug 2006)

  26 Aug 2006; Saleem Abdulrasool <compnerd@gentoo.org> +gtk+-2.10.2.ebuild:
  version bump from upstream

  16 Aug 2006; Markus Rothe <corsair@gentoo.org> gtk+-2.8.19.ebuild:
  Stable on ppc64

  26 Jul 2006; Stefan Schweizer <genstef@gentoo.org> gtk+-2.10.1.ebuild:
  Pango 1.12 is enough thanks to Todd Merrill <todd.merrill@comcast.net> in
  bug 141797

*gtk+-2.10.1 (24 Jul 2006)

  24 Jul 2006; Stefan Schweizer <genstef@gentoo.org> +gtk+-2.10.1.ebuild:
  version bump

  19 Jul 2006; Olivier Crête <tester@gentoo.org> files/digest-gtk+-2.8.19:
  Fix digest

*gtk+-2.8.20-r1 (18 Jul 2006)

  18 Jul 2006; John N. Laliberte <allanonjl@gentoo.org>
  +gtk+-2.8.20-r1.ebuild, gtk+-2.10.0.ebuild:
  we now create a gtkrc file with the fallback theme set to gnome.  fixes #133241

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

*gtk+-2.8.20 (17 Jul 2006)

  17 Jul 2006; Daniel Gryniewicz <dang@gentoo.org> +gtk+-2.8.20.ebuild:
  Bump to 2.8.20 and fix bug #140222

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

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

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

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

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

  08 Jul 2006; Stefan Schweizer <genstef@gentoo.org> gtk+-2.10.0.ebuild:
  Add elog message about rebuilding the gtk-engines

*gtk+-2.10.0 (05 Jul 2006)

  05 Jul 2006; Stefan Schweizer <genstef@gentoo.org> +gtk+-2.10.0.ebuild:
  version bump thanks to Milosz Kosobucki <mikomek@poczta.onet.pl> and Josef
  Reidinger <queen.killer@seznam.cz> in bug 139195

  25 Jun 2006; Javier Villavicencio <the_paya@gentoo.org>
  gtk+-2.8.19.ebuild:
  Add ~x86-fbsd keyword.

*gtk+-2.8.19 (16 Jun 2006)

  16 Jun 2006; Leonardo Boshell <leonardop@gentoo.org> +gtk+-2.8.19.ebuild:
  New release.

*gtk+-2.8.18 (26 May 2006)

  26 May 2006; John N. Laliberte <allanonjl@gentoo.org> -gtk+-2.8.11.ebuild,
  -gtk+-2.8.13.ebuild, -gtk+-2.8.16.ebuild, +gtk+-2.8.18.ebuild:
  new version, cleanup old versions.

*gtk+-2.8.17 (01 May 2006)

  01 May 2006; Daniel Gryniewicz <dang@gentoo.org> +gtk+-2.8.17.ebuild:
  Bump for 2.14.1

  21 Apr 2006; Thomas Cort <tcort@gentoo.org> gtk+-2.8.12.ebuild:
  Stable on alpha wrt Bug #126321.

  21 Apr 2006; Marinus Schraal <foser@gentoo.org> gtk+-2.8.16.ebuild :
  Always enable png, so we actually can display icons

  15 Apr 2006; Stephen P. Becker <geoman@gentoo.org> gtk+-2.8.12.ebuild:
  stable on mips

  12 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> gtk+-1.2.10-r11.ebuild:
  Add ~x86-fbsd keyword.

  07 Apr 2006; Diego Pettenò <flameeyes@gentoo.org> gtk+-2.8.13.ebuild,
  gtk+-2.8.16.ebuild:
  Restrict confcache on gtk+ as it might cause spurious failures during build
  (not during configure).

  24 Mar 2006; Aron Griffis <agriffis@gentoo.org> gtk+-2.8.12.ebuild:
  Mark 2.8.12 stable on ia64

  20 Mar 2006; Seemant Kulleen <seemant@gentoo.org> gtk+-2.8.16.ebuild:
  fix the make check stage which wants to run a gtk+ app (so run it in a
  virtual X display).

  19 Mar 2006; Markus Rothe <corsair@gentoo.org> gtk+-2.8.12.ebuild:
  Stable on ppc64

  18 Mar 2006; Olivier Crête <tester@gentoo.org> gtk+-2.8.12.ebuild:
  Stable on amd64 per bug #126321

  17 Mar 2006; Chris Gianelloni <wolf31o2@gentoo.org> gtk+-2.8.12.ebuild:
  Stable on x86 wrt bug #126321.

  17 Mar 2006; Tobias Scherbaum <dertobi123@gentoo.org> gtk+-2.8.12.ebuild:
  Stable gnome-2.12.3 for ppc, bug #126321

  16 Mar 2006; John N. Laliberte <allanonjl@gentoo.org> gtk+-2.8.16.ebuild:
  add missing inherit on autotools eclass. fixes #126455

*gtk+-2.8.16 (16 Mar 2006)

  16 Mar 2006; John N. Laliberte <allanonjl@gentoo.org> -gtk+-2.8.15.ebuild,
  +gtk+-2.8.16.ebuild:
  new version

  14 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.8.12.ebuild:
  Stable on hppa

*gtk+-2.8.15 (13 Mar 2006)

  13 Mar 2006; Saleem Abdulrasool <compnerd@gentoo.org> +gtk+-2.8.15.ebuild:
  Version bump from upstream. allanonjl dropped disable_icons_smooth_alpha
  patch, and bumped glib dependency to 2.10.1.

  13 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.8.12.ebuild:
  Stable on sparc

*gtk+-2.8.13 (03 Mar 2006)

  03 Mar 2006; Saleem Abdulrasool <compnerd@gentoo.org> +gtk+-2.8.13.ebuild:
  Version bump from upstream

  20 Feb 2006; Saleem Abdulrasool <compnerd@gentoo.org>
  gtk+-1.2.10-r11.ebuild:
  Fixing mod-z deps as per bug #123453

  12 Feb 2006; John N. Laliberte <allanonjl@gentoo.org> gtk+-2.8.12.ebuild:
  add AT_M4DIR to fix compilation when user does not have gtk-doc installed

*gtk+-2.8.12 (12 Feb 2006)

  12 Feb 2006; John N. Laliberte <allanonjl@gentoo.org> +gtk+-2.8.12.ebuild:
  new version. this includes the patch to fix the slow repainting with ATI
  cards. remove smoothscroll patch, use eautoreconf.

  12 Feb 2006; Donnie Berkholz <spyderous@gentoo.org>;
  gtk+-1.2.10-r10.ebuild, gtk+-1.2.10-r11.ebuild, gtk+-2.6.10-r1.ebuild:
  Fix for modular X.

  03 Feb 2006; Aron Griffis <agriffis@gentoo.org> gtk+-2.8.8.ebuild:
  Mark 2.8.8 stable on ia64

  03 Feb 2006; Guy Martin <gmsoft@gentoo.org> gtk+-2.8.8.ebuild:
  Stable on hppa.

*gtk+-2.8.11 (29 Jan 2006)

  29 Jan 2006; John N. Laliberte <allanonjl@gentoo.org> -gtk+-2.8.9.ebuild,
  -gtk+-2.8.10.ebuild, +gtk+-2.8.11.ebuild:
  version bump. cleanup old ebuilds. remove abicheck.sh patch since it is now
  applied upstream.

  14 Jan 2006; <dang@gentoo.org> +files/gtk+-2.8.10-xinerama.patch,
  gtk+-2.8.10.ebuild:
  Make xinerama support optional. Bug #118744

  13 Jan 2006; Fernando J. Pereda <ferdy@gentoo.org> gtk+-2.8.8.ebuild:
  Stable on alpha wrt bug #117505

*gtk+-2.8.10 (13 Jan 2006)

  13 Jan 2006; John N. Laliberte <allanonjl@gentoo.org>
  +files/gtk+-gdk-pixbuf-testfix.patch, gtk+-2.8.8.ebuild,
  gtk+-2.8.9.ebuild, +gtk+-2.8.10.ebuild:
  apply patch to fix #118722 . Attached patch to gnome bug #317961

  08 Jan 2006; Tobias Scherbaum <dertobi123@gentoo.org> gtk+-2.8.8.ebuild:
  ppc stable, bug #117505

  04 Jan 2006; Mark Loeser <halcy0n@gentoo.org> gtk+-2.8.8.ebuild:
  Stable on x86; bug #117505

  03 Jan 2006; Luis Medinas <metalgod@gentoo.org> gtk+-2.8.8.ebuild:
  Stable on amd64. For bug #117505.

  03 Jan 2006; Markus Rothe <corsair@gentoo.org> gtk+-2.8.8.ebuild:
  Stable on ppc64

  03 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.8.8.ebuild:
  Stable on sparc wrt #117505

  02 Jan 2006; John N. Laliberte <allanonjl@gentoo.org>
  -files/gtk+-2.8.6-freebsd.patch, -gtk+-2.6.8.ebuild,
  -gtk+-2.8.6-r1.ebuild, -gtk+-2.8.7.ebuild, gtk+-2.8.8.ebuild,
  gtk+-2.8.9.ebuild:
  cleanup old builds, add informational message about RenderAccel bug, bump
  atk dep to fix #111741

*gtk+-2.8.9 (13 Dec 2005)

  13 Dec 2005; <dang@gentoo.org> +gtk+-2.8.9.ebuild:
  New upstream version

  13 Dec 2005; Seemant Kulleen <seemant@gentoo.org> gtk+-1.2.10-r11.ebuild:
  modular X deps, committing Donnie's fixes in bug #115232

*gtk+-2.8.8 (01 Dec 2005)

  01 Dec 2005; <dang@gentoo.org> +gtk+-2.8.8.ebuild:
  New upstream release

  20 Nov 2005; Hardave Riar <hardave@gentoo.org> gtk+-2.6.10-r1.ebuild:
  Stable on mips, bug #112608.

*gtk+-2.8.7 (18 Nov 2005)

  18 Nov 2005; Leonardo Boshell <leonardop@gentoo.org> +gtk+-2.8.7.ebuild:
  New version. Dropped patches that have been integrated upstream.

*gtk+-2.8.6-r1 (15 Nov 2005)
*gtk+-2.6.10-r1 (15 Nov 2005)

  15 Nov 2005; Leonardo Boshell <leonardop@gentoo.org>
  +files/gtk+-2-xpm_loader.patch, -gtk+-2.6.10.ebuild,
  +gtk+-2.6.10-r1.ebuild, -gtk+-2.8.6.ebuild, +gtk+-2.8.6-r1.ebuild:
  Added patch to fix a probem inside gdk-pixbuf regarding the XPM loader
  (bug #112608). Marked 2.6.10-r1 stable on all arches that reported back
  successful testing.

  11 Nov 2005; Michael Hanselmann <hansmi@gentoo.org> gtk+-2.6.10.ebuild:
  Stable on hppa, ppc.

  04 Nov 2005; <dang@gentoo.org> gtk+-2.8.6.ebuild:
  Make sure cairo was built with X. bug 111483

  02 Nov 2005; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.6.10.ebuild:
  Stable on sparc

  01 Nov 2005; John N. Laliberte <allanonjl@gentoo.org> gtk+-2.6.10.ebuild:
  stable on x86

  31 Oct 2005; Leonardo Boshell <leonardop@gentoo.org> gtk+-2.6.10.ebuild,
  gtk+-2.8.6.ebuild:
  Fix logic around GTK2_CONFDIR to make the postinst hook work on binary
  packages.

  27 Oct 2005; Diego Pettenò <flameeyes@gentoo.org>
  +files/gtk+-2.8.6-freebsd.patch, gtk+-2.8.6.ebuild:
  Added patch to compile on FreeBSD as per bug #109519.

  22 Oct 2005; Yuta SATOH <nigoro@gentoo.org> gtk+-2.6.8.ebuild,
  gtk+-2.6.10.ebuild:
  also fixes #109089 of 2.6.x

  19 Oct 2005; Yuta SATOH <nigoro@gentoo.org> gtk+-2.8.6.ebuild:
  Fixes #109089 by not applying the patch which fixes the problem of the
  cursor key for ppc64.

  10 Oct 2005; Hardave Riar <hardave@gentoo.org> gtk+-2.6.8.ebuild:
  Stable on mips.

*gtk+-2.8.6 (08 Oct 2005)

  08 Oct 2005; Leonardo Boshell <leonardop@gentoo.org> -gtk+-2.8.4.ebuild,
  +gtk+-2.8.6.ebuild:
  New version.

*gtk+-2.8.4 (27 Sep 2005)

  27 Sep 2005; Leonardo Boshell <leonardop@gentoo.org>
  -files/gtk+-2.8.3-misc_fixes.patch, -gtk+-2.8.3-r1.ebuild,
  +gtk+-2.8.4.ebuild:
  New version.

  17 Sep 2005; Aron Griffis <agriffis@gentoo.org> gtk+-2.6.8.ebuild:
  Mark 2.6.8 stable on alpha

*gtk+-2.8.3-r1 (04 Sep 2005)

  04 Sep 2005; Leonardo Boshell <leonardop@gentoo.org>
  +files/gtk+-2.8.3-misc_fixes.patch, -gtk+-2.8.3.ebuild,
  +gtk+-2.8.3-r1.ebuild:
  Avoid passing --disable-debug. Added patch with various bug fixes from
  upstream CVS repository.

  03 Sep 2005; Michael Hanselmann <hansmi@gentoo.org> gtk+-2.6.8.ebuild:
  Stable on ppc.

  03 Sep 2005; Markus Rothe <corsair@gentoo.org> gtk+-2.6.8.ebuild:
  Stable on ppc64

*gtk+-2.8.3 (01 Sep 2005)

  01 Sep 2005; Leonardo Boshell <leonardop@gentoo.org>
  -files/gtk+-2.8.0-dep_checks.patch, -files/gtk+-2.8.0-gdk_fix.patch,
  -gtk+-2.8.0-r2.ebuild, -gtk+-2.8.2.ebuild, +gtk+-2.8.3.ebuild:
  New version.

  31 Aug 2005; Herbie Hopkins <herbs@gentoo.org> gtk+-2.6.8.ebuild:
  Stable on amd64.

  29 Aug 2005; Guy Martin <gmsoft@gentoo.org> gtk+-2.6.8.ebuild:
  Stable on hppa.

  26 Aug 2005; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.6.8.ebuild:
  Stable on sparc

*gtk+-2.8.2 (25 Aug 2005)

  25 Aug 2005; Doug Goldstein <cardoe@gentoo.org> +gtk+-2.8.2.ebuild:
  rev bump. modular X depends. clean up old cruft from the 2.0.x days.

  25 Aug 2005; Aron Griffis <agriffis@gentoo.org> gtk+-2.6.8.ebuild:
  stable on ia64

  25 Aug 2005; Leonardo Boshell <leonardop@gentoo.org>
  gtk+-2.6.8.ebuild:
  Stable on x86.

  23 Aug 2005; Aron Griffis <agriffis@gentoo.org> gtk+-2.6.7.ebuild:
  stable on ia64

  19 Aug 2005; Leonardo Boshell <leonardop@gentoo.org> gtk+-2.6.10.ebuild,
  gtk+-2.8.0-r2.ebuild:
  Fix invocation of epatch (bug #103042).

*gtk+-2.8.0-r2 (19 Aug 2005)

  19 Aug 2005; Leonardo Boshell <leonardop@gentoo.org>
  +files/gtk+-2.8.0-dep_checks.patch, +files/gtk+-2.8.0-gdk_fix.patch,
  +gtk+-2.8.0-r2.ebuild:
  Patches from upstream CVS to fix gdk warnings and related side-effects, as
  wall as sanitizing some dependencies (bug #102854).

*gtk+-2.6.10 (18 Aug 2005)

  18 Aug 2005; Leonardo Boshell <leonardop@gentoo.org> +gtk+-2.6.10.ebuild:
  New version from the stable branch.

*gtk+-2.8.0-r1 (17 Aug 2005)

  17 Aug 2005; Herbie Hopkins <herbs@gentoo.org>
  +files/gtk+-2.8.0-multilib.patch, +gtk+-2.8.0-r1.ebuild:
  Updated the multilib patch for 2.8, bug 101289

*gtk+-2.8.0 (15 Aug 2005)

  15 Aug 2005; Leonardo Boshell <leonardop@gentoo.org> gtk+-2.8.0.ebuild:
  New version.

*gtk+-2.7.4 (31 Jul 2005)

  31 Jul 2005; Marinus Schraal <foser@gentoo.org> gtk+-2.7.4.ebuild :
  New release

  12 Jul 2005; Stephen P. Becker <geoman@gentoo.org> gtk+-2.6.7.ebuild:
  stable on mips

*gtk+-2.6.8 (22 Jun 2005)

  22 Jun 2005; Marinus Schraal <foser@gentoo.org> gtk+-2.6.8.ebuild :
  New release

  12 Jun 2005; Olivier Crête <tester@gentoo.org> gtk+-2.6.7.ebuild:
  Stable on amd64

  12 Jun 2005; Tobias Scherbaum <dertobi123@gentoo.org> gtk+-2.6.7.ebuild:
  Stable on ppc.

  12 Jun 2005; Bryan Østergaard <kloeri@gentoo.org> gtk+-2.6.7.ebuild:
  Stable on alpha.

  10 Jun 2005; Rene Nussbaumer <killerfox@gentoo.org> gtk+-2.6.7.ebuild:
  Stable on hppa.

  06 Jun 2005; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.6.7.ebuild:
  Stable on sparc

  06 Jun 2005; Markus Rothe <corsair@gentoo.org> gtk+-2.6.7.ebuild:
  Stable on ppc64

  13 May 2005; Rene Nussbaumer <killerfox@gentoo.org> gtk+-2.6.4-r1.ebuild:
  stable on hppa

  28 Apr 2005; Bryan Østergaard <kloeri@gentoo.org> gtk+-2.6.4-r1.ebuild:
  Stable on alpha + ia64.

  20 Apr 2005; Michael Hanselmann <hansmi@gentoo.org> gtk+-2.6.4-r1.ebuild:
  Stable on ppc.

  20 Apr 2005; Herbie Hopkins <herbs@gentoo.org> gtk+-2.6.4-r1.ebuild:
  Stable on amd64.

  18 Apr 2005; Herbie Hopkins <herbs@gentoo.org> gtk+-2.6.7.ebuild:
  Minor multilib cleanup.

*gtk+-2.6.7 (16 Apr 2005)

  16 Apr 2005; foser <foser@gentoo.org> gtk+-2.6.7.ebuild :
  Updated scroll patch (#85663)

  09 Apr 2005; Markus Rothe <corsair@gentoo.org> gtk+-2.6.4-r1.ebuild:
  Stable on ppc64

  07 Apr 2005; Simon Stelling <blubb@gentoo.org> gtk+-2.4.14.ebuild:
  stable on amd64

  02 Apr 2005; Stephen P. Becker <geoman@gentoo.org> gtk+-2.6.4-r1.ebuild:
  stable on mips

  30 Mar 2005; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.6.4-r1.ebuild:
  Stable on sparc

*gtk+-2.6.4-r1 (30 Mar 2005)

  30 Mar 2005; foser <foser@gentoo.org> gtk+-2.6.4-r1.ebuild :
  Add bmp corruption header fix (#86979)
  Change location of epunt_cxx so it has some effect

  21 Mar 2005; Jeremy Huddleston <eradicator@gentoo.org>
  gtk+-1.2.10-r11.ebuild:
  Use the right toolchain compiler.

  09 Mar 2005; Mike Gardiner <obz@gentoo.org> gtk+-2.4.14.ebuild:
  Keyworded ppc

  08 Mar 2005; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.6.2.ebuild:
  Stable on sparc

  07 Mar 2005; Markus Rothe <corsair@gentoo.org> gtk+-2.6.2.ebuild:
  Stable on ppc64

  03 Mar 2005; Sven Wegener <swegener@gentoo.org> :
  Added missing digest entries.

  13 Feb 2005; Bryan Østergaard <kloeri@gentoo.org> gtk+-2.4.14.ebuild:
  Stable on alpha.

*gtk+-2.6.2 (05 Feb 2005)

  05 Feb 2005; Joe McCann <joem@gentoo.org> +gtk+-2.6.2.ebuild:
  New version. File selector and dialogue patches applied upstream and no
  longer needed

*gtk+-2.6.1-r2 (03 Feb 2005)

  03 Feb 2005; Joe McCann <joem@gentoo.org>
  +files/gtk+-2.6.1-gtk_dialog.patch, +gtk+-2.6.1-r2.ebuild:
  Adding upstream patch from bug 80262 as reported by compnerd. Should fix
  gtk+ apps crashing when focus is called on lable widgets.

  22 Jan 2005; Markus Rothe <corsair@gentoo.org> gtk+-2.6.1-r1.ebuild:
  Added append-flags -mminimal-toc for ppc64 to let it compile

*gtk+-2.6.1-r1 (17 Jan 2005)

  17 Jan 2005; foser <foser@gentoo.org> gtk+-2.6.1-r1.ebuild :
  Add upstream patch for http://bugzilla.gnome.org/show_bug.cgi?id=164290
  block pixmap engine, partially fixes #77791

  13 Jan 2005; Mike Doty <kingtaco@gentoo.org> gtk+-2.6.1.ebuild:
  amd64 patch update by seemant

  12 Jan 2005; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.4.14.ebuild:
  Stable on sparc

*gtk+-2.6.1 (12 Jan 2005)

  12 Jan 2005; foser <foser@gentoo.org> gtk+-2.6.1.ebuild :
  New release, closes a whole lot of empty bugs

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

*gtk+-2.4.9-r2 (26 Dec 2004)

  26 Dec 2004; Markus Rothe <corsair@gentoo.org>
  +files/gtk+-2.4.9-ppc64.patch, gtk+-2.4.14.ebuild, +gtk+-2.4.9-r2.ebuild:
  I've added the patch from bug #64359, which fixes a cursor key problem on
  ppc64 to 2.4.9-r2 and 2.4.14. I marked 2.4.9-r2 stable on ppc64 and will
  remove this version when 2.4.14 will be marked stable. Credits go to Yuta
  SATOH.

  24 Dec 2004; Bryan Østergaard <kloeri@gentoo.org> gtk+-2.4.13-r1.ebuild:
  Stable on alpha.

  23 Dec 2004; Guy Martin <gmsoft@gentoo.org> gtk+-2.4.13-r1.ebuild:
  Stable on hppa.

  21 Dec 2004; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.4.13-r1.ebuild:
  Stable on sparc

  20 Dec 2004; Dylan Carlson <absinthe@gentoo.org> gtk+-2.4.13-r1.ebuild:
  Stable on amd64.

  19 Dec 2004; Mike Gardiner <obz@gentoo.org> gtk+-2.4.13-r1.ebuild:
  Keyworded x86 and ppc for GNOME 2.8.1

*gtk+-2.4.14 (11 Dec 2004)

  11 Dec 2004; Mike Gardiner <obz@gentoo.org> +gtk+-2.4.14.ebuild:
  New version of gtk+

*gtk+-2.4.13-r1 (21 Nov 2004)

  21 Nov 2004; foser <foser@gentoo.org> gtk+-2.4.13-r1.ebuild :
  Add revised smoothscroll patch (#71807), moved patch to mirrors

  02 Nov 2004; Malcolm Lashley <malc@gentoo.org> :
  Fix missing digest - bug #69859

*gtk+-2.4.13 (02 Nov 2004)

  02 Nov 2004; foser <foser@gentoo.org> gtk+-2.4.13.ebuild :
  Not so fresh release (#64913)
  Add correct automake dep (#65796)

  14 Oct 2004; Mamoru KOMACHI <usata@gentoo.org> gtk+-1.2.10-r11.ebuild:
  Removed ~ppc-macos keyword until bug #57677 is solved.

  11 Oct 2004; Mamoru KOMACHI <usata@gentoo.org> gtk+-1.2.10-r11.ebuild:
  Added to ~ppc-macos. This closes bug #62069.

  09 Oct 2004; Tom Gall <tgall@gentoo.org> gtk+-2.4.9-r1.ebuild:
  stable on ppc64, bug #64230

  01 Oct 2004; Stephen P. Becker <geoman@gentoo.org> gtk+-2.4.4.ebuild,
  gtk+-2.4.9-r1.ebuild:
  stable on mips

  20 Sep 2004; Bryan Østergaard,,, <kloeri@gentoo.org> gtk+-2.4.9-r1.ebuild:
  Stable on alpha, bug 64240.

  20 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.4.9-r1.ebuild:
  Stable on sparc wrt #64230

  20 Sep 2004; <SeJo@gentoo.org> gtk+-2.4.9-r1.ebuild:
  marked ppc gsla bug: 64230

*gtk+-2.4.9-r1 (20 Sep 2004)

  20 Sep 2004; foser <foser@gentoo.org> gtk+-2.4.9-r1.ebuild, gtk+-2.4.9-ico_xpm_secure.patch :
  Add security fix for the ico & xpm loaders (#64230)

  30 Aug 2004; Tom Gall <tgall@gentoo.org> gtk+-2.4.4.ebuild:
  only stable version of gtk+-2.4.3 for ppc64 was removed,
  marking 2.4.4 stable on an emergancy basis

*gtk+-2.4.9 (29 Aug 2004)

  29 Aug 2004; foser <foser@gentoo.org. gtk+-2.4.9.ebuild :
  New release

  24 Aug 2004; Bryan Østergaard <kloeri@gentoo.org> gtk+-2.4.4.ebuild:
  Stable on alpha.

  22 Aug 2004; Travis Tilley <lv@gentoo.org> gtk+-2.4.4.ebuild,
  gtk+-2.4.7.ebuild:
  made arch specific config file patch apply on x86 when CONF_LIBDIR=lib32. this
  is just to make building the emul-linux-x86-gtklibs package easier, and has no
  effect on x86 users in general.

  22 Aug 2004; Travis Tilley <lv@gentoo.org> gtk+-2.4.4.ebuild,
  gtk+-2.4.7.ebuild:
  added a patch that puts the config files for gtk in an arch specific directory
  on amd64 so that the 32bit and 64bit versions dont clash

*gtk+-2.4.7 (19 Aug 2004)

  19 Aug 2004; foser <foser@gentoo.org> gtk+-2.4.7.ebuild :
  New release
  Add smoothscroll patch from gnome bugzilla for testing
  
  07 Aug 2004; Travis Tilley <lv@gentoo.org> gtk+-2.4.4.ebuild:
  stable on amd64

  07 Aug 2004; Michael Hanselmann <hansmi@gentoo.org> gtk+-1.2.10-r11.ebuild:
  Added gnuconfig to replace config.* on Mac OS X and added to ~macos.

  05 Aug 2004; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.4.4.ebuild:
  Stable on sparc

  05 Aug 2004; Guy Martin <gmsoft@gentoo.org> gtk+-2.4.4.ebuild:
  Stable on hppa.

  31 Jul 2004; <spider@gentoo.org> gtk+-2.4.4.ebuild:
  stable on x86 for gnome 2.6.2

  27 Jul 2004; <agriffis@gentoo.org> gtk+-1.2.10-r11.ebuild,
  gtk+-2.4.1.ebuild:
  stable on alpha (1.2.10-r11) and ia64 (1.2.10-r11, 2.4.1)

  26 Jul 2004; Tom Gall <tgall@gentoo.org> gtk+-1.2.10-r11.ebuild:
  stable on ppc64

  20 Jul 2004; Tom Gall <tgall@gentoo.org> gtk+-2.4.3-r1.ebuild:
  stable on ppc64, bug #57154

*gtk+-2.4.4 (11 Jul 2004)

  11 Jul 2004; <spider@gentoo.org> +gtk+-2.4.4.ebuild:
  Versionbump.

*gtk+-2.4.3-r1 (06 Jul 2004)

  06 Jul 2004; Martin Schlemmer <azarah@gentoo.org>
  +files/gtk+-2.4.x-filesel-navbuttons.patch.bz2, +gtk+-2.4.3-r1.ebuild:
  Add fileselect dialog patch from Ximian/Suse.

  02 Jul 2004; Tom Gall <tgall@gentoo.org> gtk+-1.2.10-r11.ebuild:
  fix repoman dep (imlib)

  28 Jun 2004; Tom Gall <tgall@gentoo.org> gtk+-2.4.3.ebuild:
  ~ppc64 , bug #54792

  23 Jun 2004; Aron Griffis <agriffis@gentoo.org> gtk+-1.2.10-r10.ebuild:
  QA - fix use invocation

  19 Jun 2004; Gustavo Zacarias <gustavoz@gentoo.org> gtk+-2.4.1.ebuild:
  sparc stable

  16 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> gtk+-2.4.1.ebuild:
  Stable on alpha.

*gtk+-2.4.3 (15 Jun 2004)

  15 Jun 2004; foser <foser@gentoo.org> gtk+-2.4.3.ebuild :
  New release (#53700)

  03 Jun 2004; Stephen P. Becker <geoman@gentoo.org> gtk+-2.4.1.ebuild:
  Stable on mips.

  01 Jun 2004; Travis Tilley <lv@gentoo.org> gtk+-2.4.1.ebuild:
  stable on amd64

*gtk+-2.4.1 (04 May 2004)

  04 May 2004; foser <foser@gentoo.org> gtk+-2.4.1.ebuild :
  New release, add patch & dep to have a default icon theme available to the chooser

  26 Apr 2004; Stephen P. Becker <geoman@gentoo.org> gtk+-2.2.4-r1.ebuild:
  Marked stable on mips.

  22 Apr 2004; Stephen P. Becker <geoman@gentoo.org> gtk+-2.4.0-r1.ebuild:
  Breaks GNOME 2.4, so returned to ~mips.

  14 Apr 2004; Stephen P. Becker <geoman@gentoo.org> gtk+-1.2.10-r10.ebuild,
  gtk+-1.2.10-r11.ebuild, gtk+-2.4.0-r1.ebuild:
  Marked stable on mips.

*gtk+-2.4.0-r1 (09 Apr 2004)

  09 Apr 2004; Travis Tilley <lv@gentoo.org> gtk+-2.4.0-r1.ebuild,
  files/gtk+-2.4.0-uimanager-zero-becomes-null.patch:
  added patch to fix a crash in epiphany that may or may not occur only on
  amd64. for more information on this bug, please refer to
  http://bugzilla.gnome.org/show_bug.cgi?id=138997

  30 Mar 2004; Donnie Berkholz <spyderous@gentoo.org>; gtk+-2.2.4-r1.ebuild,
  gtk+-2.4.0.ebuild:
  Change x11-base/xfree dependency to virtual/x11. Everyone on xfree should be
  on 4.3.0-r3 or greater by now, so #20407 shouldn't be an issue.

*gtk+-2.4.0 (18 Mar 2004)

  18 Mar 2004; foser <foser@gentoo.org> gtk+-2.4.0.ebuild :
  New release
  Remove incorporated patches
  Removed wm patch, it's broken
  Correct license
  
  06 Mar 2004; Stephen P. Becker <geoman@gentoo.org> gtk+-1.2.10-r10.ebuild,
  gtk+-2.2.4-r1.ebuild:
  Added ~mips keyword.

*gtk+-1.2.10-r11 (05 Feb 2004)

  05 Feb 2004; <spider@gentoo.org> gtk+-1.2.10-r11.ebuild:
  Minor change to DEPEND, adding an RDEPEND to get intltool out of the RDEPEND
  set. this deserves a revbump only to make sure that packages get updated.

  07 Dec 2003; foser <foser@gentoo.org> gtk+-1.2.10-r10.ebuild :
  Fix sysconfdir to /etc to fix gtkrc problems described in #34279

  14 Nov 2003; Aron Griffis <agriffis@gentoo.org> gtk+-1.2.10-r10.ebuild:
  Stable on ia64

  08 Nov 2003; Todd Sunderlin <todd@gentoo.org> gtk+-2.2.4-r1.ebuild:
  added sparc keyword

  20 Oct 2003; Aron Griffis <agriffis@gentoo.org> gtk+-2.2.4-r1.ebuild:
  Stable on alpha

  08 Oct 2003; foser <foser@gentoo.org> gtk+-2.2.4-r1.ebuild :
  Added patch to fix notification area, submitted by <pat@engsoc.org>

  06 Oct 2003; Mike Gardiner <obz@gentoo.org> gtk+-2.2.4-r1.ebuild:
  Marked stable on x86

  23 Sep 2003; Bartosch Pixa <darkspecter@gentoo.org> gtk+-2.2.4-r1.ebuild:
  set ppc in keywords

*gtk+-2.2.4-r1 (10 Sep 2003)

  16 Nov 2003; Guy Martin <gmsoft@gentoo.org> gtk+-2.2.4-r1.ebuild :
  Added hppa to KEYWORDS.

  10 Sep 2003; foser <foser@gentoo.org> gtk+-2.2.4-r1.ebuild :
  Remove USE debug support, the not hardcoded disabling of debugging support 
  should fix a lot of problems. Rev bump to propagate.

*gtk+-2.2.4 (07 Sep 2003)

  07 Sep 2003; foser <foser@gentoo.org> gtk+-2.2.4.ebuild :
  New bugfix release

*gtk+-2.2.3 (27 Aug 2003)

  27 Aug 2003; foser <foser@gentoo.org> gtk+-2.2.3.ebuild :
  New version

  25 Jul 2003; foser <foser@gentoo.org> gtk+-2.2.2-r1.ebuild :
  Fix xinput (#25203)

  02 Jul 2003; Jason Wever <weeve@gentoo.org> gtk+-2.2.2-r1.ebuild:
  Changed sparc keyword back to ~sparc to fix broken dependencies.

*gtk+-2.2.2-r1 (12 Jun 2003)

  01 Jul 2003; Guy Martin <gmsoft@gentoo.org> gtk+-2.2.2-r1.ebuild :
  Added ~hppa to KEYWORDS.

  01 Jul 2003; Todd Sunderlin <todd@gentoo.org> gtk+-2.2.2-r1.ebuild :
  set stable on sparc

  16 Jun 2003; foser <foser@gentoo.org> gtk+-2.2.2-r1.ebuild, gtk+-2.2.2-gtkwidget_pixmap_expose.patch :
  Replace reverting patch with correct upstream patch for #22576

  12 Jun 2003; foser <foser@gentoo.org> gtk+-2.2.2-r1.ebuild :
  Added patch to 'fix' pixbuf corruption issues (#22576)

  10 Jun 2003; Luca Barbato <lu_zero@gentoo.org> gtk+-2.2.2.ebuild :
  Removed an unnecessary ppc patch.

*gtk+-2.2.2 (10 Jun 2003)

  10 Jun 2003; foser <foser@gentoo.org> gtk+-2.2.2.ebuild :
  New version, enabled xinput support (#20407) which needs a recent xfree
  Added GDK_USE_XFT as environment var as suggested by utx
  
  30 May 2003; Luca Barbato <lu_zero@gentoo.org> gtk+-2.2.1.ebuild:
  Added ppc to keywords.

*gtk+-2.2.1-r1 (11 Apr 2003)

  19 Apr 2003; foser <foser@gentoo.org> gtk+-2.2.1-r1.ebuild :
  Make sure we enable wm patch (better late then never)

  11 Apr 2003; foser <foser@gentoo.org> gtk+-2.2.1-r1.ebuild :
  Added gtktreeview patch for eclipse (#19084)

*gtk+-1.2.10-r10 (08 Mar 2003)

  01 Jul 2003; Guy Martin <gmsoft@gentoo.org> gtk+-1.2.10-r10.ebuild :
  Marked stable on hpp.

  04 Apr 2003; Jason Wever <weeve@gentoo.org> gtk+-1.2.10-r10.ebuild:
  Changed ~sparc keyword to sparc.

  30 Mar 2003; Aron Griffis <agriffis@gentoo.org> gtk+-1.2.10-r10.ebuild:
  Mark stable on alpha

  16 Mar 2003; Mark Guertin <gerk@gentoo.org> gtk+-1.2.10-r10.ebuild:
  set ppc in keywords

  16 Mar 2003; Guy Martin <gmsoft@gentoo.org> gtk+-1.2.10-r10.ebuild :
  Added ~hppa to keywords.

  09 Mar 2003; Martin Schlemmer <azarah@gentoo.org> gtk+-1.2.10-r10.ebuild :
  Change to fully use epatch, and also make use of libtool eclass.

  08 Mar 2003; foser <foser@gentoo.org> gtk+-1.2.10-r10.ebuild :
  New patch to fix locale problems that have been bugging us for a long time
  Patch done by Stanislav Brabec <sbrabec@suse.cz> 
  Related gentoo bugs #10529, #16883

*gtk+-2.2.1 (04 Feb 2003)

  01 Jul 2003; Guy Martin <gmsoft@gentoo.org> gtk+-2.2.1.ebuild :
  Added hppa to KEYWORDS.

  04 Mar 2003; Jason Wever <weeve@gentoo.org> gtk+-2.2.1.ebuild:
  Added sparc to keywords.

  01 Mar 2003; Jason Wever <weeve@gentoo.org> gtk+-2.2.1.ebuild:
  Added ~sparc to keywords.

  21 Feb 2003; Aron Griffis <agriffis@gentoo.org> gtk+-2.2.1.ebuild :
  Mark stable on alpha

  13 Feb 2003; Jon Nall <nall@gentoo.org> gtk+-2.2.1.ebuild :
  bumped pango version to 1.1.3 since the gtk+ configure script
  barfs if xft-2 is installed, but pango <1.1.3 is installed

  07 Feb 2003; foser <foser@gentoo.org> gtk+-2.2.1.ebuild :
  Added alpha blended disabled icons patch

  05 Feb 2003; Jon Nall <nall@gentoo.org> gtk+--2.2.1.ebuild :
  added patch to fix endian problem for 15/24 bit displays

  04 Feb 2003; Spider <spider@gentoo.org> gtk+-2.2.1.ebuild :
  bumped version

  16 Jan 2003; foser <foser@gentoo.org> gtk+-2.2.0.ebuild :
  Added some info about rebuilding gtk theme engines after an emerge

  04 Jan 2003; Rodney Rees <manson@gentoo.org> gtk+-2.0.6-r3.ebuild :
  changed ~sparc to sparc

  01 Jan 2003; Aron Griffis <agriffis@gentoo.org> gtk+-2.0.9.ebuild gtk+-2.2.0.ebuild:
  Reverted previous change on gtk+-2.0.9 since it sounds like 2.2.0 works on
  Alpha.  Added ~alpha to KEYWORDS on 2.2.0

  31 Dec 2002; Aron Griffis <agriffis@gentoo.org> gtk+-2.0.9.ebuild :
  glib-2.0.7 is broken on alpha, so change the dependency here to version
  2.0.6 which works fine with gtk+-2.0.9

  24 Dec 2002; Martin Schlemmer <azarah@gentoo.org> gtk+-2.2.0.ebuild :
  Fix to depend on glib-2.2.0, else it fails with unresolved symbols ..

*gtk+-2.2.0 (22 Dec 2002)

  04 Feb 2003; Spider <spider@gentoo.org> gtk+*.ebuild:
  changed all DEBUG to DEBUGBUILD


  22 Dec 2002; foser <foser@gentoo.org> gtk+-2.2.0.ebuild :
  New version

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
  21 Nov 2002; Martin Schlemmer <azarah@gentoo.org> gtk+-2.1.2.ebuild,
  gtk+-2.0.9.ebuild :

  Turn of --export-symbols-regex for now, since it removes
  the wrong symbols.  Patch from Redhat.

*gtk+-2.0.9 (20 Nov 2002)

  04 Feb 2003; Spider <spider@gentoo.org> gtk+*.ebuild:
  changed all DEBUG to DEBUGBUILD

  20 Nov 2002; foser <foser@gentoo.org> gtk+-2.0.9.ebuild :
  New version, mainly fixes a bug which made metacity crash

*gtk-2.0.8-r1 (15 Nov 2002)

  04 Feb 2003; Spider <spider@gentoo.org> gtk+*.ebuild:
  changed all DEBUG to DEBUGBUILD

  15 Nov 2002; Seemant Kulleen <seemant@gentoo.org> gtk+-2.0.8-r1.ebuild
  files/digest-gtk+-2.0.8-r1 :

  DirectFB patched version of it.

*gtk+-2.1.2 (12 Nov 2002)

  04 Feb 2003; Spider <spider@gentoo.org> gtk+*.ebuild:
  changed all DEBUG to DEBUGBUILD

  29 Nov 2002; Jon Nall <nall@gentoo.org> gtk+-2.1.2.ebuild :
  added ~ppc to KEYWORDS

  12 Nov 2002; foser <foser@gentoo.org> gtk+-2.1.2.ebuild :
  GNOME 2.1.2 release

*gtk+-2.0.8 (09 Nov 2002)

  04 Feb 2003; Spider <spider@gentoo.org> gtk+*.ebuild:
  changed all DEBUG to DEBUGBUILD

  12 Nov 2002; L. Boshell <leonardop@gentoo.org> : Removed directfb dep
  since it wasn't being used.

  11 Nov 2002; Spider <spider@gentoo.org> gtk+-2.0.8.ebuild :
  stabilized for x86
  
  09 Nov 2002; Spider <spider@gentoo.org> gtk+-2.0.8.ebuild 
  files/digest-gtk+-2.0.8 : New version fixes the patch needed for last version
  also fixed the dependencies, after 2.0.7-r1.
  
*gtk+-2.0.7-r1 (05 Nov 2002)

  04 Feb 2003; Spider <spider@gentoo.org> gtk+*.ebuild:
  changed all DEBUG to DEBUGBUILD

  09 Nov 2002; foser <foser@gentoo.org> gtk+-2.0.7-r1 :
  Added sgmltools-lite dep, to fix documentation problems

  05 Nov 2002; foser <foser@gentoo.org> gtk+-2.0.7-r1 :
  Added a patch to fix problems with gdk-pixbuf (bug #10261)

*gtk+-2.0.7 (04 Nov 2002)

  04 Feb 2003; Spider <spider@gentoo.org> gtk+*.ebuild:
  changed all DEBUG to DEBUGBUILD

  04  Nov 2002; Spider <spider@gentoo.org> gtk+-2.0.4.ebuild 
  files/digest-gtk+-2.0.4: added the latest stable release, bugfixes and nothing
  more. Ripped out the directfb (wow, it survived more than 10 days! )

  
*gtk+-2.1.1 (27 Oct 2002)

  04 Feb 2003; Spider <spider@gentoo.org> gtk+*.ebuild:
  changed all DEBUG to DEBUGBUILD

  27 Oct 2002; foser <foser@gentoo.org> gtk+-2.1.1.ebuild :
  gnome 2.1

*gtk+-2.0.6-r3 (21 Oct 2002)

  04 Feb 2003; Spider <spider@gentoo.org> gtk+*.ebuild:
  changed all DEBUG to DEBUGBUILD

  21 Oct 2002; Seemant Kulleen <seemant@gentoo.org> gtk+-2.0.6-r3.ebuild
  files/digest-gtk+-2.0.6-r3 :

  Added the DirectFB patch (finally!)

*gtk+-2.0.6-r2 (10 Oct 2002)
  
  04 Feb 2003; Spider <spider@gentoo.org> gtk+*.ebuild:
  changed all DEBUG to DEBUGBUILD

  10 Oct 2002; foser <foser@gentoo.org> gtk+-2.0.6-r2.ebuild :
  Bumped revision to get the safety replacement added in r1 spread  

*gtk+-1.2.10-r9 (26 Sep 2002)
 
  16 Mar 2003; Guy Martin <gmsoft@gentoo.org> gtk+-1.2.10-r9.ebuild :
  Added hppa to keywords.
 
  04 Feb 2003; Spider <spider@gentoo.org> gtk+*.ebuild:
  changed all DEBUG to DEBUGBUILD

  26 Sep 2002; Spider <spider@gentoo.org> gtk+-1.2.10-r9.ebuild :
  This build enables minimal debugging for all users, this will fix some unexpected crashes in amongst other things xchat.

*gtk+-2.0.6-r1 (04 Jul 2002)

  04 Feb 2003; Spider <spider@gentoo.org> gtk+*.ebuild:
  changed all DEBUG to DEBUGBUILD

  08 Oct 2002; foser <foser@gentoo.org> gtk+-2.0.6-r1.ebuild :
  Replace -O3 with -O2 to be on the safe side (bug 8762)

  04 Jul 2002; Spider <spider@gentoo.org> gtk+-2.0.6-r1.ebuild :
  remove unnecessary debugging
  remove bad parts from SRC_URI  (broken use)
  changed configure some

*gtk+-2.0.6 (04 Jul 2002)

  04 Feb 2003; Spider <spider@gentoo.org> gtk+*.ebuild:
  changed all DEBUG to DEBUGBUILD

  04 Jul 2002; Gabriele Giorgetti <stroke@gentoo.org> gtk+-2.0.6.ebuild:

  New version.

*gtk+-2.0.5-r2 (15 Jul 2002)

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

  Added PPC to KEYWORDS.

  15 Jul 2002; Seemant Kulleen <seemant@gentoo.org> gtk+-2.0.5-r2.ebuild
  files/digest-gtk+-2.0.5-r2 :

  directfb enabled GTK is now a patch on our mirrors instead of being a
  separate tarball.  This makes the behaviour better for portage's server
  side caching.

*gtk+-2.0.5-r1 (03 Jul 2002)

  03 Jul 2002; Seemant Kulleen <seemant@gentoo.org> gtk+-2.0.5-r1.ebuild
  files/digest-gtk+-2.0.5-r1 :

  The DirectFB tarball was replaced on the directfb.org server with one that
  has bugfixes in it.  No need for paranoia, the directfb folks have
  verified it for us.  Thanks to: gentoo@tuurlijk.eu.org (Tuurlijk!) in bug
  #4451 for spotting it.

*gtk+-2.0.5 (17 Jun 2002)

  17 Jun 2002; Seemant Kulleen <seemant@gentoo.org> gtk+-2.0.5.ebuild
  files/digest-gtk+-2.0.5 :

  Version bump for both regular GTK+2 and GTK+DirectFB

*gtk+-2.0.3-r1 (8 Jun 2002)

  8 Jun 2002; Seemant Kulleen <seemant@gentoo.org> gtk+-2.0.3-r1.ebuild
  files/digest-gtk+-2.0.3-r1 :

  Option for directfb-patched gtk libs.  This actually gets and compiles a
  separate source tarball from directfb.org

*gtk+-2.0.3 (28 May 2002)                                                    
  28 May 2002; Spider <spider@gentoo.org> gtk+-2.0.3.ebuild:
  new stable branch  

*gtk+-1.2.10-r8 (27 May 2002)

  27 May 2002; Bruce A. Locke <blocke@shivan.org> gtk+-1.2.10-r8.ebuild:

  Ximian patch set and redhat/mdk patch merged

*gtk+-2.0.2-r6 (27 May 2002)                                                    
  27 May 2002; Spider <spider@gentoo.org> gtk+-2.0.2-r6.ebuild:
  fix for the use png bug, not libtoolized  

*gtk+-2.0.2-r5 (23 May 2002)                                                    
  23 May 2002; Spider <spider@gentoo.org> gtk+-2.0.2-r5.ebuild:
  seems people who installed with the libtoolized version of gtk+ fails
  when installing gtk+ again.  Test this version if it works (read
libtoolize)
	

*gtk+-2.0.2-r4 (22 May 2002)                                                    
  22 May 2002; Spider <spider@gentoo.org> gtk+-2.0.2-r4.ebuild:

  lintool check
  debug info back inside
  remove libtoolize since it breaks things
  singlethread make since this uses cludgy code 


gtk+-1.2.10-r7 (14 Apr 2002)
  14 Apr 2002; M.Schlemmer <azarah@gentoo.org>; gtk+-1.2.10-r7.ebuild :
  Libtoolize.

*gtk+-2.0.2-r2 (24 Apr 2002) 
  24 Apr 2002; Spider <spider@gentoo.org>; gtk+-2.0.2-r2.ebuild:
  Libtoolize 

*gtk+-2.0.2-r2 (12 Apr 2002)
  12 Apr 2002; Spider <spider@gentoo.org>; gtk+-2.0.2-r2.ebuild: 
  Update so a user can disable png, jpeg, tiff support for gtk+
  This will so break things if they disable it though ;)


gtk+-2.0.2-r1
  11 Apr 2002; Spider <spider@gentoo.org>; gtk+-1.2.10-r4.ebuild gtk+-1.2.10-r5.ebuild gtk+-1.2.10-r6.ebuild gtk+-1.2.10-r7.ebuild gtk+-2.0.2-r1.ebuild :
  Update all glib dependencies to use glib-1.2*  in preparation of
unmasking the glib-2.0.1 packages


*gtk+-2.0.2 (11 Apr 2002)
  11 Apr 2002; Spider <spider@gentoo.org>; gtk+-2.0.2-r1.ebuild:
  New release with new api
  USE="doc" will build api documentation
  needs libpng 1.2.1 and is masked because of that.
  needs glib 2.0 as well


*gtk+-1.2.10-r7 (23 Mar 2002)

  23 Mar 2002; Seemant Kulleen <seemant@gentoo.org> gtk+-1.2.10-r7.ebuild :

  Man pages are now in LFH compliant /usr/share/man tree.  Changes submitted by
  Matthew Kennedy.

*gtk+-1.2.10-r6 (21 Mar 2002)

  21 Mar 2002; Seemant Kulleen <seemant@gentoo.org> gtk+-1.2.10-r6.ebuild :

  Changed the html documentation step to not be gzipped.  This is a small
  enough change that it shouldn't matter to have users remerge it.

*gtk+-1.2.10-r6 (13 Mar 2002)

  13 Mar 2002; Bruce A. Locke <blocke@shivan.org> gtk+-1.2.10-r6.ebuild :

  gtk+ 1.2.10-r6 now includes patches from Ximian Gnome that help make
  the gtk+ file picker dialog a little more user friendly :)
  
*gtk+-1.2.10-r5 (10 Mar 2002)

  10 Mar 2002; Bruce A. Locke <blocke@shivan.org> gtk+-1.2.10-r5.ebuild :

  NLS fixes submitted by seemant@rocketmail.com (Seemant Kulleen)