summaryrefslogtreecommitdiff
blob: 8f3bb4af4cbc05afae79b74d988a66321bd5057a (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
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
# ChangeLog for app-editors/emacs-vcs
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-vcs/ChangeLog,v 1.48 2011/02/15 06:57:00 ulm Exp $

*emacs-vcs-23.2.94 (15 Feb 2011)

  15 Feb 2011; Ulrich Mueller <ulm@gentoo.org> -emacs-vcs-23.2.90.ebuild,
  -emacs-vcs-23.2.91.ebuild, +emacs-vcs-23.2.94.ebuild:
  New pretest version. Remove old.

  10 Feb 2011; Ulrich Mueller <ulm@gentoo.org> -emacs-vcs-23.2.9999.ebuild,
  emacs-vcs-23.2.9999-r1.ebuild, -emacs-vcs-24.0.50_pre20110116.ebuild,
  -emacs-vcs-24.0.9999.ebuild, emacs-vcs-24.0.9999-r1.ebuild:
  Adapt to updated bzr.eclass. Remove old.

  02 Feb 2011; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-24.0.9999-r1.ebuild:
  Emacs uses automake now.

*emacs-vcs-23.2.93 (01 Feb 2011)

  01 Feb 2011; Ulrich Mueller <ulm@gentoo.org> +emacs-vcs-23.2.93.ebuild:
  New pretest version.

  31 Jan 2011; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-24.0.9999.ebuild,
  emacs-vcs-24.0.9999-r1.ebuild:
  Fix version detection, bug 353324.

*emacs-vcs-24.0.9999-r1 (30 Jan 2011)
*emacs-vcs-23.2.9999-r1 (30 Jan 2011)

  30 Jan 2011; Ulrich Mueller <ulm@gentoo.org> +emacs-vcs-23.2.9999-r1.ebuild,
  +emacs-vcs-24.0.9999-r1.ebuild:
  Apply changes from prefix overlay. Remove warning about the CVS to BZR move;
  it's been more than one year ago. Remove sed tweak for FreeBSD, because it
  does not apply any more. Update ebuilds to EAPI 4.

  25 Jan 2011; Ulrich Mueller <ulm@gentoo.org>
  emacs-vcs-24.0.50_pre20110116.ebuild, emacs-vcs-24.0.9999.ebuild:
  Remove obsolete sed tweak for FreeBSD, it no longer applies to the file.

  19 Jan 2011; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-24.0.9999.ebuild:
  Call eautoreconf with AT_M4DIR=m4 in order to fix a failure in configure.

*emacs-vcs-24.0.50_pre20110116 (19 Jan 2011)

  19 Jan 2011; Ulrich Mueller <ulm@gentoo.org>
  +emacs-vcs-24.0.50_pre20110116.ebuild:
  Snapshot of trunk from before the gnulib merge; the live version currently
  fails to compile.

*emacs-vcs-23.2.92 (15 Jan 2011)

  15 Jan 2011; Ulrich Mueller <ulm@gentoo.org> +emacs-vcs-23.2.92.ebuild:
  New pretest version.

  29 Dec 2010; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-24.0.9999.ebuild:
  Don't hardcode user for game score files.

*emacs-vcs-23.2.91 (10 Dec 2010)

  10 Dec 2010; Ulrich Mueller <ulm@gentoo.org> +emacs-vcs-23.2.91.ebuild:
  New pretest version.

*emacs-vcs-23.2.90 (09 Nov 2010)

  09 Nov 2010; Ulrich Mueller <ulm@gentoo.org> +emacs-vcs-23.2.90.ebuild:
  Pretest for Emacs 23.3.

  07 Nov 2010; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-23.2.9999.ebuild,
  emacs-vcs-24.0.9999.ebuild:
  Depend on virtual/jpeg wrt bug 327487.

  03 Nov 2010; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-23.2.9999.ebuild:
  Pass the --with-crt-dir option to configure, as it was backported upstream.

  25 Oct 2010; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-23.2.9999.ebuild,
  emacs-vcs-24.0.9999.ebuild:
  Filter -fstack-protector and -fstack-protector-all flags that cause
  segmentation faults in hardened profiles. Bug 285778.

  21 Oct 2010; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-24.0.9999.ebuild:
  New USE flags: gnutls and selinux.

  13 Oct 2010; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-23.2.9999.ebuild,
  emacs-vcs-24.0.9999.ebuild:
  Create .keepinfodir file to prevent portage from rebuilding the Info dir,
  bug 257260.

  11 Oct 2010; Christian Faulhammer <fauli@gentoo.org>
  emacs-vcs-23.2.9999.ebuild, emacs-vcs-24.0.9999.ebuild:
  Update to new Bazaar smartserver repository URIs

  10 Oct 2010; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-23.2.9999.ebuild,
  emacs-vcs-24.0.9999.ebuild:
  Don't rename GNU Info files, bug 306445. Fix openmotif dependency.

  25 Sep 2010; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-23.2.9999.ebuild,
  emacs-vcs-24.0.9999.ebuild:
  Move regeneration of Info dir to pkg_preinst.

  22 Sep 2010; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-24.0.9999.ebuild:
  Add messages to "die" commands.

  13 Sep 2010; Christian Faulhammer <fauli@gentoo.org>
  emacs-vcs-24.0.9999.ebuild, metadata.xml:
  add support for XML parsing with dev-libs/libxml2, which is more efficient
  than the built-in Elisp parsers, configurable with USE=libxml2

  02 Sep 2010; Christian Faulhammer <fauli@gentoo.org>
  emacs-vcs-24.0.9999.ebuild, metadata.xml:
  Add imagemagick USE flag, as reported in bug 335265 by Tassilo Horn

  18 Jul 2010; Christian Faulhammer <fauli@gentoo.org>
  emacs-vcs-24.0.9999.ebuild:
  Don't let the build system compress the info files, as reported in bug
  328471 by Tassilo Horn <tassilo AT members DOT fsf DOT org>

  25 Jun 2010; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-23.2.9999.ebuild,
  emacs-vcs-24.0.9999.ebuild:
  Workaround for gcc 4.4 on ia64, bug 325373.

  18 May 2010; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-24.0.9999.ebuild:
  Version information is now in src/emacs.c, thanks to Tassilo Horn
  <tassilo@member.fsf.org> for reporting and providing a fix.

*emacs-vcs-23.2.9999 (08 May 2010)

  08 May 2010; Ulrich Mueller <ulm@gentoo.org> -emacs-vcs-23.1.95.ebuild,
  -emacs-vcs-23.1.96.ebuild, -emacs-vcs-23.1.97.ebuild,
  -emacs-vcs-23.1.9999-r3.ebuild, +emacs-vcs-23.2.9999.ebuild,
  emacs-vcs-24.0.9999.ebuild:
  Bump emacs-23 live ebuild to reflect upstream change of version number.
  Remove pretest ebuilds. In trunk version, add --with-crt-dir option to
  configure call, bug 306831.

*emacs-vcs-23.1.97 (04 May 2010)

  04 May 2010; Ulrich Mueller <ulm@gentoo.org> -emacs-vcs-23.1.93.ebuild,
  -emacs-vcs-23.1.94.ebuild, +emacs-vcs-23.1.97.ebuild:
  New (upstream says final) pretest for Emacs 23.2. Remove old.

  01 May 2010; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-23.1.95.ebuild,
  emacs-vcs-23.1.96.ebuild, emacs-vcs-23.1.9999-r3.ebuild,
  emacs-vcs-24.0.9999.ebuild:
  Revert change of 2010-04-08. Fix directory owner.

*emacs-vcs-23.1.96 (20 Apr 2010)

  20 Apr 2010; Ulrich Mueller <ulm@gentoo.org> +emacs-vcs-23.1.96.ebuild:
  New pretest version.

  08 Apr 2010; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-23.1.95.ebuild,
  emacs-vcs-23.1.9999-r3.ebuild, emacs-vcs-24.0.9999.ebuild:
  Fix owner of scores files.

*emacs-vcs-23.1.95 (03 Apr 2010)

  03 Apr 2010; Ulrich Mueller <ulm@gentoo.org> -emacs-vcs-23.1.90-r1.ebuild,
  -emacs-vcs-23.1.91.ebuild, -emacs-vcs-23.1.92.ebuild,
  +emacs-vcs-23.1.95.ebuild:
  New pretest version. Remove old.

*emacs-vcs-23.1.94 (11 Mar 2010)

  11 Mar 2010; Ulrich Mueller <ulm@gentoo.org> +emacs-vcs-23.1.94.ebuild:
  New pretest version.

*emacs-vcs-24.0.9999 (10 Mar 2010)

  10 Mar 2010; Ulrich Mueller <ulm@gentoo.org>
  -emacs-vcs-23.1.9999-r50.ebuild, +emacs-vcs-24.0.9999.ebuild:
  Upstream has changed version number of trunk from 23.1.93 to 24.0.50.

*emacs-vcs-23.1.9999-r50 (10 Mar 2010)
*emacs-vcs-23.1.9999-r3 (10 Mar 2010)

  10 Mar 2010; Ulrich Mueller <ulm@gentoo.org>
  -emacs-vcs-23.1.9999-r2.ebuild, +emacs-vcs-23.1.9999-r3.ebuild,
  +emacs-vcs-23.1.9999-r50.ebuild:
  Upstream repository has been branched for the 23.2 release. 23.1.9999-r3 is
  the live ebuild for the emacs-23 branch, 23.1.9999-r50 for the trunk.

*emacs-vcs-23.1.93 (26 Feb 2010)

  26 Feb 2010; Ulrich Mueller <ulm@gentoo.org> +emacs-vcs-23.1.93.ebuild:
  New pretest version.

  13 Feb 2010; Raúl Porcel <armin76@gentoo.org>
  emacs-vcs-23.1.9999-r2.ebuild:
  Add ~alpha/~arm/~s390/~sh wrt #297581

*emacs-vcs-23.1.92 (30 Jan 2010)

  30 Jan 2010; Ulrich Mueller <ulm@gentoo.org> +emacs-vcs-23.1.92.ebuild:
  New pretest version.

  22 Jan 2010; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-23.1.90-r1.ebuild,
  emacs-vcs-23.1.91.ebuild, emacs-vcs-23.1.9999-r2.ebuild:
  Depend on SLOT 0 of media-libs/jpeg, as requested by ssuominen.

  16 Jan 2010; Ulrich Mueller <ulm@gentoo.org> emacs-vcs-23.1.90-r1.ebuild,
  emacs-vcs-23.1.91.ebuild, emacs-vcs-23.1.9999-r2.ebuild:
  Restore note in pkg_postinst that Emacs needs fonts, bug 137598.

  05 Jan 2010; Ulrich Mueller <ulm@gentoo.org>
  emacs-vcs-23.1.9999-r2.ebuild:
  Revert previous change, as upstream has renamed emacs-23 back to trunk.
  Fixes bug 299667.

  04 Jan 2010; Ulrich Mueller <ulm@gentoo.org>
  emacs-vcs-23.1.9999-r2.ebuild:
  Upstream renamed the "trunk" to "emacs-23".

*emacs-vcs-23.1.91 (31 Dec 2009)

  31 Dec 2009; Ulrich Mueller <ulm@gentoo.org> +emacs-vcs-23.1.91.ebuild:
  New pretest version.

*emacs-vcs-23.1.9999-r2 (27 Dec 2009)
*emacs-vcs-23.1.90-r1 (27 Dec 2009)

  27 Dec 2009; Ulrich Mueller <ulm@gentoo.org> +emacs-vcs-23.1.90-r1.ebuild,
  +emacs-vcs-23.1.9999-r2.ebuild, +metadata.xml:
  Package move from app-editors/emacs-cvs to app-editors/emacs-vcs; upstream
  now use Bazaar as their VCS. Dropped alpha, arm, s390, sh, and sparc-fbsd
  keywords for live ebuild because they are missing from dev-util/bzr.

  15 Dec 2009; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-23.1.90.ebuild,
  emacs-cvs-23.1.9999-r1.ebuild:
  Change X11 to MIT in LICENSE.

*emacs-cvs-23.1.90 (09 Dec 2009)

  09 Dec 2009; Ulrich Mueller <ulm@gentoo.org> +emacs-cvs-23.1.90.ebuild:
  Pretest for Emacs 23.2.

  17 Nov 2009; Ulrich Mueller <ulm@gentoo.org>
  emacs-cvs-23.1.9999-r1.ebuild, metadata.xml:
  Add gconf USE flag.

  20 Aug 2009; Ulrich Mueller <ulm@gentoo.org>
  emacs-cvs-23.1.9999-r1.ebuild:
  Be more conservative when rearranging the INFOPATH in the site-init file,
  in order to respect any local directories. Fixes bug 281979.

*emacs-cvs-23.1.9999-r1 (30 Jul 2009)

  30 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
  -emacs-cvs-23.1.9999.ebuild, +emacs-cvs-23.1.9999-r1.ebuild:
  revision bump for Emacs CVS HEAD so a proper executable is installed with
  no conflicts with Emacs 23 release

  30 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
  -emacs-cvs-23.0.94.ebuild, -files/emacs-23.0.94-handle-xz-suffix.patch,
  -emacs-cvs-23.0.95.ebuild, -emacs-cvs-23.0.96.ebuild,
  -emacs-cvs-23.0.9999-r2.ebuild:
  clean up

  14 Jul 2009; Ulrich Mueller <ulm@gentoo.org>
  -files/emacs-23.0.92-sh.patch, -emacs-cvs-23.0.93.ebuild,
  emacs-cvs-23.0.96.ebuild, emacs-cvs-23.0.9999-r2.ebuild,
  emacs-cvs-23.1.9999.ebuild:
  Bring postinst message in line with app-editors/emacs. Remove old.

*emacs-cvs-23.0.96 (09 Jul 2009)

  09 Jul 2009; Ulrich Mueller <ulm@gentoo.org> +emacs-cvs-23.0.96.ebuild:
  New (final?) pretest version.

*emacs-cvs-23.1.9999 (21 Jun 2009)
*emacs-cvs-23.0.9999-r2 (21 Jun 2009)

  21 Jun 2009; Ulrich Mueller <ulm@gentoo.org>
  -emacs-cvs-23.0.9999-r1.ebuild, +emacs-cvs-23.0.9999-r2.ebuild,
  +emacs-cvs-23.1.9999.ebuild:
  Upstream CVS has been branched for the 23.1 release. 23.0.9999-r2 is the
  live ebuild for the EMACS_23_1_RC branch, 23.1.9999 for the trunk.

*emacs-cvs-23.0.95 (19 Jun 2009)

  19 Jun 2009; Ulrich Mueller <ulm@gentoo.org> -emacs-cvs-23.0.90.ebuild,
  -emacs-cvs-23.0.91.ebuild, -emacs-cvs-23.0.92.ebuild,
  +emacs-cvs-23.0.95.ebuild, emacs-cvs-23.0.9999-r1.ebuild:
  New pretest version. Don't assign FULL_VERSION twice. Remove old.

  07 Jun 2009; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-23.0.90.ebuild,
  emacs-cvs-23.0.91.ebuild, emacs-cvs-23.0.92.ebuild,
  emacs-cvs-23.0.93.ebuild, emacs-cvs-23.0.94.ebuild,
  emacs-cvs-23.0.9999-r1.ebuild:
  Add unicode to LICENSE, see upstream bug 3428.

  28 May 2009; Christian Faulhammer <fauli@gentoo.org>
  emacs-cvs-23.0.90.ebuild, emacs-cvs-23.0.91.ebuild,
  emacs-cvs-23.0.92.ebuild, emacs-cvs-23.0.93.ebuild,
  emacs-cvs-23.0.94.ebuild, emacs-cvs-23.0.9999-r1.ebuild:
  Remove USE=spell from all ebuilds, we don't want such dependencies, see
  bug 72850#c1

  24 May 2009; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-23.0.94.ebuild:
  Update SRC_URI, upstream tarball appeared.

*emacs-cvs-23.0.94 (23 May 2009)

  23 May 2009; Ulrich Mueller <ulm@gentoo.org> +emacs-cvs-23.0.94.ebuild,
  +files/emacs-23.0.94-handle-xz-suffix.patch:
  New prerelease version. Made own tarball from xdelta file, since upstream
  doesn't (yet?) provide a tarball for this version. Add patch to handle
  xz-compressed files.

*emacs-cvs-23.0.93 (01 May 2009)

  01 May 2009; Ulrich Mueller <ulm@gentoo.org> +emacs-cvs-23.0.93.ebuild,
  emacs-cvs-23.0.9999-r1.ebuild:
  New prerelease version from upstream. Remove "freetype" configure option.

  05 Apr 2009; Raúl Porcel <armin76@gentoo.org> emacs-cvs-23.0.92.ebuild,
  emacs-cvs-23.0.9999-r1.ebuild:
  Add ~sh wrt #238712

  04 Apr 2009; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-23.0.92-sh.patch, emacs-cvs-23.0.92.ebuild,
  emacs-cvs-23.0.9999-r1.ebuild:
  Add __sh__ to the garbage collector conditional in gnu-linux.h. Turn off
  optimisation on sh, in order to fix the build failure of bug 262359.

*emacs-cvs-23.0.92 (31 Mar 2009)

  31 Mar 2009; Ulrich Mueller <ulm@gentoo.org> +emacs-cvs-23.0.92.ebuild:
  New prerelease version from upstream.

  26 Mar 2009; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-23.0.90.ebuild,
  emacs-cvs-23.0.91.ebuild, emacs-cvs-23.0.9999-r1.ebuild:
  Remove redundant WANT_AUTO{CONF,MAKE} settings.

  12 Mar 2009; Ulrich Mueller <ulm@gentoo.org>
  -emacs-cvs-23.0.60_pre20090125.ebuild, emacs-cvs-23.0.90.ebuild,
  emacs-cvs-23.0.91.ebuild, -emacs-cvs-23.0.9999.ebuild,
  emacs-cvs-23.0.9999-r1.ebuild:
  Fix dependencies: package x11-misc/emacs-desktop was moved to
  app-emacs/emacs-common-gentoo; aspell/ispell is not needed at build time.
  No longer install subdirs.el since it is now part of emacs-common-gentoo.
  Remove old.

*emacs-cvs-23.0.91 (26 Feb 2009)

  26 Feb 2009; Ulrich Mueller <ulm@gentoo.org> +emacs-cvs-23.0.91.ebuild:
  New prerelease version from upstream.

  17 Feb 2009; Ulrich Mueller <ulm@gentoo.org>
  emacs-cvs-23.0.60_pre20090125.ebuild, emacs-cvs-23.0.90.ebuild,
  emacs-cvs-23.0.9999.ebuild, emacs-cvs-23.0.9999-r1.ebuild:
  Prefer aspell over ispell, following upstream.

*emacs-cvs-23.0.90 (02 Feb 2009)

  02 Feb 2009; Ulrich Mueller <ulm@gentoo.org>
  -files/emacs-cvs-freebsd-sparc-1.patch,
  -emacs-cvs-23.0.60_pre20081226.ebuild, +emacs-cvs-23.0.90.ebuild:
  Pretest for Emacs 23.1. Remove old snapshot.

*emacs-cvs-23.0.9999-r1 (25 Jan 2009)
*emacs-cvs-23.0.60_pre20090125 (25 Jan 2009)

  25 Jan 2009; Ulrich Mueller <ulm@gentoo.org>
  +emacs-cvs-23.0.60_pre20090125.ebuild, +emacs-cvs-23.0.9999-r1.ebuild:
  New snapshot. Unified ebuild for live CVS, snapshot and pretest versions.
  Change EAPI to 2 for SLOT dependencies and IUSE defaults.

  23 Jan 2009; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-23.0.9999.ebuild:
  Remove patch for sparc-fbsd since it was applied upstream, bug 159584.

  05 Jan 2009; Markus Meier <maekke@gentoo.org> metadata.xml:
  drop local xft USE-flag description, as it's global now

  04 Jan 2009; Ulrich Mueller <ulm@gentoo.org>
  emacs-cvs-23.0.60_pre20081226.ebuild, emacs-cvs-23.0.9999.ebuild:
  Change virtual/xft dependency to x11-libs/libXft, bug 253771.

  30 Dec 2008; Raúl Porcel <armin76@gentoo.org> emacs-cvs-23.0.9999.ebuild:
  Add ~arm/~s390 wrt #238712

*emacs-cvs-23.0.60_pre20081226 (26 Dec 2008)

  26 Dec 2008; Ulrich Mueller <ulm@gentoo.org>
  +emacs-cvs-23.0.60_pre20081226.ebuild:
  Snapshot with precompiled elisp files, to ease testing on embedded archs.

  17 Dec 2008; Ulrich Mueller <ulm@gentoo.org>
  files/emacs-cvs-freebsd-sparc-1.patch:
  New patch for sparc-fbsd, bug 159584.

  29 Nov 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-23.0.9999.ebuild:
  Add site initialisation for Info, so that Emacs' dir is first in list;
  this will also help to get the right documentation if Emacs is started
  as emacs-${SLOT}. Rename site-init file to 20${PN}-${SLOT}-gentoo.el.

  26 Nov 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-23.0.9999.ebuild:
  Handle the FEATURES=noinfo case in emacs-infodir-rebuild; don't create a
  spurious Info dir file when called with no files in postrm phase.

  19 Nov 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-23.0.9999.ebuild:
  Update LICENSE: Add as-is and X11 for oldXMenu and etc/rgb.txt,
  respectively. Add W3C, see etc/schema/README. Update to FDL-1.3, following
  upstream relicensing of the documentation.

  23 Sep 2008; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-23.0.9999.ebuild:
  remove note about to be installed fonts

  14 Sep 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-23.0.9999.ebuild:
  Be less verbose, bug 237546.

  06 Sep 2008; Ulrich Mueller <ulm@gentoo.org>
  -files/emacs-cvs-Xaw3d-headers.patch, -emacs-cvs-22.2.9999.ebuild:
  Remove dysfunctional ebuild for Emacs 22 branch.

  05 Sep 2008; Christian Faulhammer <opfer@gentoo.org>
  -emacs-cvs-22.2.90.ebuild, -emacs-cvs-22.2.91.ebuild,
  -emacs-cvs-22.2.92.ebuild:
  22.3 has been officially released, so kill pretest versions

*emacs-cvs-22.2.92 (03 Sep 2008)

  03 Sep 2008; Ulrich Mueller <ulm@gentoo.org> +emacs-cvs-22.2.92.ebuild,
  emacs-cvs-22.2.9999.ebuild:
  New (presumably final) pretest version. Add blocker against pretest version
  in app-editors/emacs.

*emacs-cvs-22.2.91 (26 Aug 2008)

  26 Aug 2008; Ulrich Mueller <ulm@gentoo.org> +emacs-cvs-22.2.91.ebuild:
  New pretest version.

  20 Aug 2008; Ulrich Mueller <ulm@gentoo.org>
  -files/emacs-cvs-freebsd-sparc.patch,
  -emacs-cvs-23.0.50_pre20080201.ebuild, emacs-cvs-23.0.9999.ebuild:
  Configure options "font-backend" and "carbon" are no longer supported.
  Remove old snapshot.

*emacs-cvs-22.2.90 (15 Aug 2008)

  15 Aug 2008; Ulrich Mueller <ulm@gentoo.org> +emacs-cvs-22.2.90.ebuild,
  emacs-cvs-22.2.9999.ebuild:
  Emacs 22.3 pretest. Update patch for sparc-fbsd also for Emacs 22 branch.

  28 Jul 2008; Ulrich Mueller <ulm@gentoo.org> metadata.xml:
  Add USE flag description to metadata wrt GLEP 56.

  09 Jul 2008; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-cvs-freebsd-sparc-1.patch, emacs-cvs-23.0.9999.ebuild:
  Update patch for sparc-fbsd, bug 231243.

  04 Jun 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.2.9999.ebuild,
  emacs-cvs-23.0.50_pre20080201.ebuild, emacs-cvs-23.0.9999.ebuild:
  Warn about inconsistent toolkit USE flags.

  01 Jun 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.2.9999.ebuild,
  emacs-cvs-23.0.50_pre20080201.ebuild, emacs-cvs-23.0.9999.ebuild:
  Cleanup after bootstrapping, to prevent dumping emacs again in src_install.
  Depend on x11-libs/openmotif explicitely for USE=motif.

  28 Mar 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.2.9999.ebuild,
  emacs-cvs-23.0.50_pre20080201.ebuild, emacs-cvs-23.0.9999.ebuild:
  Add keepdir for site-lisp directory. Activate test for version number again.

  26 Mar 2008; Ulrich Mueller <ulm@gentoo.org> -emacs-cvs-22.1.91.ebuild,
  -emacs-cvs-22.1.92.ebuild, emacs-cvs-22.2.9999.ebuild:
  Remove pretest versions. Remove blocker on emacs-22.2.

*emacs-cvs-23.0.9999 (26 Mar 2008)
*emacs-cvs-22.2.9999 (26 Mar 2008)

  26 Mar 2008; Ulrich Mueller <ulm@gentoo.org> -emacs-cvs-22.1.9999.ebuild,
  +emacs-cvs-22.2.9999.ebuild, -emacs-cvs-23.0.60-r2.ebuild,
  +emacs-cvs-23.0.9999.ebuild:
  Rename, to reflect upstream change of version number and to emphasise that
  these are live CVS ebuilds.

*emacs-cvs-22.1.92 (07 Mar 2008)

  07 Mar 2008; Ulrich Mueller <ulm@gentoo.org> -emacs-cvs-22.1.90.ebuild,
  +emacs-cvs-22.1.92.ebuild:
  New pretest. Remove old.

  28 Feb 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-23.0.60-r2.ebuild:
  Drop libotf USE flag; Upstream says that libotf without m17n-flt is useless.

  21 Feb 2008; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-23.0.60-r2.ebuild:
  README.unicode does not need to be installed anymore, see bug 210950,
  reported by Tassilo Horn <tassilo@member.fsf.org>

  20 Feb 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-23.0.60-r2.ebuild:
  Add support for usage of m17n-lib for text shaping.

*emacs-cvs-22.1.91 (20 Feb 2008)

  20 Feb 2008; Ulrich Mueller <ulm@gentoo.org> +emacs-cvs-22.1.91.ebuild:
  New Emacs 22.2 pretest version.

  11 Feb 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.90.ebuild,
  emacs-cvs-22.1.9999.ebuild, emacs-cvs-23.0.50_pre20080201.ebuild,
  emacs-cvs-23.0.60-r2.ebuild:
  Don't unset LDFLAGS, bug 77430.

  09 Feb 2008; Jeroen Roovers <jer@gentoo.org>
  emacs-cvs-23.0.50_pre20080201.ebuild, emacs-cvs-23.0.60-r2.ebuild:
  Marked ~hppa too.

  06 Feb 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-23.0.60-r2.ebuild:
  Remove --with-gtk configure option, upstream dropped support for it.

  02 Feb 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.90.ebuild,
  emacs-cvs-22.1.9999.ebuild, emacs-cvs-23.0.50_pre20080201.ebuild,
  emacs-cvs-23.0.60-r2.ebuild:
  Remove empty Info directory after unmerge.

*emacs-cvs-23.0.50_pre20080201 (01 Feb 2008)

  01 Feb 2008; Ulrich Mueller <ulm@gentoo.org>
  +emacs-cvs-23.0.50_pre20080201.ebuild, emacs-cvs-23.0.60-r2.ebuild:
  Snapshot of CVS trunk, tagged "before-merge-unicode-to-trunk". Add libotf
  local USE flag.

*emacs-cvs-23.0.60-r2 (01 Feb 2008)

  01 Feb 2008; Christian Faulhammer <opfer@gentoo.org>
  -emacs-cvs-23.0.50-r1.ebuild, -emacs-cvs-23.0.60-r1.ebuild,
  +emacs-cvs-23.0.60-r2.ebuild:
  unicode-2 branch is merged to mainline, so reflect this in ebuilds

  01 Feb 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.90.ebuild,
  emacs-cvs-22.1.9999.ebuild, emacs-cvs-23.0.50-r1.ebuild,
  emacs-cvs-23.0.60-r1.ebuild:
  Change to new syntax of eselect-emacs.

*emacs-cvs-22.1.9999 (31 Jan 2008)
*emacs-cvs-22.1.90 (31 Jan 2008)

  31 Jan 2008; Ulrich Mueller <ulm@gentoo.org> -emacs-cvs-22.1.50-r2.ebuild,
  +emacs-cvs-22.1.90.ebuild, +emacs-cvs-22.1.9999.ebuild:
  Upstream snapshot, Emacs 22.2 pretest.

  30 Jan 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.50-r2.ebuild,
  emacs-cvs-23.0.50-r1.ebuild, emacs-cvs-23.0.60-r1.ebuild:
  Add missing dependency on pkgconfig.

  30 Jan 2008; Ulrich Mueller <ulm@gentoo.org>
  -files/emacs-cvs-format-int.patch,
  -files/emacs-cvs-hack-local-variables.patch,
  -files/emacs-cvs-make-tramp-temp-file.patch,
  -files/emacs-cvs-makeinfo-regexp.patch,
  -files/emacs-cvs-no-x-compile.patch,
  -emacs-cvs-22.1.50_p20070829-r2.ebuild,
  -emacs-cvs-23.0.0_p20070920-r1.ebuild:
  Remove old CVS snapshots.

  26 Jan 2008; Ulrich Mueller <ulm@gentoo.org>
  -files/emacs-cvs-disable_alsa_detection-r1.patch,
  emacs-cvs-22.1.50-r2.ebuild, emacs-cvs-22.1.50_p20070829-r2.ebuild,
  emacs-cvs-23.0.0_p20070920-r1.ebuild, emacs-cvs-23.0.50-r1.ebuild,
  emacs-cvs-23.0.60-r1.ebuild:
  The ALSA disable patch failed (again) on the trunk. Replace it by sed magic.

  10 Jan 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-23.0.50-r1.ebuild,
  emacs-cvs-23.0.60-r1.ebuild:
  Remove desktop and icon files to avoid collisions between SLOTs and with
  x11-misc/emacs-desktop. Thanks to Stelian Ionescu for pointing this out.

  02 Jan 2008; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.50-r2.ebuild,
  emacs-cvs-22.1.50_p20070829-r2.ebuild,
  emacs-cvs-23.0.0_p20070920-r1.ebuild, emacs-cvs-23.0.50-r1.ebuild,
  emacs-cvs-23.0.60-r1.ebuild:
  Remove explicit zlib dependency.

  28 Dec 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.50-r2.ebuild,
  emacs-cvs-22.1.50_p20070829-r2.ebuild,
  emacs-cvs-23.0.0_p20070920-r1.ebuild, emacs-cvs-23.0.50-r1.ebuild,
  emacs-cvs-23.0.60-r1.ebuild:
  Include net-libs/liblockfile in dependencies, fixes bug #203624.

  13 Dec 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-23.0.60-r1.ebuild:
  add dbus support

  02 Dec 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.50-r2.ebuild,
  emacs-cvs-22.1.50_p20070829-r2.ebuild,
  emacs-cvs-23.0.0_p20070920-r1.ebuild, emacs-cvs-23.0.50-r1.ebuild,
  emacs-cvs-23.0.60-r1.ebuild:
  Declare some variables as local, add some quotes.

  02 Dec 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-23.0.50-r1.ebuild:
  make activation of dbus support possible

  01 Dec 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.50-r2.ebuild,
  emacs-cvs-22.1.50_p20070829-r2.ebuild,
  emacs-cvs-23.0.0_p20070920-r1.ebuild, emacs-cvs-23.0.50-r1.ebuild,
  emacs-cvs-23.0.60-r1.ebuild:
  Rename site-init file for USE=source.

*emacs-cvs-23.0.0_p20070920-r1 (27 Nov 2007)
*emacs-cvs-22.1.50_p20070829-r2 (27 Nov 2007)

  27 Nov 2007; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-cvs-format-int.patch, -emacs-cvs-22.1.50-r1.ebuild,
  -emacs-cvs-22.1.50_p20070829-r1.ebuild,
  +emacs-cvs-22.1.50_p20070829-r2.ebuild,
  -emacs-cvs-23.0.0_p20070920.ebuild, +emacs-cvs-23.0.0_p20070920-r1.ebuild,
  -emacs-cvs-23.0.50.ebuild, -emacs-cvs-23.0.60.ebuild:
  Synchronize CVS snapshots with app-editors/emacs; fixes buffer overflow in
  format function, CVE-2007-6109, security bug #200297. Remove old.

*emacs-cvs-23.0.60-r1 (27 Nov 2007)
*emacs-cvs-23.0.50-r1 (27 Nov 2007)
*emacs-cvs-22.1.50-r2 (27 Nov 2007)

  27 Nov 2007; Christian Faulhammer <opfer@gentoo.org>
  +emacs-cvs-22.1.50-r2.ebuild, +emacs-cvs-23.0.50-r1.ebuild,
  +emacs-cvs-23.0.60-r1.ebuild:
  rev-bump to force rebuild for users with more current codebase
  due to security bug 200297

  22 Nov 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.50-r1.ebuild,
  emacs-cvs-22.1.50_p20070829-r1.ebuild, emacs-cvs-23.0.0_p20070920.ebuild,
  emacs-cvs-23.0.50.ebuild, emacs-cvs-23.0.60.ebuild:
  Fix alsa dependency, thanks Flameeyes for pointing this out.

  12 Nov 2007; Jeroen Roovers <jer@gentoo.org> emacs-cvs-22.1.50-r1.ebuild:
  Marked ~hppa (bug #198668).

  11 Nov 2007; Raúl Porcel <armin76@gentoo.org>
  emacs-cvs-22.1.50-r1.ebuild, emacs-cvs-23.0.50.ebuild:
  Add ~alpha/~ia64 wrt #198668

  05 Nov 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.50-r1.ebuild,
  emacs-cvs-22.1.50_p20070829-r1.ebuild, emacs-cvs-23.0.0_p20070920.ebuild,
  emacs-cvs-23.0.50.ebuild, emacs-cvs-23.0.60.ebuild:
  New kerberos USE flag.

  03 Nov 2007; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-cvs-hack-local-variables.patch,
  emacs-cvs-22.1.50_p20070829-r1.ebuild, emacs-cvs-23.0.0_p20070920.ebuild:
  Security fix for function hack-local-variables, CVE-2007-5795, bug #197958.

  24 Oct 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.50-r1.ebuild,
  emacs-cvs-22.1.50_p20070829-r1.ebuild, emacs-cvs-23.0.0_p20070920.ebuild,
  emacs-cvs-23.0.50.ebuild, emacs-cvs-23.0.60.ebuild:
  Add standard comment to site-init file.

  13 Oct 2007; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-cvs-no-x-compile.patch, emacs-cvs-23.0.0_p20070920.ebuild:
  Fix compilation failure with USE=-X.

*emacs-cvs-23.0.60 (12 Oct 2007)

  12 Oct 2007; Ulrich Mueller <ulm@gentoo.org> +emacs-cvs-23.0.60.ebuild:
  Live CVS ebuild for unicode-2 branch.

  12 Oct 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.50-r1.ebuild,
  emacs-cvs-22.1.50_p20070829-r1.ebuild, emacs-cvs-23.0.0_p20070920.ebuild,
  emacs-cvs-23.0.50.ebuild:
  Clarify wording of postinst message, thanks to hkbst for suggesting this.

*emacs-cvs-23.0.0_p20070920 (12 Oct 2007)

  12 Oct 2007; Ulrich Mueller <ulm@gentoo.org>
  -files/emacs-cvs-22.1.50_p20070829-makeinfo-regexp.patch,
  +files/emacs-cvs-makeinfo-regexp.patch,
  +emacs-cvs-23.0.0_p20070920.ebuild:
  Snapshot of Emacs unicode-2 branch, before the multi-tty merge.

  12 Oct 2007; Ulrich Mueller <ulm@gentoo.org> -emacs-cvs-23.0.0-r7.ebuild:
  Remove defunct ebuild for unicode-2 branch.

  10 Oct 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.1.50-r1.ebuild, emacs-cvs-22.1.50_p20070829-r1.ebuild,
  emacs-cvs-23.0.0-r7.ebuild, emacs-cvs-23.0.50.ebuild:
  remove PROVIDE=virtual/editor as we have now a new-style virtual

  09 Oct 2007; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-cvs-22.1.50_p20070829-makeinfo-regexp.patch,
  emacs-cvs-22.1.50_p20070829-r1.ebuild:
  Fix makeinfo version regexp.

*emacs-cvs-22.1.50_p20070829-r1 (06 Oct 2007)

  06 Oct 2007; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-cvs-make-tramp-temp-file.patch, emacs-cvs-22.1.50-r1.ebuild,
  -emacs-cvs-22.1.50_p20070829.ebuild,
  +emacs-cvs-22.1.50_p20070829-r1.ebuild, emacs-cvs-23.0.0-r7.ebuild,
  emacs-cvs-23.0.50.ebuild:
  Fix tramp-make-tramp-temp-file vulnerability, bug #194713. Quote ${ROOT}.

  18 Sep 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.50-r1.ebuild,
  emacs-cvs-22.1.50_p20070829.ebuild, emacs-cvs-23.0.0-r7.ebuild,
  emacs-cvs-23.0.50.ebuild:
  Change WANT_AUTOCONF to "latest" following a change in autotools.eclass.
  Fixes bugs #192894 and #192923.

  12 Sep 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-23.0.50.ebuild:
  AUTHORS and CONTRIBUTE are installed by the Makefile, so no need to do a
  separate dodoc

  11 Sep 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-23.0.50.ebuild:
  upstream changed location of two documentation files, adjust dodoc command;
  fixes bug 192227, reported by Graham Murray <graham@gmurray.org.uk>

  30 Aug 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.50-r1.ebuild,
  emacs-cvs-23.0.0-r7.ebuild, emacs-cvs-23.0.50.ebuild:
  Remove non-existent file README.multi-tty from dodoc, fixes bug #190762.
  Moved some comments.

*emacs-cvs-22.1.50_p20070829 (29 Aug 2007)

  29 Aug 2007; Ulrich Mueller <ulm@gentoo.org>
  +emacs-cvs-22.1.50_p20070829.ebuild:
  Snapshot before-merge-multi-tty-to-trunk, i.e. of the last Emacs 22 version
  in the CVS trunk.

*emacs-cvs-23.0.50 (29 Aug 2007)

  29 Aug 2007; Ulrich Mueller <ulm@gentoo.org> +emacs-cvs-23.0.50.ebuild,
  -emacs-cvs-23.0.51-r1.ebuild:
  Upstream changed version number from 23.0.51 to 23.0.50, details in #190621.

*emacs-cvs-23.0.51-r1 (29 Aug 2007)
*emacs-cvs-23.0.0-r7 (29 Aug 2007)
*emacs-cvs-22.1.50-r1 (29 Aug 2007)

  29 Aug 2007; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-cvs-Xaw3d-headers.patch, -emacs-cvs-22.1.50.ebuild,
  +emacs-cvs-22.1.50-r1.ebuild, -emacs-cvs-23.0.0-r6.ebuild,
  +emacs-cvs-23.0.0-r7.ebuild, +emacs-cvs-23.0.51-r1.ebuild:
  Upstream merge of multi-tty branch; CVS head has now version 23.0.51. New
  ebuild for EMACS_22_BASE branch; version 22.1.50.

  25 Aug 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.1.50.ebuild, emacs-cvs-23.0.0-r6.ebuild:
  add BSD license because of etags binary, which initial version has been
    licensed thereunder

  22 Aug 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.1.50.ebuild:
  remove a spurious blank...and no thanks to ulm for spotting this

  22 Aug 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.1.50.ebuild:
  adding SVG support by USE=svg

  21 Aug 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.50.ebuild,
  emacs-cvs-23.0.0-r6.ebuild:
  Check for change of upstream version number. Sync suffix handling. Generate
  score files in pkg_postinst.

  30 Jul 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-23.0.0-r6.ebuild:
  Update licence info to GPL-3.

  25 Jul 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.1.50.ebuild:
  changed LICENSE to GPL-3

  24 Jun 2007; Ulrich Mueller <ulm@gentoo.org>
  -files/emacs-cvs-Xaw3d-headers.patch,
  -files/emacs-cvs-disable_alsa_detection.patch, -emacs-cvs-22.0.990.ebuild:
  Remove old version.

  19 Jun 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.50.ebuild,
  emacs-cvs-23.0.0-r6.ebuild:
  Depend on virtual/motif and remove lesstif USE flag.

  17 Jun 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-23.0.0-r6.ebuild:
  Skip Xaw3d headers patch for unicode-2 branch, too. Fixes #182326.

  15 Jun 2007; Ulrich Mueller <ulm@gentoo.org>
  -files/emacs-cvs-temacs-prerequisite.patch, emacs-cvs-23.0.0-r6.ebuild:
  Undo yesterday's change since today the patch is already applied upstream.

  14 Jun 2007; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-cvs-temacs-prerequisite.patch, emacs-cvs-23.0.0-r6.ebuild:
  Fix "temacs: command not found" build problem.

  14 Jun 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.50.ebuild:
  Skip Xaw3d headers patch since it was applied upstream.

  13 Jun 2007; Ulrich Mueller <ulm@gentoo.org> -files/emacs.desktop.in,
  -files/emacs-cvs-nofink.patch, -files/emacs-subdirs-el-gentoo.diff,
  emacs-cvs-22.1.50.ebuild, -emacs-cvs-23.0.0-r1.ebuild,
  emacs-cvs-23.0.0-r6.ebuild:
  Remove unnecessary gif/ungif patch. Configure now supports "use_with hesiod"
  properly. Add support for gpm USE flag. Clean up.

  12 Jun 2007; Ulrich Mueller <ulm@gentoo.org> -emacs-cvs-22.0.97.ebuild:
  Remove old version.

  12 Jun 2007; Diego Pettenò <flameeyes@gentoo.org>
  emacs-cvs-22.1.50.ebuild:
  Add ~sparc-fbsd keyword.

  06 Jun 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.1.50.ebuild:
  Include check for change of upstream version number.

  02 Jun 2007; Ulrich Mueller <ulm@gentoo.org> -emacs-cvs-22.0.99.ebuild,
  -emacs-cvs-22.0.9999-r10.ebuild:
  Clean up, following release of Emacs 22.1.

  01 Jun 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.0.990.ebuild,
  emacs-cvs-22.0.9999-r10.ebuild, emacs-cvs-22.1.50.ebuild,
  emacs-cvs-23.0.0-r6.ebuild:
  Specify --infodir for configure.

  31 May 2007; Diego Pettenò <flameeyes@gentoo.org>
  emacs-cvs-22.0.990.ebuild, emacs-cvs-22.1.50.ebuild:
  Add ~x86-fbsd keyword.

  31 May 2007; Diego Pettenò <flameeyes@gentoo.org>
  emacs-cvs-23.0.0-r1.ebuild, emacs-cvs-23.0.0-r6.ebuild:
  Add ~x86-fbsd keywords to -r1 and -r6 as per bug #174891.

  30 May 2007; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-cvs-disable_alsa_detection-r1.patch,
  emacs-cvs-22.0.9999-r10.ebuild, emacs-cvs-22.1.50.ebuild,
  emacs-cvs-23.0.0-r6.ebuild:
  Fix alsa detection patch.

  29 May 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.0.990.ebuild,
  emacs-cvs-22.0.9999-r10.ebuild, emacs-cvs-22.1.50.ebuild,
  emacs-cvs-23.0.0-r6.ebuild:
  Fix logic for USE=-motif. Handle the case that no toolkit was specified
  (i.e. -gtk -Xaw3d -motif). Variables in canonical order.

  23 May 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.0.990.ebuild,
  emacs-cvs-22.0.9999-r10.ebuild, emacs-cvs-22.1.50.ebuild,
  emacs-cvs-23.0.0-r6.ebuild:
  Change RESTRICT="nostrip" to "strip" everywhere.

*emacs-cvs-22.0.990 (17 May 2007)

  17 May 2007; Ulrich Mueller <ulm@gentoo.org> -emacs-cvs-22.0.98.ebuild,
  +emacs-cvs-22.0.990.ebuild, emacs-cvs-22.0.9999-r10.ebuild,
  emacs-cvs-22.1.50.ebuild, emacs-cvs-23.0.0-r6.ebuild:
  Version bump; logic of toolkit USE flags fixed. Clean up old version.

  15 May 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.0.97.ebuild,
  emacs-cvs-22.0.98.ebuild, emacs-cvs-22.0.99.ebuild,
  emacs-cvs-22.0.9999-r10.ebuild, emacs-cvs-22.1.50.ebuild,
  emacs-cvs-23.0.0-r1.ebuild, emacs-cvs-23.0.0-r6.ebuild:
  Don't provide virtual/emacs, it is a new-style virtual now.

  15 May 2007; Tony Vroon <chainsaw@gentoo.org> emacs-cvs-22.0.99.ebuild,
  emacs-cvs-22.0.9999-r10.ebuild, emacs-cvs-22.1.50.ebuild:
  Add ~ppc keywording, tested on a PowerBook 5,9 with GCC 4.1.2; as requested
  by Opfer.

  30 Apr 2007; Tony Vroon <chainsaw@gentoo.org> emacs-cvs-23.0.0-r6.ebuild:
  Add ~ppc keywor. Tested on a PowerBook 5,9 with GCC 4.1.2

  29 Apr 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.0.99.ebuild,
  emacs-cvs-22.1.50.ebuild:
  Synchronise keywords in newer versions.

  28 Apr 2007; Markus Rothe <corsair@gentoo.org> emacs-cvs-22.0.98.ebuild,
  emacs-cvs-22.0.9999-r10.ebuild, emacs-cvs-23.0.0-r6.ebuild:
  Added ~ppc64; bug #174891

*emacs-cvs-22.1.50 (26 Apr 2007)

  26 Apr 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.0.98.ebuild,
  emacs-cvs-22.0.99.ebuild, emacs-cvs-22.0.9999-r10.ebuild,
  +emacs-cvs-22.1.50.ebuild, emacs-cvs-23.0.0-r6.ebuild:
  New live CVS ebuild for Emacs 22 trunk. Fixed parameter expansion for file
  name of man pages.

  25 Apr 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.0.97.ebuild,
  emacs-cvs-23.0.0-r1.ebuild:
  Change SLOT also in old ebuilds to reflect slotmove.

  24 Apr 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.9999-r10.ebuild:
  new branch has been opened, this is now reflected in the ebuild

*emacs-cvs-22.0.99 (24 Apr 2007)

  24 Apr 2007; Ulrich Mueller <ulm@gentoo.org> +emacs-cvs-22.0.99.ebuild:
  Version bump.

  20 Apr 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.0.98.ebuild,
  -emacs-cvs-22.0.9999-r7.ebuild, emacs-cvs-22.0.9999-r10.ebuild,
  emacs-cvs-23.0.0-r6.ebuild:
  Test for previous symlink and eselect the same SLOT, also for live CVS
  ebuild. Added braces to variable name; split some long lines. Removed old
  broken revision.

  19 Apr 2007; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-cvs-Xaw3d-headers.patch, emacs-cvs-22.0.98.ebuild,
  emacs-cvs-22.0.9999-r10.ebuild, emacs-cvs-23.0.0-r6.ebuild:
  Upstream patch for proper including of Xaw3d headers; removed build-time
  dependency on x11-libs/libXaw; bug #174453.

  18 Apr 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.0.98.ebuild,
  emacs-cvs-22.0.9999-r10.ebuild, emacs-cvs-23.0.0-r6.ebuild:
  Duplicate "--with-x-toolkit=lucid" removed since "athena" and "lucid" are
  just synonyms. Thanks to <aryixb@gmail.com> for pointing this out.

  18 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  emacs-cvs-22.0.98.ebuild, emacs-cvs-22.0.9999-r10.ebuild,
  emacs-cvs-23.0.0-r6.ebuild:
  Keyworded ~sparc wrt #174891

  17 Apr 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.98.ebuild, emacs-cvs-22.0.9999-r10.ebuild,
  emacs-cvs-23.0.0-r6.ebuild:
  keyworded ~amd64, bug 174891

  17 Apr 2007; Ulrich Mueller <ulm@gentoo.org> emacs-cvs-22.0.98.ebuild,
  emacs-cvs-22.0.9999-r10.ebuild:
  Removed dodoc MAINTAINERS since the file is not in the snapshot.

  17 Apr 2007; Ulrich Mueller <ulm@gentoo.org> -emacs-cvs-22.0.96.ebuild,
  -emacs-cvs-22.0.9999-r6.ebuild:
  Old versions removed.

*emacs-cvs-22.0.98 (17 Apr 2007)

  17 Apr 2007; Ulrich Mueller <ulm@gentoo.org> +emacs-cvs-22.0.98.ebuild:
  Taken from Emacs overlay: Prepare for new eselect module; new sound and
  hesiod USE flags; dropped gnome USE flag; removed font dependencies for X;
  suffix of emacs executable changed from .emacs- to -emacs- for better
  compatibility with XEmacs; SLOT changed to 22. Request AUTOCONF 2.61 instead
  of latest, fixes bug #170969. Remove colliding files between slots, fixes
  bug #169033.

  16 Apr 2007; Ulrich Mueller <ulm@gentoo.org> -files/emacs-22.0.50.desktop,
  -files/emacs-23.0.0.desktop, -files/50emacs-23.0.0.envd,
  -files/emacs-cvs-blessmail-build.patch,
  -files/emacs-cvs-darwin-fsf-gcc.patch:
  Clean up.

*emacs-cvs-23.0.0-r6 (16 Apr 2007)
*emacs-cvs-22.0.9999-r10 (16 Apr 2007)

  16 Apr 2007; Christian Faulhammer <opfer@gentoo.org>
  +files/emacs-cvs-disable_alsa_detection.patch,
  +emacs-cvs-22.0.9999-r10.ebuild, +emacs-cvs-23.0.0-r6.ebuild:
  prepared for new eselect module, no more automagic dependencies, cleanups
  and straighter ebuild. Taken from Emacs Overlay

  11 Apr 2007; <tester@gentoo.org> emacs-cvs-23.0.0-r1.ebuild:
  Commenting out non-working patch

  04 Apr 2007; Fabian Groffen <grobian@gentoo.org> emacs-cvs-22.0.96.ebuild,
  emacs-cvs-22.0.97.ebuild, emacs-cvs-22.0.9999-r6.ebuild,
  emacs-cvs-22.0.9999-r7.ebuild:
  Dropped ppc-macos keywords, see you in prefix

*emacs-cvs-22.0.9999-r7 (04 Apr 2007)
*emacs-cvs-22.0.97 (04 Apr 2007)

  04 Apr 2007; Christian Faulhammer <opfer@gentoo.org>
  +emacs-cvs-22.0.97.ebuild, +emacs-cvs-22.0.9999-r7.ebuild:
  bumps to newer upstream CVS tags

  26 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  -emacs-cvs-22.0.95-r1.ebuild, -emacs-cvs-22.0.9999-r5.ebuild:
  clean up

*emacs-cvs-22.0.9999-r6 (20 Mar 2007)
*emacs-cvs-22.0.96 (20 Mar 2007)

  20 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  +emacs-cvs-22.0.96.ebuild, +emacs-cvs-22.0.9999-r6.ebuild:
  version bump for 22.0.96 pretest

  18 Mar 2007; Fabian Groffen <grobian@gentoo.org>
  -files/emacs-cvs-21.3.50-nofink.diff,
  +files/emacs-cvs-darwin-fsf-gcc.patch, +files/emacs-cvs-nofink.patch,
  emacs-cvs-22.0.95-r1.ebuild, emacs-cvs-22.0.9999-r5.ebuild,
  emacs-cvs-23.0.0-r1.ebuild:
  Dropped ppc-macos keyword, see you in prefix

  16 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.95-r1.ebuild, emacs-cvs-22.0.9999-r5.ebuild:
  request AUTOCONF 2.61 instead of latest. Fixes bug 170969, reported by
  <lkml_ccc@yahoo.it>

  12 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.95-r1.ebuild, emacs-cvs-22.0.9999-r5.ebuild:
  remove the dir file in the correct place and also remove desktop entry for
  live ebuild, fixes bug 170133

  07 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  -files/40aspell-gentoo.el, emacs-cvs-22.0.95-r1.ebuild,
  emacs-cvs-22.0.9999-r5.ebuild, emacs-cvs-23.0.0-r1.ebuild:
  removed aspell activation, as Emacs detects that itself

  07 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  -emacs-cvs-22.0.95.ebuild, emacs-cvs-22.0.95-r1.ebuild,
  -emacs-cvs-22.0.9999-r4.ebuild, emacs-cvs-22.0.9999-r5.ebuild:
  corrected behaviour for copying subdirs.el and clean up

*emacs-cvs-22.0.9999-r5 (04 Mar 2007)
*emacs-cvs-22.0.95-r1 (04 Mar 2007)

  04 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  +emacs-cvs-22.0.95-r1.ebuild, +emacs-cvs-22.0.9999-r5.ebuild:
  make subdirs patch obsolete by some changes in the ebuild and straighten
  behaviour for USE=gzip-el

  02 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.95.ebuild, emacs-cvs-22.0.9999-r4.ebuild,
  emacs-cvs-23.0.0-r1.ebuild:
  removed virtual/x11 from dependencies

  02 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  -emacs-cvs-22.0.94.ebuild, -emacs-cvs-22.0.9999-r3.ebuild:
  clean up

*emacs-cvs-22.0.9999-r4 (02 Mar 2007)
*emacs-cvs-22.0.95 (02 Mar 2007)

  02 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  -emacs-cvs-22.0.93-r2.ebuild, +emacs-cvs-22.0.95.ebuild,
  -emacs-cvs-22.0.9999-r2.ebuild, +emacs-cvs-22.0.9999-r4.ebuild:
  revision bump to new pretest versions

  27 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.94.ebuild, emacs-cvs-22.0.9999-r3.ebuild:
  removed a dot

  26 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.94.ebuild:
  corrected SLOT

*emacs-cvs-22.0.9999-r3 (26 Feb 2007)
*emacs-cvs-22.0.94 (26 Feb 2007)

  26 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  +emacs-cvs-22.0.94.ebuild, +emacs-cvs-22.0.9999-r3.ebuild:
  if USE=gzip-el is not set, Emacs' build system will not compress el files
  even if the gzip binary is found; 22.0.94: A new pretest version has been
  released; 22.0.9999-r3: Fitted SLOT to the new pretest version

  20 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  +files/emacs-cvs-blessmail-build.patch, emacs-cvs-22.0.93-r2.ebuild:
  patch for handling a possible compilation error in special cases where Emacs
  was called without disabling the start-up file (bug 166059). Everything
  provided by Ulrich Mueller <ulm@kph.uni-mainz.de>

  08 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.93-r2.ebuild, emacs-cvs-22.0.9999-r2.ebuild:
  repair inclusion of motif; correct handling of USE flags; thanks to John R.
  Graham <john_r_graham@mindspring.com> in bug 165663

  06 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.93-r2.ebuild, emacs-cvs-22.0.9999-r2.ebuild:
  made the definition of suffix variable more elegant (thanks to Ulrich
  Müller <ulm@kph.uni-mainz.de>

  04 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  -emacs-cvs-22.0.93-r1.ebuild, emacs-cvs-22.0.93-r2.ebuild,
  -emacs-cvs-22.0.9999-r1.ebuild, emacs-cvs-22.0.9999-r2.ebuild:
  add a check for uncompressed man pages and clean up

  03 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.93-r2.ebuild, emacs-cvs-22.0.9999-r2.ebuild:
  determine compression suffix correctly and finally

  02 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.93-r2.ebuild, emacs-cvs-22.0.9999-r2.ebuild:
  hopefully fix man page symlinks again

*emacs-cvs-22.0.9999-r2 (02 Feb 2007)
*emacs-cvs-22.0.93-r2 (02 Feb 2007)

  02 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  +emacs-cvs-22.0.93-r2.ebuild, +emacs-cvs-22.0.9999-r2.ebuild:
  create symlinks for man pages, as reported by Ulrich Mueller
  <ulm@kph.uni-mainz.de>
  remove some tabs in IUSE
  correct (hopefully) .desktop entry

  02 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.93-r1.ebuild, emacs-cvs-22.0.9999-r1.ebuild:
  supress error message of a file removal

  01 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.93-r1.ebuild, emacs-cvs-22.0.9999-r1.ebuild:
  correct usage of USE=gtk flag; reported by Christoph Lange <langec@web.de>
  in bug 164857

  01 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  -emacs-cvs-22.0.92-r1.ebuild, -emacs-cvs-22.0.93.ebuild,
  -emacs-cvs-22.0.9999.ebuild:
  clean up

  01 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.93-r1.ebuild, emacs-cvs-22.0.9999-r1.ebuild:
  finally fix the dir file compression

  31 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.93-r1.ebuild, emacs-cvs-22.0.9999-r1.ebuild:
  fix (hack, we wait for the proper solution) for the compression of dir file,
  see bug #162675, reported by Tassilo Horn <tassilo@member.fsf.org>

  30 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.9999-r1.ebuild:
  remove all references to mudflap

  30 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.9999-r1.ebuild:
  corrected working directory

*emacs-cvs-22.0.9999-r1 (30 Jan 2007)
*emacs-cvs-22.0.93-r1 (30 Jan 2007)

  30 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  +emacs-cvs-22.0.93-r1.ebuild, +emacs-cvs-22.0.9999-r1.ebuild:
  revision bump: more USE flags: alsa gnome better calling of configure
  options slightly modified some output added a lot of quotes to prevent
  directory names with spaces from breaking the emerge process .93-r1 does not
  checkout a live CVS tag, but downloads a prepared snapshot based on the
  ideas of ArYiX <aryixb@gmail.com> in bug #164164

  29 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  -emacs-cvs-22.0.91.ebuild, -emacs-cvs-22.0.92.ebuild:
  clean up

  29 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-23.0.0-r1.ebuild:
  also fix double compressed info files for this version

*emacs-cvs-22.0.93 (26 Jan 2007)

  26 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  +emacs-cvs-22.0.93.ebuild, emacs-cvs-22.0.9999.ebuild:
  added new tag ebuild, corrected slot for live ebuild

*emacs-cvs-22.0.9999 (26 Jan 2007)
*emacs-cvs-22.0.92-r1 (26 Jan 2007)

  26 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  +emacs-cvs-22.0.92-r1.ebuild, +emacs-cvs-22.0.9999.ebuild:
  fixed double compression of info documentation, reported by Tassilo Horn
  <tassilo@member.fsf.org> in bug #162675 added a live cvs ebuild, again

  05 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.91.ebuild, emacs-cvs-22.0.92.ebuild,
  emacs-cvs-23.0.0-r1.ebuild:
  don't depend on portage

  05 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  -files/xft-bgalpha.patch, -files/xft-invertcursor.patch,
  -files/xft-xfaces-fixcrash.patch:
  remove unecessary patches

*emacs-cvs-22.0.92 (05 Jan 2007)

  05 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-cvs-22.0.91.ebuild, +emacs-cvs-22.0.92.ebuild:
  reflect branching from upstream CVS server correctly. Thanks to John R.
  Graham <john_r_graham@mindspring.com>, who pointed out the correct solution
  in bug #158730

  05 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  -emacs-cvs-22.0.50-r1.ebuild, -emacs-cvs-22.0.50-r2.ebuild,
  -emacs-cvs-22.0.50-r3.ebuild, -emacs-cvs-22.0.90.ebuild,
  -emacs-cvs-23.0.0.ebuild:
  punt old versions

  02 Jan 2007; Diego Pettenò <flameeyes@gentoo.org>
  +files/emacs-cvs-freebsd-sparc.patch, emacs-cvs-22.0.91.ebuild,
  emacs-cvs-23.0.0-r1.ebuild:
  Add patch to build on Gentoo/FreeBSD/SPARC64, see bug #159584. Add
  ~sparc-fbsd keywords.

  29 Dec 2006; Christian Faulhammer <opfer@gentoo.org> emacs-cvs-22.0.91.ebuild:
  changed SVN version to 22.0.92, as reported in bug #158730 by Graham Murray
  <gmurray@webwayone.co.uk>

  29 Nov 2006; Timothy Redaelli <drizzt@gentoo.org>
  emacs-cvs-23.0.0-r1.ebuild:
  Removed ~x86-fbsd keyword since it will not compile with the new
  freebsd-contrib.

  27 Nov 2006; Diego Pettenò <flameeyes@gentoo.org>
  emacs-cvs-23.0.0-r1.ebuild:
  Add ~x86-fbsd keyword.

*emacs-cvs-22.0.91 (20 Nov 2006)

  20 Nov 2006; Christian Faulhammer <opfer@gentoo.org>
  +emacs-cvs-22.0.91.ebuild:
  bump, to reflect upstream's changes, reported by Martin Schoenmakers
  <aiviru@diamond-age.net> and Christer Ekholm <che@chrekh.se> in bug 155690

*emacs-cvs-23.0.0-r1 (30 Oct 2006)

  30 Oct 2006; Matthew Kennedy <mkennedy@gentoo.org>
  +files/emacs.desktop.in, emacs-cvs-22.0.90.ebuild,
  +emacs-cvs-23.0.0-r1.ebuild:
  Merge emacs-22 ebuild to emacs-23 ebuild; Correct desktop file slotting;
  Resolves Bug #153174.

*emacs-cvs-22.0.90 (28 Oct 2006)

  28 Oct 2006; Matthew Kennedy <mkennedy@gentoo.org>
  +emacs-cvs-22.0.90.ebuild:
  New upstream (pre-release version numbers).

  23 Aug 2006; Matthew Kennedy <mkennedy@gentoo.org>
  emacs-cvs-22.0.50-r3.ebuild, emacs-cvs-23.0.0.ebuild:
  New USE flag toolkit-scroll-bar added; Resolves Bug #83472.

  21 Aug 2006; Matthew Kennedy <mkennedy@gentoo.org>
  emacs-cvs-22.0.50-r3.ebuild:
  Note that emacs requires fonts in pkg_postinst.

  18 Aug 2006; Matthew Kennedy <mkennedy@gentoo.org>
  emacs-cvs-22.0.50-r3.ebuild:
  Support gzip-el USE flag which will compress the bundled Emacs Lisp source
  files during installation.

*emacs-cvs-22.0.50-r3 (07 Aug 2006)

  07 Aug 2006; Matthew Kennedy <mkennedy@gentoo.org>
  +emacs-cvs-22.0.50-r3.ebuild:
  Remove the (commented out) XFT support in favour of the emacs-unicode-2
  branch support in the emacs-cvs-23.0.0 ebuild; Support the source USE flag
  which would install the Emacs C source.

  26 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
  emacs-cvs-22.0.50-r2.ebuild:
  Add ~x86-fbsd keyword.

  17 Jun 2006; Matthew Kennedy <mkennedy@gentoo.org>
  emacs-cvs-23.0.0.ebuild:
  Support for XFT options; Resolves Bug #136922.

  29 Apr 2006; Matthew Kennedy <mkennedy@gentoo.org>
  emacs-cvs-22.0.50-r2.ebuild:
  Once more, disable the sandbox for src_compile; Resolves Bug #131505.

  27 Apr 2006; Alec Warner <antarus@gentoo.org>
  files/digest-emacs-cvs-22.0.50-r1, files/digest-emacs-cvs-22.0.50-r2,
  files/digest-emacs-cvs-23.0.0, Manifest:
  Fixing duff SHA256 digests: Bug # 131293

  29 Mar 2006; Emanuele Giaquinta <exg@gentoo.org>
  emacs-cvs-22.0.50-r2.ebuild:
  Enable sandbox. Remove useless nls use flag.

*emacs-cvs-22.0.50-r2 (17 Mar 2006)

  17 Mar 2006; Matthew Kennedy <mkennedy@gentoo.org>
  +emacs-cvs-22.0.50-r2.ebuild:
  Don't use --with-x-toolkit=athena in the Xaw3d case; Disable the sandbox for
  src_compile() only.

  06 Mar 2006; Matthew Kennedy <mkennedy@gentoo.org>
  files/emacs-subdirs-el-gentoo.diff:
  Create new emacs-subdirs-el-gentoo.diff for latest CVS; Resolves Bug #124999.

  26 Feb 2006; Matthew Kennedy <mkennedy@gentoo.org>
  -files/50emacs-22.0.50.envd, emacs-cvs-22.0.50-r1.ebuild,
  emacs-cvs-23.0.0.ebuild:
  Restore mistakenly removed ~arch keywords; Resolves Bug #124158; Generate
  the /etc/env.d/50emacs-cvs-${SLOT} file from a here document rather than
  maintaining one in ${FILESDIR}; Initial work toward supporting
  find-function-C-source.

  25 Feb 2006; Matthew Kennedy <mkennedy@gentoo.org>
  -emacs-cvs-22.0.50.ebuild:
  Removing the last ebuild which contained stable keywords. This is usually
  against policy, but since this is a live CVS ebuild and Bug #22225 has been
  resolved this should be OK; Resolves Bug #83136.

*emacs-cvs-22.0.50-r1 (09 Feb 2006)

  09 Feb 2006; Matthew Kennedy <mkennedy@gentoo.org>
  +files/xft-bgalpha.patch, +files/xft-invertcursor.patch,
  +files/xft-xfaces-fixcrash.patch, emacs-cvs-22.0.50.ebuild,
  +emacs-cvs-22.0.50-r1.ebuild, emacs-cvs-23.0.0.ebuild:
  Some unfinished experimental XFT support; Modular X dependencies.

  18 Dec 2005; Brent Baude <ranger@gentoo.org> emacs-cvs-23.0.0.ebuild:
  Marked ~ppc64 per bug 115361

  17 Dec 2005; Mamoru KOMACHI <usata@gentoo.org> emacs-cvs-22.0.50.ebuild,
  emacs-cvs-23.0.0.ebuild:
  Updated cvs server configuration. Thanks to joslwah@gmail.com; bug #115361.

  03 May 2005; Mamoru KOMACHI <usata@gentoo.org>
  files/emacs-22.0.50.desktop, files/emacs-23.0.0.desktop,
  -files/emacs.desktop, emacs-cvs-22.0.50.ebuild, emacs-cvs-23.0.0.ebuild:
  Install desktop entry to /usr/share/applications, under
  Categories=Appliation;Development;. Thanks to Akos Ladanyi
  <ladanyi@tmit.bme.hu>; bug #89757. Use giflib instead of libungif;
  bug #85720.

  05 Mar 2005; Mamoru KOMACHI <usata@gentoo.org> -emacs-cvs-21.3.50.ebuild,
  emacs-cvs-22.0.50.ebuild, emacs-cvs-23.0.0.ebuild:
  unset LDFLAGS; bug #77430.

  05 Mar 2005; Joseph Jezak <josejx@gentoo.org> emacs-cvs-22.0.50.ebuild:
  Marked ppc stable for bug #83136.

  26 Feb 2005; Jason Wever <weeve@gentoo.org> emacs-cvs-22.0.50.ebuild:
  Stable on sparc wrt bug #83136.

  26 Feb 2005; Mamoru KOMACHI <usata@gentoo.org> emacs-cvs-22.0.50.ebuild,
  emacs-cvs-23.0.0.ebuild:
  Fixed nofink patch filename on ppc-macos.

  25 Feb 2005; Mamoru KOMACHI <usata@gentoo.org> emacs-cvs-22.0.50.ebuild:
  Marked stable on x86. See bug #83136.

*emacs-cvs-23.0.0 (16 Feb 2005)

  16 Feb 2005; Mamoru KOMACHI <usata@gentoo.org>
  +files/50emacs-22.0.50.envd, +files/50emacs-23.0.0.envd,
  -files/emacs-22.0.0.desktop, +files/emacs-23.0.0.desktop,
  -emacs-cvs-22.0.0-r1.ebuild, -emacs-cvs-22.0.0.ebuild,
  emacs-cvs-22.0.50.ebuild, +emacs-cvs-23.0.0.ebuild:
  emacs-unicode-2 branch was tagged as 23.0.0

*emacs-cvs-22.0.0-r1 (11 Feb 2005)

  11 Feb 2005; Mamoru KOMACHI <usata@gentoo.org>
  +files/emacs-22.0.0.desktop, +emacs-cvs-22.0.0-r1.ebuild:
  More slot friendly.

*emacs-cvs-22.0.50 (11 Feb 2005)

  11 Feb 2005; Mamoru KOMACHI <usata@gentoo.org>
  +files/emacs-22.0.50.desktop, +emacs-cvs-22.0.50.ebuild:
  Version bumped. See bug #81551.

  16 Dec 2004; Mamoru KOMACHI <usata@gentoo.org>
  -emacs-cvs-21.3.50-r1.ebuild, emacs-cvs-21.3.50-r2.ebuild,
  emacs-cvs-21.3.50.ebuild, emacs-cvs-22.0.0.ebuild:
  Removed dependency to pexpect and gdbm; bug #74368.

*emacs-cvs-21.3.50-r2 (25 Nov 2004)

  25 Nov 2004; Mamoru KOMACHI <usata@gentoo.org>
  +emacs-cvs-21.3.50-r2.ebuild:
  Added aqua USE flag. Changed binary suffix to .emacs-${SLOT}; see bug #62991.

  14 Oct 2004; Mamoru KOMACHI <usata@gentoo.org>
  +files/emacs-cvs-21.3.50-nofink.diff, emacs-cvs-21.3.50-r1.ebuild:
  Added to ~ppc-macos. This closes bug #64352.

  03 Oct 2004; Mamoru KOMACHI <usata@gentoo.org>
  +files/50emacs-21.3.50.envd, +files/emacs-21.3.50.desktop,
  +files/emacs-subdirs-el-gentoo.diff, emacs-cvs-21.3.50-r1.ebuild,
  emacs-cvs-21.3.50.ebuild:
  Don't unset CFLAGS/CXXFLAGS; use strip-flags instead. More on SLOT support.

*emacs-cvs-22.0.0 (02 Jul 2004)
*emacs-cvs-21.3.50-r1 (02 Jul 2004)

  02 Jul 2004; Mamoru KOMACHI <usata@gentoo.org> +emacs-cvs-21.3.50-r1.ebuild,
  +emacs-cvs-22.0.0.ebuild:
  Added emacs-unicode-2 branch, partial SLOT support.

  29 Jun 2004; Aron Griffis <agriffis@gentoo.org> emacs-cvs-21.3.50.ebuild:
  sync IUSE (+gif, +jpeg, +png, +tiff, -gtk2)

  24 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org>
  emacs-cvs-21.3.50.ebuild:
  don't use deprecated ? : use syntax

  04 Jan 2004; Jeremy Maitin-Shepard <jbms@gentoo.org>
  emacs-cvs-21.3.50.ebuild:
  Changed ebuild to handle CVS SSH key checking.  Fixed dependencies and
  made minor changes to USE-flag-handling code.

  21 Nov 2003; MATSUU Takuto <matsuu@gentoo.org> emacs-cvs-21.3.50.ebuild:
  Marked ~amd64

  23 Sep 2003; Mamoru KOMACHI <usata@gentoo.org> emacs-cvs-21.3.50.ebuild:
  Defaults to use aspell if installed, see Bug #28527

  21 Sep 2003; Mamoru KOMACHI <usata@gentoo.org> emacs-cvs-21.3.50.ebuild:
  Emacs can use either ispell or aspell, also suggested in Bug #28527

  13 Sep 2003; Mamoru KOMACHI <usata@gentoo.org> emacs-cvs-21.3.50.ebuild:
  Added spell IUSE flag and DEPENDs on ispell iff USE="spell".
  Thanks to Jos Romildo Malaquias <romildo@uber.com.br> for reporting
  the bug in Bug #28527.

  27 Jun 2003; Matthew Kennedy <mkennedy@gentoo.org> emacs-cvs-21.3.50.ebuild:
  leave debugging symbols, unset CFLAGS, CPPFLAGS

  04 Jun 2003; Matthew Kennedy <mkennedy@gentoo.org> emacs-cvs-21.3.50.ebuild:
  back to stable keywords -- see bug 22225

*emacs-cvs-21.3.50 (22 Nov 2002)

  16 Apr 2003; Matthew Kennedy <mkennedy@gentoo.org> emacs-cvs-21.3.50.ebuild:
  if gtk || gt2, then configure with gtk2 support (bug #18828)

  01 Apr 2003; Matthew Kennedy <mkennedy@gentoo.org> emacs-cvs-21.3.50.ebuild:
  revised libungif dep

  12 Mar 2003; Matthew Kennedy <mkennedy@gentoo.org>
  emacs-cvs-21.3.50.ebuid :
  Added support for GTK+ 2. Added GNOME menu support.

  06 Jan 2003; Seemant Kulleen <seemant@gentoo.org> emacs-cvs-21.3.50.ebuild :
  PROVIDE virtual/editor in addition to virtual/emacs

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords

  06 Dec 2002; Matthew Kennedy <mkennedy@gentoo.org> ChangeLog,
  emacs-cvs-21.3.50.ebuild :
  Back out of last ChangeLog entry as consensus on -core seems to be that
  -cvs ebuilds should not be in the stable profiles. Added fix for info
  documentation file names.

  02 Dev 2002; Matthew Kennedy <mkennedy@gentoo.org> ChangeLog,
  emacs-cvs-21.3.50.ebuild :
  Moved out of ~x86 into x86 (only for x86) by popular request. Reduced
  dependency on ncurses to version 5.2 and added missing dev-util/cvs
  dependency.

  22 Nov 2002; Matthew Kennedy <mkennedy@gentoo.org> ChangeLog,
  emacs-cvs-21.3.50.ebuild, files/digest-emacs-cvs-21.3.50 :
  Initial import.