summaryrefslogtreecommitdiff
blob: 9e2faee5287e5aa2376b06da041b159080fe0ed5 (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
# ChangeLog for dev-util/cmake
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.274 2014/03/25 09:05:03 nimiux Exp $

  25 Mar 2014; Chema Alonso <nimiux@gentoo.org> cmake-2.8.12.2.ebuild:
  Stable for amd64 wrt bug #504794

  22 Mar 2014; Jeroen Roovers <jer@gentoo.org> cmake-2.8.12.2.ebuild:
  Stable for HPPA (bug #504794).

  05 Feb 2014; Michael Palimaka <kensington@gentoo.org>
  +files/cmake-2.8.12.2-hppa-bootstrap.patch, cmake-2.8.12.2.ebuild:
  Backport patch from upstream fixing linking during bootstrap on HPPA wrt bug
  #499922.

*cmake-2.8.12.2 (29 Jan 2014)

  29 Jan 2014; Chris Reffett <creffett@gentoo.org> +cmake-2.8.12.2.ebuild:
  Version bump

  27 Jan 2014; Akinori Hattori <hattya@gentoo.org> cmake-2.8.11.2.ebuild:
  ia64 stable wrt bug #488586

*cmake-2.8.12.1-r4 (24 Jan 2014)

  24 Jan 2014; Chris Reffett <creffett@gentoo.org> +cmake-2.8.12.1-r4.ebuild,
  -cmake-2.8.12.1-r2.ebuild, -cmake-2.8.12.1-r3.ebuild:
  Revision bump. Fix installation of bash completion files wrt bug 498056,
  credit to Alex Turbov for the fix. Drop old.

  15 Jan 2014; Jeroen Roovers <jer@gentoo.org>
  files/cmake-2.8.11.2-hppa-bootstrap.patch:
  Fix HPPA bootstrap/linker patch to properly handle C++ code by Guy Martin.

*cmake-2.8.12.1-r3 (10 Jan 2014)

  10 Jan 2014; Michael Palimaka <kensington@gentoo.org>
  +cmake-2.8.12.1-r3.ebuild:
  Install vim syntax files unconditionally wrt bug #497528.

  03 Jan 2014; Matt Turner <mattst88@gentoo.org> cmake-2.8.11.2.ebuild:
  alpha stable, bug 488586.

*cmake-2.8.12.1-r2 (14 Dec 2013)

  14 Dec 2013; Johannes Huber <johu@gentoo.org> +cmake-2.8.12.1-r2.ebuild,
  +files/cmake-2.8.12.1-FindFreetype.patch, -cmake-2.8.12.1-r1.ebuild:
  Revision bump add patch by Julian Ospald <hasufell@gentoo.org> to unbreak find
  logic for media-libs/freetype-2.5.1, bug #493656.

  30 Nov 2013; Johannes Huber <johu@gentoo.org> cmake-2.8.11.2.ebuild:
  x86 stable wrt bug #488586

  30 Nov 2013; Jeroen Roovers <jer@gentoo.org> cmake-2.8.11.2.ebuild:
  Stable for HPPA (bug #488586).

  30 Nov 2013; Johannes Huber <johu@gentoo.org>
  +files/cmake-2.8.11.2-hppa-bootstrap.patch, cmake-2.8.11.2.ebuild:
  Add upstream patch to fix linking while bootstrap on hppa fixes bug #473276.

*cmake-2.8.12.1-r1 (13 Nov 2013)

  13 Nov 2013; Johannes Huber <johu@gentoo.org> +cmake-2.8.12.1-r1.ebuild,
  +files/cmake-2.8.12.1-FindImageMagick.patch, -cmake-2.8.12.1.ebuild:
  Revision bump adds patch by Arfrever Frehtes Taifersar Arahesis
  <arfrever.fta@gmail.com>. Patch is for compatibility with media-
  gfx/imagemagick[q32] and media-gfx/imagemagick[q64] wrt bug #491124.

*cmake-2.8.12.1 (12 Nov 2013)

  12 Nov 2013; Johannes Huber <johu@gentoo.org> +cmake-2.8.12.1.ebuild,
  -cmake-2.8.12.ebuild:
  Version bump wrt bug #490194.

  28 Oct 2013; Markus Meier <maekke@gentoo.org> cmake-2.8.11.2.ebuild:
  arm stable, bug #488586

  26 Oct 2013; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.11.2.ebuild:
  Stable for amd64, wrt bug #488586

  21 Oct 2013; Fabian Groffen <grobian@gentoo.org> cmake-2.8.12.ebuild:
  Fix compilation on Solaris

*cmake-2.8.12 (21 Oct 2013)

  21 Oct 2013; Chris Reffett <creffett@gentoo.org> +cmake-2.8.12.ebuild:
  Move from KDE overlay wrt bug 487604

  19 Oct 2013; Johannes Huber <johu@gentoo.org> -cmake-2.8.11.1.ebuild,
  -files/cmake-2.8.10-FindPythonLibs.patch, -files/cmake-2.8.10-tests.patch,
  -files/cmake-2.8.10.2-qt5.patch:
  Remove old.

*cmake-2.8.11.2 (11 Sep 2013)

  11 Sep 2013; Michael Palimaka <kensington@gentoo.org> +cmake-2.8.11.2.ebuild:
  Version bump wrt bug #483150.

  10 Jul 2013; Johannes Huber <johu@gentoo.org>
  files/cmake-2.8.10.2-FindPythonLibs.patch:
  Format patch with dos2unix, bug #476064.

  14 Jun 2013; Michael Palimaka <kensington@gentoo.org> cmake-2.8.11.1.ebuild:
  Fix tests by David Leverton <levertond@googlemail.com> wrt bug #467720.

  11 Jun 2013; Fabian Groffen <grobian@gentoo.org> cmake-2.8.11.1.ebuild:
  Add dropped darwin-isysroot patch to fix compilation, bug #472922

  10 Jun 2013; Johannes Huber <johu@gentoo.org> cmake-2.8.11.1.ebuild:
  Drop qt4 default enabled wrt bug #472876.

*cmake-2.8.11.1 (09 Jun 2013)

  09 Jun 2013; Johannes Huber <johu@gentoo.org> +cmake-2.8.11.1.ebuild,
  +files/cmake-2.8.11-FindBLAS.patch,
  +files/cmake-2.8.11-FindBoost-python.patch,
  +files/cmake-2.8.11-FindImageMagick.patch,
  +files/cmake-2.8.11-more-no_host_paths.patch:
  Version bump by several people in kde overlay. Fixes bug #436540.

  21 May 2013; Johannes Huber <johu@gentoo.org> -cmake-2.8.10.2-r1.ebuild,
  -cmake-2.8.9.ebuild, -files/cmake-2.6.3-darwin-bundle.patch,
  -files/cmake-2.8.1-libform.patch, -files/cmake-2.8.4-FindPythonLibs.patch,
  -files/cmake-2.8.8-tests.patch, -files/cmake-2.8.9-more-no_host_paths.patch:
  Remove old.

  20 May 2013; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.10.2-r2.ebuild:
  Stable for s390, wrt bug #464648

  08 May 2013; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.10.2-r2.ebuild:
  Stable for sh, wrt bug #464648

  07 May 2013; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.10.2-r2.ebuild:
  Stable for ppc64, wrt bug #464648

  07 May 2013; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.10.2-r2.ebuild:
  Stable for sparc, wrt bug #464648

  07 May 2013; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.10.2-r2.ebuild:
  Stable for ia64, wrt bug #464648

  05 May 2013; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.10.2-r2.ebuild:
  Stable for alpha, wrt bug #464648

  05 May 2013; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.10.2-r2.ebuild:
  Stable for arm, wrt bug #464648

  03 May 2013; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.10.2-r2.ebuild:
  Stable for ppc, wrt bug #464648

  30 Apr 2013; Jeroen Roovers <jer@gentoo.org> cmake-2.8.10.2-r2.ebuild:
  Stable for HPPA (bug #464648).

  27 Apr 2013; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.10.2-r2.ebuild:
  Stable for x86, wrt bug #464648

  27 Apr 2013; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.10.2-r2.ebuild:
  Stable for amd64, wrt bug #464648

  23 Apr 2013; Fabian Groffen <grobian@gentoo.org>
  +files/cmake-2.8.10-darwin-isysroot.patch, cmake-2.8.10.2-r2.ebuild:
  Fix compilation on Darwin, bug #445308

  15 Apr 2013; Samuli Suominen <ssuominen@gentoo.org> cmake-2.8.9.ebuild,
  cmake-2.8.10.2-r1.ebuild:
  Block >=media-gfx/imagemagick-6.8 to prevent incompatible
  FindImageMagick.cmake from being installed wrt #465898

*cmake-2.8.10.2-r2 (14 Apr 2013)

  14 Apr 2013; Michael Palimaka <kensington@gentoo.org>
  +cmake-2.8.10.2-r2.ebuild, +files/cmake-2.8.10.2-FindImageMagick.patch,
  +files/cmake-2.8.10.2-FindPythonInterp.patch,
  +files/cmake-2.8.10.2-FindPythonLibs.patch:
  Revision bump to fix detection of python (bug #405181) and newer imagemagic
  (bug #465898).

  02 Mar 2013; Markos Chandras <hwoarang@gentoo.org> cmake-2.8.10.2-r1.ebuild,
  cmake-2.8.9.ebuild:
  Move Qt dependencies to the new category

  22 Feb 2013; Zac Medico <zmedico@gentoo.org> cmake-2.8.10.2-r1.ebuild:
  Add ~arm-linux keyword.

  07 Jan 2013; Michael Palimaka <kensington@gentoo.org>
  +files/cmake-2.8.10.2-qt5.patch, cmake-2.8.10.2-r1.ebuild:
  Fix Qt5 automagic.

*cmake-2.8.10.2-r1 (01 Jan 2013)

  01 Jan 2013; Chris Reffett <creffett@gentoo.org> +cmake-2.8.10.2-r1.ebuild,
  +files/cmake-2.8.10.2-implicit-include.patch, -cmake-2.8.10.2.ebuild:
  Revision bump. Add patch to fix stripping implicit include dirs, bug 444340.
  Add shell-script magic in ebuild to strip extra jobs values in MAKEOPTS (which
  causes build failures), bug 447040.

*cmake-2.8.10.2 (27 Nov 2012)

  27 Nov 2012; Chris Reffett <creffett@gentoo.org> +cmake-2.8.10.2.ebuild,
  -cmake-2.8.10.1.ebuild:
  Version bump to 2.8.10.2, fixes bug 444906. Remove old.

*cmake-2.8.10.1 (18 Nov 2012)

  18 Nov 2012; Michael Palimaka <kensington@gentoo.org> +cmake-2.8.10.1.ebuild,
  +files/cmake-2.8.10-FindPythonLibs.patch,
  +files/cmake-2.8.10-darwin-bundle.patch, +files/cmake-2.8.10-desktop.patch,
  +files/cmake-2.8.10-libform.patch,
  +files/cmake-2.8.10-more-no_host_paths.patch, +files/cmake-2.8.10-tests.patch,
  -cmake-2.8.9-r1.ebuild, -files/cmake-2.8.9-tests.patch:
  Version bump, remove old.

*cmake-2.8.9-r1 (02 Oct 2012)

  02 Oct 2012; Michael Palimaka <kensington@gentoo.org> +cmake-2.8.9-r1.ebuild,
  +files/cmake-2.8.9-tests.patch:
  Disable TestUpload test since it requires network access, wrt bug #436188.

  01 Oct 2012; Johannes Huber <johu@gentoo.org> -cmake-2.8.8-r3.ebuild,
  -files/cmake-2.8.8-more-no_host_paths.patch,
  -files/cmake-2.8.8-pkgconfig.patch:
  Remove old.

  30 Sep 2012; Raúl Porcel <armin76@gentoo.org> cmake-2.8.9.ebuild:
  alpha/ia64/s390/sh/sparc stable wrt #435730

  24 Sep 2012; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.9.ebuild:
  Stable for X86, wrt bug #435730

  24 Sep 2012; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.9.ebuild:
  Stable for amd64, wrt bug #435730

  24 Sep 2012; Jeroen Roovers <jer@gentoo.org> cmake-2.8.9.ebuild:
  Stable for HPPA (bug #435730).

  23 Sep 2012; Anthony G. Basile <blueness@gentoo.org> cmake-2.8.9.ebuild:
  stable arm, bug #435730

  22 Sep 2012; Anthony G. Basile <blueness@gentoo.org> cmake-2.8.9.ebuild:
  stable ppc ppc64, bug #435730

  10 Sep 2012; Johannes Huber <johu@gentoo.org>
  +files/cmake-2.8.4-FindPythonLibs.patch:
  Restore patch that was unfortunately dropped, bug #434524.

  09 Sep 2012; Johannes Huber <johu@gentoo.org> -cmake-2.8.7-r5.ebuild,
  -files/cmake-2.8.3-more-no_host_paths.patch,
  -files/cmake-2.8.4-FindBoost.patch, -files/cmake-2.8.4-FindPythonLibs.patch,
  -files/cmake-2.8.7-FindOpenMP.patch:
  Remove old.

  09 Sep 2012; Raúl Porcel <armin76@gentoo.org> cmake-2.8.8-r3.ebuild:
  alpha/ia64/s390/sh/sparc stable wrt #431520

  23 Aug 2012; Markus Meier <maekke@gentoo.org> cmake-2.8.8-r3.ebuild:
  arm stable, bug #431520

*cmake-2.8.9 (19 Aug 2012)

  19 Aug 2012; Johannes Huber <johu@gentoo.org> +cmake-2.8.9.ebuild,
  +files/cmake-2.8.9-more-no_host_paths.patch:
  Version bump wrt bug #431946.

  18 Aug 2012; Johannes Huber <johu@gentoo.org> cmake-2.8.8-r3.ebuild:
  Stable for x86, wrt bug #431520

  16 Aug 2012; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.8-r3.ebuild:
  Stable for amd64, wrt bug #422021

  15 Aug 2012; Anthony G. Basile <blueness@gentoo.org> cmake-2.8.8-r3.ebuild:
  Stable ppc, bug #431520

  15 Aug 2012; Anthony G. Basile <blueness@gentoo.org> cmake-2.8.8-r3.ebuild:
  Stable ppc64, bug #431520

  15 Aug 2012; Jeroen Roovers <jer@gentoo.org> cmake-2.8.8-r3.ebuild:
  Stable for HPPA (bug #431520).

  08 Jul 2012; Johannes Huber <johu@gentoo.org> -cmake-2.8.6-r4.ebuild,
  -files/cmake-2.8.3-ruby_libname.patch, -files/cmake-2.8.6-CodeBlocks.patch,
  -files/cmake-2.8.6-FindBLAS-2.patch, -files/cmake-2.8.6-FindLAPACK-2.patch,
  -files/cmake-2.8.6-testsvn17.patch:
  Remove old.

  08 Jul 2012; Raúl Porcel <armin76@gentoo.org> cmake-2.8.7-r5.ebuild:
  alpha/ia64/s390/sh/sparc stable wrt #4143807

  03 Jul 2012; Michael Palimaka <kensington@gentoo.org> cmake-2.8.6-r4.ebuild,
  cmake-2.8.7-r5.ebuild:
  Restrict tests wrt bug #390533 and #423637.

  28 Jun 2012; Michael Palimaka <kensington@gentoo.org> -cmake-2.8.7-r4.ebuild,
  -cmake-2.8.8-r2.ebuild, -files/cmake-2.8.3-fix_assembler_test.patch,
  -files/cmake-2.8.4-FindPythonInterp.patch, -files/cmake-2.8.4-FindQt4.patch:
  Remove old versions and unused patches.

  17 Jun 2012; Fabian Groffen <grobian@gentoo.org> cmake-2.8.8-r3.ebuild:
  Run bootstrap with CONFIG_SHELL or (Prefix) sh, since the script is not
  /bin/sh compatible

*cmake-2.8.8-r3 (14 Jun 2012)

  14 Jun 2012; Michael Palimaka <kensington@gentoo.org> +cmake-2.8.8-r3.ebuild,
  files/cmake-2.8.8-more-no_host_paths.patch:
  Add support for x32 ABI, wrt bug #393673. Patch by Tim Harder
  <radhermit@gentoo.org>.

  23 May 2012; Brent Baude <ranger@gentoo.org> cmake-2.8.7-r5.ebuild:
  Marking cmake-2.8.7-r5 ppc64 for bug 413807

  22 May 2012; Brent Baude <ranger@gentoo.org> cmake-2.8.7-r5.ebuild:
  Marking cmake-2.8.7-r5 ppc for bug 413807

  16 May 2012; Jeroen Roovers <jer@gentoo.org> cmake-2.8.7-r5.ebuild:
  Stable for HPPA (bug #413807).

  12 May 2012; Alexis Ballier <aballier@gentoo.org> cmake-2.8.8-r2.ebuild:
  ~amd64-fbsd keywords were dropped for no reason... rekeyword

  12 May 2012; Markus Meier <maekke@gentoo.org> cmake-2.8.7-r5.ebuild:
  arm stable, bug #413807

  09 May 2012; Jeff Horelick <jdhore@gentoo.org> cmake-2.8.7-r5.ebuild:
  marked x86 per bug 413807

  09 May 2012; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.7-r5.ebuild:
  Stable for amd64, wrt bug #413807

*cmake-2.8.8-r2 (06 May 2012)

  06 May 2012; Andreas K. Huettel <dilfridge@gentoo.org>
  -cmake-2.8.8-r1.ebuild, +cmake-2.8.8-r2.ebuild,
  +files/cmake-2.8.8-pkgconfig.patch:
  Add fix for pkgconfig usage, bug 414659 and others

  06 May 2012; Andreas K. Huettel <dilfridge@gentoo.org> cmake-2.8.8-r1.ebuild:
  Remove keywords until bug 414659 is fixed

  02 May 2012; Jeff Horelick <jdhore@gentoo.org> cmake-2.8.6-r4.ebuild,
  cmake-2.8.7-r4.ebuild, cmake-2.8.7-r5.ebuild, cmake-2.8.8-r1.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

*cmake-2.8.8-r1 (02 May 2012)

  02 May 2012; Johannes Huber <johu@gentoo.org> +cmake-2.8.8-r1.ebuild,
  +files/cmake-2.8.8-FindPkgConfig.patch,
  +files/cmake-2.8.8-more-no_host_paths.patch, +files/cmake-2.8.8-tests.patch:
  Version bump by me and Chris Reffett <geekboy72@gmail.com> wrt bug #412925.
  Adds patch for FindPkgConfig to respect PKG_CONFIG environment variable by
  DaboD <daiderek@gmail.com> bug #414037.

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

*cmake-2.8.7-r5 (09 Mar 2012)

  09 Mar 2012; Andreas K. Huettel <dilfridge@gentoo.org>
  -cmake-2.8.7-r3.ebuild, +cmake-2.8.7-r5.ebuild,
  +files/cmake-2.8.7-FindLAPACK.patch:
  Respect pkg-config library path also in FindLAPACK, bug 399755; thanks to
  Christoph Junghans for the patches

*cmake-2.8.7-r4 (08 Mar 2012)

  08 Mar 2012; Andreas K. Huettel <dilfridge@gentoo.org>
  +cmake-2.8.7-r4.ebuild, +files/cmake-2.8.7-FindBLAS.patch:
  Respect pkg-config library path in FindBLAS, bug 399755

  03 Mar 2012; Johannes Huber <johu@gentoo.org> -cmake-2.8.4-r1.ebuild,
  -cmake-2.8.7-r1.ebuild, -cmake-2.8.7-r2.ebuild:
  Remove old.

  02 Mar 2012; Brent Baude <ranger@gentoo.org> cmake-2.8.6-r4.ebuild:
  Marking cmake-2.8.6-r4 ppc64 for bug 391425

*cmake-2.8.7-r3 (06 Feb 2012)

  06 Feb 2012; Justin Lecher <jlec@gentoo.org> +cmake-2.8.7-r3.ebuild,
  +files/cmake-2.8.7-FindOpenMP.patch:
  Adding patch for language selective openmp support testing,
  http://public.kitware.com/Bug/view.php?id=11910 ; approved by tampakrap

*cmake-2.8.7-r2 (30 Jan 2012)

  30 Jan 2012; Theo Chatzimichos <tampakrap@gentoo.org> +cmake-2.8.7-r2.ebuild,
  +files/cmake-2.8.7-FindBoost-python.patch:
  Fix detection of PYTHON_ABI-versioned Boost Python libraries of >=dev-
  libs/boost-1.48, bug 400969

  28 Jan 2012; Raúl Porcel <armin76@gentoo.org> cmake-2.8.6-r4.ebuild:
  alpha/arm/ia64/s390/sh/sparc stable wrt #391425

*cmake-2.8.7-r1 (21 Jan 2012)

  21 Jan 2012; Johannes Huber <johu@gentoo.org> +cmake-2.8.7-r1.ebuild:
  Version bump wrt bug #399045.

  04 Jan 2012; Brent Baude <ranger@gentoo.org> cmake-2.8.6-r4.ebuild:
  Marking cmake-2.8.6-r4 ppc for bug 391425

  14 Dec 2011; Agostino Sarubbo <ago@gentoo.org> cmake-2.8.6-r4.ebuild:
  Stable for AMD64, wrt bug #391425

  01 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> cmake-2.8.6-r4.ebuild:
  x86 stable wrt bug #391425

  25 Nov 2011; Jeroen Roovers <jer@gentoo.org> cmake-2.8.6-r4.ebuild:
  Stable for HPPA (bug #391425).

  23 Nov 2011; Andreas K. Huettel <dilfridge@gentoo.org> cmake-2.8.6-r4.ebuild,
  +files/cmake-2.8.6-testsvn17.patch:
  Fix test CTest.UpdateSVN with subversion-1.7, bug 390533

  22 Nov 2011; Andreas K. Huettel <dilfridge@gentoo.org>
  -files/cmake-2.8.5-FindBLAS.patch, -files/cmake-2.8.5-FindLAPACK.patch,
  -cmake-2.8.6-r2.ebuild, -cmake-2.8.6-r3.ebuild,
  -files/cmake-2.8.6-FindBLAS.patch, -files/cmake-2.8.6-FindLAPACK.patch:
  Cleanup

*cmake-2.8.6-r4 (22 Nov 2011)

  22 Nov 2011; Andreas K. Huettel <dilfridge@gentoo.org> cmake-2.8.6-r3.ebuild,
  +cmake-2.8.6-r4.ebuild, +files/cmake-2.8.6-FindBLAS-2.patch:
  Fix logic bug in FindBLAS patch

*cmake-2.8.6-r3 (30 Oct 2011)

  30 Oct 2011; Andreas K. Huettel <dilfridge@gentoo.org>
  +cmake-2.8.6-r3.ebuild, +files/cmake-2.8.6-CodeBlocks.patch:
  Add upstream fix for QtCreator and CodeBlocks support, bug 388695

  30 Oct 2011; Andreas K. Huettel <dilfridge@gentoo.org> -cmake-2.8.5.ebuild,
  -cmake-2.8.5-r2.ebuild:
  Remove old

*cmake-2.8.6-r2 (29 Oct 2011)

  29 Oct 2011; Andreas K. Huettel <dilfridge@gentoo.org>
  -cmake-2.8.6-r1.ebuild, +cmake-2.8.6-r2.ebuild,
  +files/cmake-2.8.6-FindLAPACK-2.patch:
  Fix FindLAPACK, bug 388757

  19 Oct 2011; Andreas K. Huettel <dilfridge@gentoo.org> cmake-2.8.6-r1.ebuild:
  Fix java 7 sandbox violation, bug 387227

*cmake-2.8.6-r1 (15 Oct 2011)

  15 Oct 2011; Andreas K. Huettel <dilfridge@gentoo.org>
  +cmake-2.8.6-r1.ebuild, +files/cmake-2.8.6-FindBLAS.patch,
  +files/cmake-2.8.6-FindLAPACK.patch:
  Version bump (thanks johu!)

*cmake-2.8.5-r2 (18 Jul 2011)

  18 Jul 2011; Andreas K. Huettel <dilfridge@gentoo.org> cmake-2.8.4-r1.ebuild,
  cmake-2.8.5.ebuild, +cmake-2.8.5-r2.ebuild,
  +files/cmake-2.8.5-FindBLAS.patch, +files/cmake-2.8.5-FindLAPACK.patch:
  Patch FindBLAS and FindLAPACK to try PkgConfig first and skip all other tests
  if that succeeds; prepare for additional eclass feature of automated cmake
  module removal in $S, which should NOT happen in the cmake ebuild itself.

*cmake-2.8.5 (11 Jul 2011)

  11 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org> +cmake-2.8.5.ebuild:
  Version bump to 2.8.5. Recompiled everything using cmake and all tests pass.
  Fixes bug #374665. Tests needs to state some deps like cvs/git/...

  08 May 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -files/cmake-2.6.0-interix.patch, -files/cmake-2.6.4-FindBoost.patch,
  -files/cmake-2.8.0-darwin-no-app-with-qt.patch, -cmake-2.8.1-r2.ebuild,
  -files/cmake-2.8.1-FindBoost.patch,
  -files/cmake-2.8.1-more-no_host_paths.patch, -files/cmake-2.8.1-mpi.patch,
  -files/cmake-2.8.3-FindLibArchive.patch,
  -files/cmake-2.8.3-FindPythonInterp.patch,
  -files/cmake-2.8.3-FindPythonLibs.patch,
  -files/cmake-2.8.3-buffer_overflow.patch, -files/cmake-FindJNI.patch,
  -files/cmake-FindPythonInterp.patch, -files/cmake-FindPythonLibs.patch:
  Drop older stuff. Keep just latest stable.

  07 May 2011; Raúl Porcel <armin76@gentoo.org> cmake-2.8.4-r1.ebuild:
  ia64/s390/sh/sparc stable wrt #357771

  02 May 2011; Thomas Kahle <tomka@gentoo.org> cmake-2.8.4-r1.ebuild:
  x86 stable per bug 357771

  28 Apr 2011; Tomáš Chvátal <scarabeus@gentoo.org> -cmake-2.8.4.ebuild,
  cmake-2.8.4-r1.ebuild:
  Move keywords from 2.8.4 to r1 (even the stable ones), because the only
  change is in the cross-compilation finder, not really requiring the
  restabilisation.

*cmake-2.8.4-r1 (18 Apr 2011)

  18 Apr 2011; Tomáš Chvátal <scarabeus@gentoo.org> -cmake-2.8.3-r1.ebuild,
  +cmake-2.8.4-r1.ebuild, +files/cmake-2.8.4-FindQt4.patch:
  Revision bump to fix bug #358317.

  07 Apr 2011; Tomáš Chvátal <scarabeus@gentoo.org> cmake-2.8.4.ebuild:
  Inherit virtualx.eclass to fix bug #362389

  27 Mar 2011; Tobias Klausmann <klausman@gentoo.org> cmake-2.8.4.ebuild:
  Stable on alpha, bug #357771

  25 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> cmake-2.8.4.ebuild:
  ppc64 stable wrt #357771

  21 Mar 2011; Brent Baude <ranger@gentoo.org> cmake-2.8.4.ebuild:
  Marking cmake-2.8.4 ppc for bug 357771

  18 Mar 2011; Markus Meier <maekke@gentoo.org> cmake-2.8.4.ebuild:
  arm stable, bug #357771

  09 Mar 2011; Jeroen Roovers <jer@gentoo.org> cmake-2.8.4.ebuild:
  Stable for HPPA (bug #357771).

  08 Mar 2011; Markos Chandras <hwoarang@gentoo.org> cmake-2.8.4.ebuild:
  Stable on amd64 wrt bug #357771

  07 Mar 2011; Tomáš Chvátal <scarabeus@gentoo.org> cmake-2.8.4.ebuild:
  Revert to eapi3 for now so it can go stable.

  23 Feb 2011; Tomáš Chvátal <scarabeus@gentoo.org> cmake-2.8.4.ebuild:
  Use only one -E exclude parameter, obviously duplication is not working.

  21 Feb 2011; Tomáš Chvátal <scarabeus@gentoo.org> cmake-2.8.4.ebuild:
  Exclude sdcc test.

  21 Feb 2011; Tomáš Chvátal <scarabeus@gentoo.org> cmake-2.8.4.ebuild:
  Exclude bootstraptest because it is pointless for us.

*cmake-2.8.4 (21 Feb 2011)

  21 Feb 2011; Tomáš Chvátal <scarabeus@gentoo.org> +cmake-2.8.4.ebuild,
  +files/cmake-2.8.4-FindBoost.patch,
  +files/cmake-2.8.4-FindPythonInterp.patch,
  +files/cmake-2.8.4-FindPythonLibs.patch:
  Version bump to the latest (some tests still fail, to be fixed).

  17 Jan 2011; Tomáš Chvátal <scarabeus@gentoo.org> cmake-2.8.3-r1.ebuild:
  Fix tests per bug #315223.

  26 Dec 2010; Tomáš Chvátal <scarabeus@gentoo.org> -cmake-2.6.4-r3.ebuild,
  -cmake-2.8.3.ebuild:
  old

  25 Dec 2010; Tomáš Chvátal <scarabeus@gentoo.org> cmake-2.8.3-r1.ebuild,
  +files/cmake-2.8.3-fix_assembler_test.patch:
  Fix assembler test bug #338627. Thanks to Anthony (blueness) for the
  solution.

*cmake-2.8.3-r1 (25 Dec 2010)

  25 Dec 2010; Tomáš Chvátal <scarabeus@gentoo.org> +cmake-2.8.3-r1.ebuild,
  +files/cmake-2.8.3-buffer_overflow.patch,
  +files/cmake-2.8.3-ruby_libname.patch:
  Fix ruby finding per bug #345993 and buffer overflowing per bug #329043.

  20 Dec 2010; Tomáš Chvátal <scarabeus@gentoo.org> cmake-2.8.3.ebuild:
  Fix dependency on libarchive version. Fixes bug #348887.

  16 Dec 2010; Tomáš Chvátal <scarabeus@gentoo.org> cmake-2.8.1-r2.ebuild,
  cmake-2.8.3.ebuild:
  Fix malformed headers

*cmake-2.8.3 (16 Dec 2010)

  16 Dec 2010; Tomáš Chvátal <scarabeus@gentoo.org> +cmake-2.8.3.ebuild,
  +files/cmake-2.8.3-FindLibArchive.patch,
  +files/cmake-2.8.3-FindPythonInterp.patch,
  +files/cmake-2.8.3-FindPythonLibs.patch,
  +files/cmake-2.8.3-more-no_host_paths.patch:
  Version bump. Per bug #344259. Thanks to Arseny Solokha for updated patches.

  11 Sep 2010; Raúl Porcel <armin76@gentoo.org> cmake-2.8.1-r2.ebuild:
  ia64/s390/sh/sparc stable wrt #325845

  10 Sep 2010; Tobias Klausmann <klausman@gentoo.org> cmake-2.8.1-r2.ebuild:
  Stable on alpha, bug #325845

  11 Aug 2010; Markus Meier <maekke@gentoo.org> cmake-2.8.1-r2.ebuild:
  arm stable, bug #325845

  10 Aug 2010; Tomáš Chvátal <scarabeus@gentoo.org>
  -files/cmake-2.8.0-more-no_host_paths.patch, -cmake-2.8.1.ebuild,
  -cmake-2.8.1-r1.ebuild:
  Drop older stuff.

  06 Aug 2010; Christian Faulhammer <fauli@gentoo.org>
  cmake-2.8.1-r2.ebuild:
  stable x86, bug 325845

  06 Aug 2010; Samuli Suominen <ssuominen@gentoo.org> cmake-2.8.1-r2.ebuild:
  Run bootstrap with FEATURES="test" wrt #315223 by Thomas Kahle.

  27 Jul 2010; Jeroen Roovers <jer@gentoo.org> cmake-2.8.1-r2.ebuild:
  Stable for HPPA PPC (bug #325845).

  07 Jul 2010; Maciej Mrozowski <reavertm@gentoo.org> cmake-2.8.1-r2.ebuild:
  export JAVA_HOME gathered from java-config, bug 315229

  06 Jul 2010; Markos Chandras <hwoarang@gentoo.org> cmake-2.8.1-r2.ebuild:
  Stable on amd64 wrt bug #325845

  04 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> cmake-2.8.1-r2.ebuild:
  ppc64 stable wrt #325845

*cmake-2.8.1-r2 (27 May 2010)

  27 May 2010; Justin Lecher <jlec@gentoo.org> cmake-2.8.1-r1.ebuild,
  +cmake-2.8.1-r2.ebuild, +files/cmake-2.8.1-mpi.patch:
  Fixing problem with detecting mpi libs through FindMPI module

*cmake-2.8.1-r1 (13 Apr 2010)

  13 Apr 2010; Tomáš Chvátal <scarabeus@gentoo.org>
  -cmake-2.8.0-r3.ebuild, +cmake-2.8.1-r1.ebuild,
  +files/cmake-2.8.1-FindBoost.patch, +files/cmake-2.8.1-libform.patch:
  Revision bump from overlay. Fix boost issues and bundled libform. Remove
  old.

  17 Mar 2010; Fabian Groffen <grobian@gentoo.org> cmake-2.8.1.ebuild,
  +files/cmake-2.8.1-more-no_host_paths.patch:
  Port more-no_host_paths patch since it is really necessary for proper
  operation in Prefix, bump to EAPI=3.

*cmake-2.8.1 (17 Mar 2010)

  17 Mar 2010; Tomáš Chvátal <scarabeus@gentoo.org> +cmake-2.8.1.ebuild:
  Version bump.

*cmake-2.8.0-r3 (17 Mar 2010)

  17 Mar 2010; Tomáš Chvátal <scarabeus@gentoo.org> -cmake-2.8.0.ebuild,
  -cmake-2.8.0-r1.ebuild, -cmake-2.8.0-r2.ebuild, +cmake-2.8.0-r3.ebuild:
  Update deps to match latest curl IUSE update.

  26 Feb 2010; Fabian Groffen <grobian@gentoo.org> cmake-2.8.0-r2.ebuild:
  Marked ~x64-macos, thanks Ramon van Alteren, bug #305367

  10 Feb 2010; Fabian Groffen <grobian@gentoo.org> cmake-2.8.0-r2.ebuild,
  +files/cmake-2.8.0-darwin-no-app-with-qt.patch:
  Add patch by Heiko Przybyl not to build an .app on OSX with USE=qt4

*cmake-2.8.0-r2 (31 Jan 2010)

  31 Jan 2010; Fabian Groffen <grobian@gentoo.org> +cmake-2.8.0-r2.ebuild,
  +files/cmake-2.8.0-darwin-default-install_name.patch:
  Revision bump, add patch to set a default install_name on Darwin. This is
  sufficient for most cases, and allows us to revert some install_name_tool
  hacks for cmake-based packages.

  24 Jan 2010; Tomáš Chvátal <scarabeus@gentoo.org>
  cmake-2.8.0-r1.ebuild:
  Fix typo.

*cmake-2.8.0-r1 (24 Jan 2010)

  24 Jan 2010; Tomáš Chvátal <scarabeus@gentoo.org>
  +cmake-2.8.0-r1.ebuild:
  Drop some deps. Still needs work on ncurses are harddep when bootstraping
  but optional otherwise.

  11 Jan 2010; Jonathan Callen <abcd@gentoo.org>
  +files/cmake-2.6.0-interix.patch, +files/cmake-2.6.3-darwin-bundle.patch,
  +files/cmake-2.6.3-fix_broken_lfs_on_aix.patch,
  +files/cmake-2.6.3-no-duplicates-in-rpath.patch, cmake-2.8.0.ebuild,
  +files/cmake-2.8.0-more-no_host_paths.patch:
  Add prefix keywords, patches

  05 Dec 2009; Jonathan Callen <abcd@gentoo.org> -cmake-2.6.4.ebuild,
  -cmake-2.6.4-r1.ebuild:
  Drop old ebuilds

  29 Nov 2009; Tomáš Chvátal <scarabeus@gentoo.org> cmake-2.8.0.ebuild:
  Update deps so the tests are not failing, and features are not missing.
  Per bug #295070.

  24 Nov 2009; Raúl Porcel <armin76@gentoo.org> cmake-2.6.4-r3.ebuild:
  ia64/s390/sh/sparc stable wrt #290723

  19 Nov 2009; Markus Meier <maekke@gentoo.org> cmake-2.6.4-r3.ebuild:
  arm stable, bug #290723

  18 Nov 2009; Brent Baude <ranger@gentoo.org> cmake-2.6.4-r3.ebuild:
  Marking cmake-2.6.4-r3 ppc64 for bug 290723

*cmake-2.8.0 (14 Nov 2009)

  14 Nov 2009; Tomáš Chvátal <scarabeus@gentoo.org>
  -cmake-2.8.0_rc4.ebuild, +cmake-2.8.0.ebuild:
  Version bump for new 2.8.0 release. Remove old rc. Tests are fatal, 100%
  pased on all my machines right now.

  11 Nov 2009; Jeroen Roovers <jer@gentoo.org> cmake-2.6.4-r3.ebuild:
  Stable for HPPA (bug #290723).

  08 Nov 2009; Tobias Klausmann <klausman@gentoo.org> cmake-2.6.4-r3.ebuild:
  Stable on alpha, bug #290723

  08 Nov 2009; Mounir Lamouri <volkmar@gentoo.org> cmake-2.6.4-r3.ebuild:
  Stable for ppc, bug 290723

*cmake-2.8.0_rc4 (03 Nov 2009)

  03 Nov 2009; Marcus D. Hanwell <cryos@gentoo.org> -cmake-2.8.0_rc3.ebuild,
  +cmake-2.8.0_rc4.ebuild:
  Version bump, new rc. Dropped JNI patch - no longer applies.

  02 Nov 2009; Markus Meier <maekke@gentoo.org> cmake-2.6.4-r3.ebuild:
  amd64/x86 stable, bug #290723

  19 Oct 2009; Tomáš Chvátal <scarabeus@gentoo.org>
  -cmake-2.6.2-r1.ebuild, -cmake-2.6.3-r1.ebuild:
  Drop old.

*cmake-2.8.0_rc3 (10 Oct 2009)

  10 Oct 2009; Marcus D. Hanwell <cryos@gentoo.org> -cmake-2.8.0_rc2.ebuild,
  +cmake-2.8.0_rc3.ebuild:
  Version bump, new rc.

  05 Oct 2009; Dominik Kapusta <ayoy@gentoo.org> cmake-2.6.2-r1.ebuild:
  Removed alternative dependency on Qt metapackage

*cmake-2.8.0_rc2 (02 Oct 2009)

  02 Oct 2009; Marcus D. Hanwell <cryos@gentoo.org> -cmake-2.8.0_rc1.ebuild,
  +cmake-2.8.0_rc2.ebuild:
  New release candidate, removed old one.

*cmake-2.6.4-r3 (01 Oct 2009)

  01 Oct 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  -cmake-2.6.4-r2.ebuild, +cmake-2.6.4-r3.ebuild, cmake-2.8.0_rc1.ebuild,
  -files/cmake-python-3.patch, files/cmake-FindPythonLibs.patch,
  metadata.xml:
  FindPythonLibs.cmake should use currently active Python version (bug
  #287143). Remove no longer needed "python3" USE flag.

*cmake-2.8.0_rc1 (01 Oct 2009)

  01 Oct 2009; Marcus D. Hanwell <cryos@gentoo.org> +cmake-2.8.0_rc1.ebuild:
  Version bump, in package.mask initially for further testing.

*cmake-2.6.4-r2 (28 Jul 2009)

  28 Jul 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  +cmake-2.6.4-r2.ebuild, +files/cmake-python-3.patch,
  files/cmake-FindPythonInterp.patch, files/cmake-FindPythonLibs.patch,
  metadata.xml:
  Add "python3" USE flag.

  26 Jul 2009; Marcus D. Hanwell <cryos@gentoo.org> cmake-2.6.4.ebuild,
  cmake-2.6.4-r1.ebuild:
  Bumped to depend on >=dev-libs/xmlrpc-c-1.06.27[curl], fixes bug 276333.

  24 Jul 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  files/cmake-FindPythonInterp.patch, files/cmake-FindPythonLibs.patch:
  Support more Python versions.

*cmake-2.6.4-r1 (17 Jul 2009)

  17 Jul 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  +cmake-2.6.4-r1.ebuild, +files/cmake-2.6.4-FindBoost.patch:
  Support more Boost versions.

  31 May 2009; Markus Meier <maekke@gentoo.org> cmake-2.6.4.ebuild:
  amd64 stable, bug #271444

  31 May 2009; Brent Baude <ranger@gentoo.org> cmake-2.6.4.ebuild:
  Marking cmake-2.6.4 ppc64 for bug 271444

  30 May 2009; nixnut <nixnut@gentoo.org> cmake-2.6.4.ebuild:
  ppc stable #271444

  30 May 2009; Raúl Porcel <armin76@gentoo.org> cmake-2.6.4.ebuild:
  alpha/arm/ia64/s390/sh stable wrt #271444

  28 May 2009; Tomáš Chvátal <scarabeus@gentoo.org> cmake-2.6.4.ebuild:
  Add einfo informing about the test that might fail.

  28 May 2009; Christian Faulhammer <fauli@gentoo.org> cmake-2.6.4.ebuild:
  stable x86, bug 271444

  28 May 2009; Ferris McCormick <fmccor@gentoo.org> cmake-2.6.4.ebuild:
  Sparc stable, Bug #271444 (which see for comments).

  27 May 2009; Jeroen Roovers <jer@gentoo.org> cmake-2.6.4.ebuild:
  Stable for HPPA (bug #271444).

  03 May 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  cmake-2.6.4.ebuild:
  Fix syntax.

  03 May 2009; Marcus D. Hanwell <cryos@gentoo.org> cmake-2.6.4:
  Fixed to the bootstrap logic.

*cmake-2.6.4 (02 May 2009)

  02 May 2009; Marcus D. Hanwell <cryos@gentoo.org> +cmake-2.6.4.ebuild:
  Version bump, applied patch from bug 266383.

  13 Apr 2009; Tomas Chvatal <scarabeus@gentoo.org> cmake-2.6.3-r1.ebuild:
  Fix the has_version check. Current eclass does not support cmake 2.4...

  11 Apr 2009; Joshua Kinard <kumba@gentoo.org> cmake-2.6.3-r1.ebuild:
  Added ~mips to KEYWORDS.

*cmake-2.6.3-r1 (04 Apr 2009)

  04 Apr 2009; Tomas Chvatal <scarabeus@gentoo.org>
  -files/cmake-2.0.6-rpath-fix.patch, -files/cmake-2.4.7-findkde4.patch,
  -files/FindSWIG.cmake, +files/cmake-FindJNI.patch, -cmake-2.4.7-r1.ebuild,
  -cmake-2.4.8.ebuild, -cmake-2.6.3.ebuild, +cmake-2.6.3-r1.ebuild:
  Revision bump. Introduce some fixes. Remove old.

  15 Mar 2009; Tomas Chvatal <scarabeus@gentoo.org> -cmake-2.4.6-r1.ebuild,
  -cmake-2.6.2.ebuild:
  Remove old.

  14 Mar 2009; Raúl Porcel <armin76@gentoo.org> cmake-2.6.2-r1.ebuild:
  arm/ia64/s390/sh/sparc stable wrt #259741

  11 Mar 2009; Brent Baude <ranger@gentoo.org> cmake-2.6.2-r1.ebuild:
  Marking cmake-2.6.2-r1 ppc64 for bug 259741

  08 Mar 2009; Markus Meier <maekke@gentoo.org> cmake-2.6.2-r1.ebuild:
  x86 stable, bug #259741

  07 Mar 2009; Jeremy Olexa <darkside@gentoo.org> cmake-2.6.2-r1.ebuild:
  amd64 stable, bug 259741

  01 Mar 2009; nixnut <nixnut@gentoo.org> cmake-2.6.2-r1.ebuild:
  ppc stable #259741

*cmake-2.6.3 (01 Mar 2009)

  01 Mar 2009; Tomas Chvatal <scarabeus@gentoo.org> +cmake-2.6.3.ebuild:
  Version bump.

  22 Feb 2009; Tobias Klausmann <klausman@gentoo.org> cmake-2.6.2-r1.ebuild:
  Stable on alpha, bug #259741

  20 Feb 2009; Jeroen Roovers <jer@gentoo.org> cmake-2.6.2-r1.ebuild:
  Stable for HPPA (bug #259741).

  03 Feb 2009; Tomas Chvatal <scarabeus@gentoo.org> cmake-2.6.2-r1.ebuild:
  Fix src_configure. Per bug #254898.

  21 Jan 2009; Markus Meier <maekke@gentoo.org> cmake-2.4.8.ebuild:
  amd64/x86 stable

*cmake-2.6.2-r1 (03 Jan 2009)

  03 Jan 2009; Tomas Chvatal <scarabeus@gentoo.org>
  +files/cmake-FindPythonInterp.patch, +cmake-2.6.2-r1.ebuild:
  Add patch for python lib detection. Per bug #253593. Thanks to Oldrich
  Jedlicka for patch.

  02 Dec 2008; Tomas Chvatal <scarabeus@gentoo.org>
  -files/cmake-2.6.1-gc-sections.patch, -files/cmake-2.6.1-rpath.patch,
  -cmake-2.6.1.ebuild, cmake-2.6.2.ebuild:
  Dupe old. Update current to eapi2. Fixes bug #226153.

*cmake-2.6.2 (27 Sep 2008)

  27 Sep 2008; Marcus D. Hanwell <cryos@gentoo.org> -cmake-2.6.0.ebuild,
  +cmake-2.6.2.ebuild:
  Version bump and removed old version.

*cmake-2.6.1 (27 Aug 2008)

  27 Aug 2008; Timo Gurr <tgurr@gentoo.org>
  +files/cmake-2.6.1-gc-sections.patch, +files/cmake-2.6.1-rpath.patch,
  +cmake-2.6.1.ebuild:
  Version bump. Big thanks to Brad King from kitware, thewtex and Arfrever
  Frehtes Taifersar Arahesis and everyone else involved. Fixes bug #224901,
  #232111, #233772 and #235731.

*cmake-2.6.0 (08 May 2008)

  08 May 2008; Marcus D. Hanwell <cryos@gentoo.org>
  +files/cmake-FindPythonLibs.patch, +cmake-2.6.0.ebuild:
  Version bump, masked for now until it receives wider testing.

  22 Feb 2008; Ingmar Vanhassel <ingmar@gentoo.org> -cmake-2.0.6-r1.ebuild,
  -cmake-2.4.3.ebuild, -cmake-2.4.4.ebuild, -cmake-2.4.5.ebuild,
  -cmake-2.4.6.ebuild, -cmake-2.4.7.ebuild, -cmake-2.4.7-r2.ebuild,
  -cmake-2.4.8_rc12.ebuild:
  Old.

  11 Feb 2008; Diego Pettenò <flameeyes@gentoo.org> cmake-2.4.7-r2.ebuild,
  cmake-2.4.8_rc12.ebuild, cmake-2.4.8.ebuild:
  Remove --no-as-needed, xmlrpc-c caused the bug and is now fixed. If you want
  to build cmake with --as-needed rebuild your xmlrpc-c.

*cmake-2.4.8 (09 Feb 2008)

  09 Feb 2008; Bo Ørsted Andresen <zlin@gentoo.org> +cmake-2.4.8.ebuild:
  Version bump (bug #208618).

*cmake-2.4.8_rc12 (14 Jan 2008)

  14 Jan 2008; Ingmar Vanhassel <ingmar@gentoo.org>
  +cmake-2.4.8_rc12.ebuild:
  Bump to latest RC.

  13 Jan 2008; Wulf C. Krueger <philantrop@gentoo.org>
  cmake-2.4.7-r2.ebuild:
  Dropped ~mips to get bug 194031 out of the way. Filed bug 205633 for
  re-keywording.

  17 Dec 2007; Wulf C. Krueger <philantrop@gentoo.org>
  cmake-2.4.7-r2.ebuild:
  Added a check to make sure dev-libs/xmlrpc-c has been installed with
  suitable USE flags. Fixes bug 194405.

  10 Oct 2007; Christian Heim <phreak@gentoo.org> cmake-2.4.6-r1.ebuild,
  cmake-2.4.7.ebuild, cmake-2.4.7-r1.ebuild, cmake-2.4.7-r2.ebuild:
  Fixing #156800 by issuing -fno-stack-protector if we are having a GCC_MAJOR
  equal to 3.

*cmake-2.4.7-r2 (27 Sep 2007)

  27 Sep 2007; Wulf C. Krueger <philantrop@gentoo.org>
  +files/FindSWIG.cmake, +cmake-2.4.7-r2.ebuild:
  cmake-2.4.7-r2 now uses the system libraries during the bootstrap process
  instead of the bundled versions. Fixes bug 178999. Furthermore, it features
  a new FindSWIG.cmake module as provided by Axel Roebel on upstream bug 4145.
  Fixes our bug 192594.

*cmake-2.4.7-r1 (07 Sep 2007)

  07 Sep 2007; Wulf C. Krueger <philantrop@gentoo.org>
  +files/cmake-2.4.7-findkde4.patch, +cmake-2.4.7-r1.ebuild:
  Added an upstream patch to fix cmake failing to detect an existing KDE4
  installation if the program being built is not going to be installed in the
  same directory as KDE4. Fixes bug 191412. Thanks, Zephyrus, for reporting
  this and providing the patch!

  19 Jul 2007; Marcus D. Hanwell <cryos@gentoo.org> cmake-2.4.7.ebuild:
  Moved to testing, fixes bug 185832. Sorry.

*cmake-2.4.7 (18 Jul 2007)

  18 Jul 2007; Marcus D. Hanwell <cryos@gentoo.org> +cmake-2.4.7.ebuild:
  Version bump.

  26 Jun 2007; Lars Weiler <pylon@gentoo.org> cmake-2.4.6-r1.ebuild:
  Stable on ppc; bug #182724.

  21 Jun 2007; Raúl Porcel <armin76@gentoo.org> cmake-2.4.6-r1.ebuild:
  alpha/ia64/x86 stable wrt #182724

  21 Jun 2007; Jeroen Roovers <jer@gentoo.org> cmake-2.4.6-r1.ebuild:
  Stable for HPPA (bug #182724).

  21 Jun 2007; Gustavo Zacarias <gustavoz@gentoo.org> cmake-2.4.6-r1.ebuild:
  Stable on sparc wrt #182724

  21 Jun 2007; Joshua Kinard <kumba@gentoo.org> cmake-2.4.6-r1.ebuild:
  Stable on mips, per #182724.

  20 Jun 2007; Christoph Mende <angelos@gentoo.org> cmake-2.4.6-r1.ebuild:
  Stable on amd64 wrt bug 182724

  20 Jun 2007; Markus Rothe <corsair@gentoo.org> cmake-2.4.6-r1.ebuild:
  Stable on ppc64; bug #182724

*cmake-2.4.6-r1 (07 Jun 2007)

  07 Jun 2007; Wulf C. Krueger <philantrop@gentoo.org>
  +files/50cmake-gentoo.el, +files/cmake.vim, +cmake-2.4.6-r1.ebuild:
  Added patches by Jack Kelly from bug 180667 to add vim and emacs syntax
  files. Thanks, Jack!

*cmake-2.4.6 (29 Jan 2007)

  29 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> +cmake-2.4.6.ebuild:
  Version bump, closes bug #163487.

  04 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> cmake-2.0.6-r1.ebuild:
  Get rid of debug.eclass usage.

  16 Dec 2006; Stefan Schweizer <genstef@gentoo.org> cmake-2.4.5.ebuild:
  inherit qt3 to avoid sandbox violations thanks to Johannes Hirte
  <johannes-hirte@web.de> and Mike Arthur <mike@mikearthur.co.uk> in bug
  158161

*cmake-2.4.5 (13 Dec 2006)

  13 Dec 2006; Stefan Schweizer <genstef@gentoo.org>
  -files/cmake-2.0.6-rpath-fix.patch, -files/cmake-2.2.0-rpath-fix.patch,
  -files/cmake-2.2.1-rpath-fix.patch, -files/cmake-2.2.2-rpath-fix.patch,
  -files/cmake-2.2.3-rpath-fix.patch, -files/cmake-2.4.2-kde.patch,
  -files/cmake-2.4.2-rpath-fix.patch, -cmake-2.0.6-r1.ebuild,
  -cmake-2.2.0-r1.ebuild, -cmake-2.2.1.ebuild, -cmake-2.2.2.ebuild,
  -cmake-2.2.3.ebuild, -cmake-2.4.2.ebuild, -cmake-2.4.2-r1.ebuild,
  +cmake-2.4.5.ebuild:
  version bump

  08 Dec 2006; Jeroen Roovers <jer@gentoo.org> cmake-2.4.3.ebuild:
  Stable for HPPA (bug #155307).

  06 Dec 2006; Bryan Østergaard <kloeri@gentoo.org> cmake-2.4.3.ebuild:
  Stable on Alpha.

  01 Dec 2006; Gustavo Zacarias <gustavoz@gentoo.org> cmake-2.4.3.ebuild:
  Stable on sparc wrt #155307

  30 Nov 2006; Markus Rothe <corsair@gentoo.org> cmake-2.4.3.ebuild:
  Stable on ppc64; bug #155307

  30 Nov 2006; Christian Faulhammer <opfer@gentoo.org> cmake-2.4.3.ebuild:
  stable x86, bug #155307

  30 Nov 2006; Lars Weiler <pylon@gentoo.org> cmake-2.4.3.ebuild:
  Stable on ppc; bug #155307.

  29 Nov 2006; Steve Dibb <beandog@gentoo.org> cmake-2.4.3.ebuild:
  amd64 stable, fixed some copyright headers too, bug 155307

*cmake-2.4.4 (29 Nov 2006)

  29 Nov 2006; Stefan Schweizer <genstef@gentoo.org> +cmake-2.4.4.ebuild:
  Version bump thanks to    Didier Link <didier.link@wanadoo.fr> in bug 156582

  21 Oct 2006; Tobias Scherbaum <dertobi123@gentoo.org> cmake-2.2.1.ebuild:
  ppc stable

  24 Sep 2006; Daniel Black <dragonheart@gentoo.org> metadata.xml:
  herd kde to take maintainence thanks Diego

*cmake-2.4.3 (16 Sep 2006)

  16 Sep 2006; Daniel Black <dragonheart@gentoo.org> +cmake-2.4.3.ebuild:
  version bump as per bug #143337 thanks to Nick Bowler et al

  20 Jul 2006; <psi29a@gentoo.org> cmake-2.0.6-r1.ebuild:
  stable on mips

*cmake-2.4.2-r1 (30 Jun 2006)

  30 Jun 2006; Daniel Black <dragonheart@gentoo.org>
  +files/cmake-2.4.2-kde.patch, +cmake-2.4.2-r1.ebuild:
  removed rpath patch - nolonger needed as per bug #137918 thanks Dan. KDE 
  plugin path added as per bug #137918 thanks to Michael. KDE plugin path patch
  thanks to Andreas Beckermann kde bug #129737

  25 May 2006; Diego Pettenò <flameeyes@gentoo.org> cmake-2.4.2.ebuild:
  Add ~x86-fbsd keyword.

*cmake-2.4.2 (24 May 2006)

  24 May 2006; Daniel Black <dragonheart@gentoo.org>
  +files/cmake-2.4.2-rpath-fix.patch, +cmake-2.4.2.ebuild:
  verion bump as per bug #131080 thanks to Tobias Roeser, Diego, and others

  29 Apr 2006; Jason Wever <weeve@gentoo.org> cmake-2.0.6-r1.ebuild:
  Stable on SPARC.

  06 Feb 2006; Aron Griffis <agriffis@gentoo.org> cmake-2.2.1.ebuild:
  Mark 2.2.1 stable on alpha

  04 Feb 2006; Aron Griffis <agriffis@gentoo.org> cmake-2.2.1.ebuild:
  Mark 2.2.1 stable on ia64

*cmake-2.2.3 (16 Jan 2006)

  16 Jan 2006; Lisa Seelye <lisa@gentoo.org>
  +files/cmake-2.2.3-rpath-fix.patch, +cmake-2.2.3.ebuild:
  Version bump to solve bug #118822

*cmake-2.2.2 (08 Nov 2005)

  08 Nov 2005; Lisa Seelye <lisa@gentoo.org>
  +files/cmake-2.2.2-rpath-fix.patch, +cmake-2.2.2.ebuild:
  version bump to solve bug #111881

  29 Oct 2005; Daniel Goller <morfic@gentoo.org> cmake-2.2.1.ebuild:
  Stable on amd64

  02 Oct 2005; Daniel Black <dragonheart@gentoo.org> -cmake-2.0.5.ebuild,
  -cmake-2.0.6.ebuild:
  remove rpath vulnerable versions: bug 105721

  02 Oct 2005; Bryan Østergaard <kloeri@gentoo.org> cmake-2.0.6-r1.ebuild:
  Stable on ia64, bug 105721.

  29 Sep 2005; Fernando J. Pereda <ferdy@gentoo.org> cmake-2.0.6-r1.ebuild:
  stable on alpha wrt bug #105721

  26 Sep 2005; Stefan Briesenick <sbriesen@gentoo.org> cmake-2.2.1.ebuild:
  fixing parallel build problem (emake -j1).

*cmake-2.2.1 (26 Sep 2005)
*cmake-2.2.0-r1 (26 Sep 2005)
*cmake-2.0.6-r1 (26 Sep 2005)

  26 Sep 2005; Daniel Black <dragonheart@gentoo.org>
  +files/cmake-2.0.6-rpath-fix.patch, +files/cmake-2.2.0-rpath-fix.patch,
  +files/cmake-2.2.1-rpath-fix.patch, +cmake-2.0.6-r1.ebuild,
  -cmake-2.2.0.ebuild, +cmake-2.2.0-r1.ebuild, +cmake-2.2.1.ebuild:
  insecure runpaths as per security bug #105721 resulted in 2.2.0-r1 and
  2.0.6-r1. Thanks Ashu Tiwary. version bump to 2.2.1 as per bug #106781 by
  David Somers

  02 Sep 2005; Michael Hanselmann <hansmi@gentoo.org> cmake-2.0.6.ebuild:
  Stable on ppc.

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

*cmake-2.2.0 (20 Aug 2005)

  20 Aug 2005; Daniel Black <dragonheart@gentoo.org> -cmake-2.0.3.ebuild,
  cmake-2.0.6.ebuild, +cmake-2.2.0.ebuild:
  version bump (bug #99045). thanks david somers. x86 stable on 2.0.6. old
  version removal

  05 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> cmake-2.0.6.ebuild:
  Added ~mips.

  02 Jul 2005; Bryan Østergaard <kloeri@gentoo.org> cmake-2.0.5.ebuild:
  Stable on alpha.

  12 May 2005; Aron Griffis <agriffis@gentoo.org> cmake-2.0.6.ebuild:
  add ~ia64

  24 Apr 2005; Michael Hanselmann <hansmi@gentoo.org> cmake-2.0.5.ebuild:
  Stable on ppc.

*cmake-2.0.6 (21 Apr 2005)

  21 Apr 2005; Daniel Black <dragonheart@gentoo.org> +metadata.xml,
  +cmake-2.0.6.ebuild:
  Version bump as per bug #89394. Thanks to david somers
  <dsomers@treSPAM_FREEvezel.com>

  23 Mar 2005; Daniel Black <dragonheart@gentoo.org> -cmake-2.0.2.ebuild,
  cmake-2.0.5.ebuild:
  x86 stable as per bug #86292. Old version removal. Thanks to david somers
  <dsomers@trevezel.com>

  18 Jan 2005; Bryan Østergaard <kloeri@gentoo.org> cmake-2.0.3.ebuild:
  Stable on alpha.

*cmake-2.0.5 (01 Jan 2005)

  01 Jan 2005; Daniel Black <dragonheart@gentoo.org> -cmake-1.8.2.ebuild,
  -cmake-1.8.3.ebuild, cmake-2.0.2.ebuild, cmake-2.0.3.ebuild,
  +cmake-2.0.5.ebuild:
  version bump as per bug #76291.x86 keywords to 2.0.2 and 2.0.3. Remove
  old version 1.8.3.  Thanks to david somers <dsomers@trevezel.com> for 
  the notification. 

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

  24 Nov 2004; Karol Wojtaszek <sekretarz@gentoo.org> cmake-2.0.3.ebuild:
  Added to ~amd64, bug #72299

*cmake-2.0.3 (10 Aug 2004)

  10 Aug 2004; Mike Frysinger <vapier@gentoo.org> +cmake-2.0.3.ebuild:
  Version bump.

*cmake-2.0.2 (02 Jul 2004)

  02 Jul 2004; Lisa Seelye <lisa@gentoo.org> +cmake-2.0.2.ebuild:
  version bump for bug #55558

  03 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> cmake-1.8.3.ebuild:
  Stable on alpha.

*cmake-1.8.3 (24 Feb 2004)

  24 Feb 2004; Lisa Seelye <lisa@gentoo.org> cmake-1.8.1.ebuild,
  cmake-1.8.2.ebuild, cmake-1.8.3.ebuild:
  Remove old 1.8.1, bump 1.8.2 to stable on x86, add 1.8.3 to the tree to close
  bug #42613

*cmake-1.8.2 (09 Jan 2004)

  09 Jan 2004; Lisa Seelye <lisa@gentoo.org> cmake-1.8.2.ebuild:
  Version bump, closes bug #36619.

*cmake-1.8.1 (08 Dec 2003)

  08 Dec 2003; Lisa Seelye <lisa@gentoo.org> cmake-1.8.1.ebuild:
  Initial checkin. Submitted by Sam Yates <sam@quux.dropbear.id.au> to close bug
  25334.