summaryrefslogtreecommitdiff
blob: d38a95ecb5377489bbf63a09289681944ae14eb6 (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
# ChangeLog for app-editors/emacs
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.365 2010/01/25 18:43:47 armin76 Exp $

  25 Jan 2010; Raúl Porcel <armin76@gentoo.org> emacs-22.3-r3.ebuild,
  emacs-23.1-r2.ebuild:
  arm/ia64/s390/sh stable wrt #296159

  22 Jan 2010; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r19.ebuild,
  emacs-22.3-r3.ebuild, emacs-23.1-r2.ebuild:
  Depend on SLOT 0 of media-libs/jpeg, as requested by ssuominen.

  16 Jan 2010; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r19.ebuild,
  emacs-22.3-r3.ebuild, emacs-23.1-r2.ebuild:
  Restore note in pkg_postinst that Emacs needs fonts, bug 137598.

  01 Jan 2010; Tobias Klausmann <klausman@gentoo.org> emacs-23.1-r2.ebuild:
  Stable on alpha, bug #296159

  01 Jan 2010; Tobias Klausmann <klausman@gentoo.org> emacs-22.3-r3.ebuild:
  Stable on alpha, bug #296159

  30 Dec 2009; Ulrich Mueller <ulm@gentoo.org> emacs-18.59-r6.ebuild:
  Drop X support for Emacs 18, because libX11[-xcb] will go away.
  See bug 260676 comment #14. Remove "as-is" from LICENSE.

  28 Dec 2009; nixnut <nixnut@gentoo.org> emacs-22.3-r3.ebuild,
  emacs-23.1-r2.ebuild:
  ppc stable #296159

  27 Dec 2009; Ulrich Mueller <ulm@gentoo.org> emacs-22.3-r2.ebuild,
  emacs-22.3-r3.ebuild, emacs-23.1.ebuild, emacs-23.1-r2.ebuild:
  Update blockers after package move from emacs-cvs to emacs-vcs.

  20 Dec 2009; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r19.ebuild,
  emacs-22.3-r3.ebuild:
  Remove old compatibility code. Replace sed tweak by proper patch.

  15 Dec 2009; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r19.ebuild,
  emacs-22.3-r2.ebuild, emacs-22.3-r3.ebuild, emacs-23.1.ebuild,
  emacs-23.1-r2.ebuild:
  Change X11 to MIT in LICENSE.

  11 Dec 2009; Tiago Cunha <tcunha@gentoo.org> emacs-22.3-r3.ebuild,
  emacs-23.1-r2.ebuild:
  stable sparc, bug 296159

  10 Dec 2009; Markus Meier <maekke@gentoo.org> emacs-22.3-r3.ebuild,
  emacs-23.1-r2.ebuild:
  amd64/x86 stable, bug #296159

  09 Dec 2009; Brent Baude <ranger@gentoo.org> emacs-22.3-r3.ebuild,
  emacs-23.1-r2.ebuild:
  Marking emacs-22.3-r3 and emacs-23.1-r2 ppc64 for bug 296159

  09 Dec 2009; Jeroen Roovers <jer@gentoo.org> emacs-22.3-r3.ebuild:
  Remove obsolete replace-flags call. Stable for HPPA (bug #296159).

  08 Dec 2009; Jeroen Roovers <jer@gentoo.org> emacs-23.1-r2.ebuild:
  Stable for HPPA (bug #296159).

  25 Nov 2009; Markus Meier <maekke@gentoo.org> emacs-18.59-r6.ebuild:
  amd64 stable, bug #259916

  09 Nov 2009; Ulrich Mueller <ulm@gentoo.org> emacs-22.3-r3.ebuild,
  emacs-23.1-r2.ebuild:
  Fix undefined reference to x_any_window_to_frame in xterm.c, bug 292492.
  This regression was introduced with the previous bugfix.

*emacs-23.1-r2 (08 Nov 2009)
*emacs-22.3-r3 (08 Nov 2009)

  08 Nov 2009; Ulrich Mueller <ulm@gentoo.org> +emacs-22.3-r3.ebuild,
  -files/emacs-23.0.94-handle-xz-suffix.patch, emacs-23.1.ebuild,
  -emacs-23.1-r1.ebuild, +emacs-23.1-r2.ebuild,
  -files/emacs-23.1-backspace.patch:
  Fix updating of menus with GTK+ 2.18, bug 292007. Patchsets for Emacs 23
  moved to Gentoo mirrors.

*emacs-23.1-r1 (28 Oct 2009)

  28 Oct 2009; Ulrich Mueller <ulm@gentoo.org> +emacs-23.1-r1.ebuild,
  +files/emacs-23.1-backspace.patch:
  Fix swapped backspace and delete keys when started as daemon, bug 289709.

  12 Oct 2009; Raúl Porcel <armin76@gentoo.org> emacs-23.1.ebuild:
  ia64/s390/sh stable wrt #285063

  01 Oct 2009; Tobias Klausmann <klausman@gentoo.org> emacs-23.1.ebuild:
  Stable on alpha, bug #285063

  27 Sep 2009; nixnut <nixnut@gentoo.org> emacs-23.1.ebuild:
  ppc stable #285063

  26 Sep 2009; Brent Baude <ranger@gentoo.org> emacs-23.1.ebuild:
  Marking emacs-23.1 ppc64 for bug 285063

  20 Sep 2009; Tiago Cunha <tcunha@gentoo.org> emacs-23.1.ebuild:
  stable sparc, bug 285063

  18 Sep 2009; Jeroen Roovers <jer@gentoo.org> emacs-23.1.ebuild:
  Stable for HPPA (bug #285063).

  16 Sep 2009; Ulrich Mueller <ulm@gentoo.org> emacs-18.59-r6.ebuild:
  Support 32 bit build on amd64. Add ~amd64 keyword, bug 166839.

  15 Sep 2009; Christian Faulhammer <fauli@gentoo.org> emacs-23.1.ebuild:
  x86 stable, bug 285063

  15 Sep 2009; Romain Perier <mrpouet@gentoo.org>
  emacs-23.1.ebuild:
  Stable for amd64 per bug #285063.

  10 Sep 2009; Ulrich Mueller <ulm@gentoo.org> emacs-22.3-r2.ebuild:
  Backport INFOPATH patch from bug 281979 to the stable ebuild.

  31 Aug 2009; Christian Faulhammer <fauli@gentoo.org>
  -emacs-21.4-r18.ebuild:
  clean up

  31 Aug 2009; Brent Baude <ranger@gentoo.org> emacs-21.4-r19.ebuild:
  stable ppc64, bug 277194

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

  11 Aug 2009; Ulrich Mueller <ulm@gentoo.org> emacs-23.1.ebuild:
  Use bzip2 compressed distfile in order to save some 20% of space.

  08 Aug 2009; Christian Faulhammer <fauli@gentoo.org> emacs-23.1.ebuild:
  add postinst message about needed rebuilds

*emacs-23.1 (30 Jul 2009)

  30 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
  +files/emacs-23.0.94-handle-xz-suffix.patch, +emacs-23.1.ebuild:
  Major version bump to 23, with only one little patch for xz support

  21 Jul 2009; Jeroen Roovers <jer@gentoo.org> emacs-21.4-r19.ebuild:
  Stable for HPPA (bug #277194).

  16 Jul 2009; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r19.ebuild:
  Remove non-functional nls USE flag, bug 277194 comment #3.

  16 Jul 2009; nixnut <nixnut@gentoo.org> emacs-21.4-r19.ebuild:
  ppc stable #277194

  16 Jul 2009; Tiago Cunha <tcunha@gentoo.org> emacs-21.4-r19.ebuild:
  stable amd64, bug 277194

  11 Jul 2009; Raúl Porcel <armin76@gentoo.org> emacs-21.4-r19.ebuild:
  alpha/arm/ia64/s390/sh/sparc stable wrt #277194

  09 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
  emacs-21.4-r19.ebuild:
  stable x86, bug 277194

*emacs-21.4-r19 (11 Jun 2009)

  11 Jun 2009; Ulrich Mueller <ulm@gentoo.org> +emacs-21.4-r19.ebuild:
  Update for newer autoconf version, bug 273720.

  29 May 2009; Ulrich Mueller <ulm@gentoo.org> emacs-18.59-r6.ebuild,
  -files/emacs-22.1-Xaw3d-headers.patch, -files/emacs-22.2-sh.patch,
  emacs-22.3-r2.ebuild, -files/emacs-22.3-freebsd-sparc.patch,
  -files/emacs-22.3-linux-random-heap.patch:
  Updated Emacs 18 patchset; this fixes compilation with glibc 2.10 headers.
  Move Emacs 22 patches to Gentoo mirrors.

  28 May 2009; Christian Faulhammer <fauli@gentoo.org> emacs-22.3-r2.ebuild:
  Remove USE=spell from all ebuilds, we don't want such dependencies, see
  bug 72850#c1

  14 Apr 2009; Ulrich Mueller <ulm@gentoo.org> -emacs-21.4-r17.ebuild,
  -emacs-22.3-r1.ebuild:
  Remove old.

  14 Apr 2009; Jeroen Roovers <jer@gentoo.org> emacs-21.4-r18.ebuild,
  emacs-22.3-r2.ebuild:
  Stable for HPPA (bug #264504).

  06 Apr 2009; Raúl Porcel <armin76@gentoo.org> emacs-21.4-r18.ebuild,
  emacs-22.3-r2.ebuild:
  alpha/arm/ia64/s390/sh/x86 stable wrt #264504

  04 Apr 2009; Brent Baude <ranger@gentoo.org> emacs-21.4-r18.ebuild,
  emacs-22.3-r2.ebuild:
  Marking powerpc stabilizations for 264504

  04 Apr 2009; Tiago Cunha <tcunha@gentoo.org> emacs-21.4-r18.ebuild,
  emacs-22.3-r2.ebuild:
  stable amd64/sparc, bug 264504

  04 Apr 2009; Brent Baude <ranger@gentoo.org> emacs-21.4-r18.ebuild:
  stable ppc64, bug 264504

*emacs-21.4-r18 (12 Mar 2009)

  12 Mar 2009; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r17.ebuild,
  +emacs-21.4-r18.ebuild, emacs-22.3-r1.ebuild, emacs-22.3-r2.ebuild:
  Fix dependencies: package x11-misc/emacs-desktop was moved to
  app-emacs/emacs-common-gentoo; xbitmaps is also needed at run time for
  x-bitmap-file-path, whereas emacs-common-gentoo, aspell/ispell and sendmail
  are not needed at build time. No longer install subdirs.el since it is now
  part of emacs-common-gentoo. New EAPI 2 ebuild for emacs-21.4 since it needs
  to support USE dependencies.

*emacs-22.3-r2 (28 Feb 2009)

  28 Feb 2009; Ulrich Mueller <ulm@gentoo.org> +emacs-22.3-r2.ebuild:
  IUSE default for xpm, SLOT dependency for gtk+; change EAPI to 2.

  22 Feb 2009; Ulrich Mueller <ulm@gentoo.org> -emacs-18.59-r5.ebuild:
  Remove old.

  22 Feb 2009; Raúl Porcel <armin76@gentoo.org> emacs-18.59-r6.ebuild:
  x86 stable wrt #259916

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

  06 Feb 2009; Ulrich Mueller <ulm@gentoo.org> -emacs-22.3.ebuild:
  Remove old.

  06 Feb 2009; Jeroen Roovers <jer@gentoo.org> emacs-22.3-r1.ebuild:
  Stable for HPPA (bug #256382).

  05 Feb 2009; Raúl Porcel <armin76@gentoo.org> emacs-22.3-r1.ebuild:
  arm/ia64/s390/sh stable wrt #256382

  01 Feb 2009; Markus Meier <maekke@gentoo.org> emacs-22.3-r1.ebuild:
  x86 stable, bug #256382

  01 Feb 2009; nixnut <nixnut@gentoo.org> emacs-22.3-r1.ebuild:
  ppc stable #256382

  01 Feb 2009; Tobias Klausmann <klausman@gentoo.org> emacs-22.3-r1.ebuild:
  Stable on alpha, bug #256382

  26 Jan 2009; Brent Baude <ranger@gentoo.org> emacs-22.3-r1.ebuild:
  stable ppc64, bug 256382

  26 Jan 2009; Tiago Cunha <tcunha@gentoo.org> emacs-22.3-r1.ebuild:
  stable amd64, bug 256382

  26 Jan 2009; Ferris McCormick <fmccor@gentoo.org> emacs-22.3-r1.ebuild:
  Sparc stable, Bug #256382 (been around some time now).

*emacs-18.59-r6 (23 Jan 2009)

  23 Jan 2009; Ulrich Mueller <ulm@gentoo.org> +emacs-18.59-r6.ebuild:
  Substitute the built_with_use check for libX11 by a USE dependency;
  therefore, change EAPI to 2.

  24 Dec 2008; Ulrich Mueller <ulm@gentoo.org>
  -files/emacs-22.1-freebsd-sparc.patch,
  -files/emacs-22.1-vcdiff-tmp-race.patch,
  -files/emacs-22.2-fast-lock.patch, -files/emacs-22.2-heimdal-gentoo.patch,
  -files/emacs-22.2-python-nopwd.patch, -emacs-21.4-r15.ebuild,
  -emacs-22.2-r3.ebuild:
  Remove old.

  24 Dec 2008; Raúl Porcel <armin76@gentoo.org> emacs-21.4-r17.ebuild,
  emacs-22.3.ebuild:
  arm/s390/sh stable

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

*emacs-22.3-r1 (29 Nov 2008)

  29 Nov 2008; Ulrich Mueller <ulm@gentoo.org> +emacs-22.3-r1.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-21.4-r17.ebuild,
  emacs-22.3.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.

  14 Nov 2008; Ulrich Mueller <ulm@gentoo.org> emacs-18.59-r5.ebuild:
  Require libX11 built with USE=-xcb.

  07 Nov 2008; Ulrich Mueller <ulm@gentoo.org> emacs-18.59-r5.ebuild,
  emacs-21.4-r15.ebuild, emacs-21.4-r17.ebuild, emacs-22.2-r3.ebuild,
  emacs-22.3.ebuild:
  Add as-is and X11 to LICENSE for oldXMenu und etc/rgb.txt, respectively.

  27 Oct 2008; Brent Baude <ranger@gentoo.org> emacs-22.3.ebuild:
  stable ppc64, bug 240300

  21 Oct 2008; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-22.3-linux-random-heap.patch, emacs-18.59-r5.ebuild,
  emacs-21.4-r17.ebuild, emacs-22.3.ebuild:
  Fix sporadic segmentation faults of temacs when dumping under Linux 2.6.25
  or later, bug 236579.

  09 Oct 2008; Markus Meier <maekke@gentoo.org> emacs-22.3.ebuild:
  amd64 stable, bug #240300

  08 Oct 2008; Raúl Porcel <armin76@gentoo.org> emacs-22.3.ebuild:
  alpha/arm/ia64/sh/sparc/x86 stable wrt #240300

  07 Oct 2008; nixnut <nixnut@gentoo.org> emacs-22.3.ebuild:
  Stable on ppc wrt bug 240300

  07 Oct 2008; Jeroen Roovers <jer@gentoo.org> emacs-22.3.ebuild:
  Stable for HPPA (bug #240300).

  30 Sep 2008; Ulrich Mueller <ulm@gentoo.org> files/emacs-22.2-sh.patch:
  Also support big-endian SuperH, bug 238210.

  26 Sep 2008; Raúl Porcel <armin76@gentoo.org> emacs-22.2-r3.ebuild:
  sh stable

  26 Sep 2008; Ulrich Mueller <ulm@gentoo.org> +files/emacs-22.2-sh.patch,
  emacs-22.2-r3.ebuild, emacs-22.3.ebuild:
  SuperH support, bug 238210.

  23 Sep 2008; Christian Faulhammer <opfer@gentoo.org>
  emacs-21.4-r15.ebuild, emacs-21.4-r17.ebuild, emacs-22.2-r3.ebuild,
  emacs-22.3.ebuild:
  remove note about to be installed fonts

  22 Sep 2008; Ulrich Mueller <ulm@gentoo.org>
  -files/emacs-22.1-backup-buffer.patch, -files/emacs-22.1-format-int.patch,
  -files/emacs-22.1-hack-local-variables.patch,
  -files/emacs-22.1-oldxmenu-qa.patch,
  -files/emacs-22.1-s390x-non-multilib.patch, -emacs-22.1-r4.ebuild:
  Remove old.

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

  06 Sep 2008; Ulrich Mueller <ulm@gentoo.org> -emacs-22.2-r2.ebuild:
  Remove vulnerable revision wrt bug 236498.

  06 Sep 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  emacs-22.2-r3.ebuild:
  ppc stable, bug #236498

  06 Sep 2008; Ulrich Mueller <ulm@gentoo.org> emacs-18.59-r5.ebuild:
  Fix licence info, unexelf.c in patch is GPL-2.

*emacs-22.3 (05 Sep 2008)

  05 Sep 2008; Christian Faulhammer <opfer@gentoo.org>
  -emacs-22.2.92.ebuild, +emacs-22.3.ebuild:
  official release of 22.3; remove pretest version

  03 Sep 2008; Raúl Porcel <armin76@gentoo.org> emacs-22.2-r3.ebuild:
  alpha/ia64/sparc/x86 stable

  03 Sep 2008; Jeroen Roovers <jer@gentoo.org> emacs-22.2-r3.ebuild:
  Stable for HPPA (bug #236498).

  03 Sep 2008; Markus Rothe <corsair@gentoo.org> emacs-22.2-r3.ebuild:
  Stable on ppc64

  03 Sep 2008; Olivier Crête <tester@gentoo.org> emacs-22.2-r3.ebuild:
  Stable on amd64 for bug #236498

*emacs-22.2.92 (02 Sep 2008)

  02 Sep 2008; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-22.3-freebsd-sparc.patch, +emacs-22.2.92.ebuild:
  Presumably final pretest version for Emacs 22.3. Committing it in
  app-editors/emacs (instead of emacs-cvs), in order to give it as much
  final testing as possible.

*emacs-22.2-r3 (02 Sep 2008)

  02 Sep 2008; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-22.2-python-nopwd.patch, +emacs-22.2-r3.ebuild:
  Security fix for interactive python search path, CVE-2008-3949, bug 236498.

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

  04 Jun 2008; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r17.ebuild,
  emacs-22.1-r4.ebuild, emacs-22.2-r2.ebuild:
  Warn about inconsistent toolkit USE flags.

  01 Jun 2008; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r15.ebuild,
  emacs-21.4-r17.ebuild, emacs-22.1-r4.ebuild, emacs-22.2-r2.ebuild:
  Depend on x11-libs/openmotif explicitely for USE=motif.

  31 May 2008; Christian Faulhammer <opfer@gentoo.org>
  -emacs-18.59-r4.ebuild:
  clean up

  31 May 2008; Christian Faulhammer <opfer@gentoo.org>
  emacs-18.59-r5.ebuild:
  stable x86, bug 221281

  16 May 2008; Ulrich Mueller <ulm@gentoo.org> -emacs-22.2-r1.ebuild:
  Remove intermediate version.

  16 May 2008; Tobias Scherbaum <dertobi123@gentoo.org>
  emacs-21.4-r17.ebuild, emacs-22.2-r2.ebuild:
  ppc stable, bug #221197

  14 May 2008; Markus Meier <maekke@gentoo.org> emacs-21.4-r17.ebuild,
  emacs-22.2-r2.ebuild:
  amd64 stable, bug #221197

  14 May 2008; Christian Faulhammer <opfer@gentoo.org>
  emacs-21.4-r17.ebuild, emacs-22.2-r2.ebuild:
  stable x86, security bug 221197

  14 May 2008; Markus Rothe <corsair@gentoo.org> emacs-21.4-r17.ebuild,
  emacs-22.2-r2.ebuild:
  Stable on ppc64; bug #221197

  13 May 2008; Jeroen Roovers <jer@gentoo.org> emacs-21.4-r17.ebuild,
  emacs-22.2-r2.ebuild:
  Stable for HPPA (bug #221197).

  13 May 2008; Raúl Porcel <armin76@gentoo.org> emacs-21.4-r17.ebuild,
  emacs-22.2-r2.ebuild:
  alpha/ia64/sparc stable wrt #221197

*emacs-22.2-r2 (12 May 2008)
*emacs-21.4-r17 (12 May 2008)

  12 May 2008; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-22.2-fast-lock.patch, -emacs-21.4-r16.ebuild,
  +emacs-21.4-r17.ebuild, +emacs-22.2-r2.ebuild:
  Security fix for fast-lock cache, CVE-2008-2142, bug 221197.

*emacs-21.4-r16 (11 May 2008)
*emacs-18.59-r5 (11 May 2008)

  11 May 2008; Ulrich Mueller <ulm@gentoo.org> +emacs-18.59-r5.ebuild,
  +emacs-21.4-r16.ebuild:
  Fix temacs segmentation fault when dumping with kernel 2.6.25, bug 221281.
  Patch backported from Emacs 22.

  06 May 2008; Jeroen Roovers <jer@gentoo.org> emacs-22.2-r1.ebuild:
  Stable for HPPA (bug #220535).

  06 May 2008; Brent Baude <ranger@gentoo.org> emacs-22.2-r1.ebuild:
  stable ppc/ppc64, bug 220535

  06 May 2008; Christian Faulhammer <opfer@gentoo.org> emacs-22.2-r1.ebuild:
  stable x86/amd64, bug 220535

  06 May 2008; Raúl Porcel <armin76@gentoo.org> emacs-22.2-r1.ebuild:
  alpha/ia64/sparc stable wrt #220535

*emacs-22.2-r1 (08 Apr 2008)
*emacs-22.1-r4 (08 Apr 2008)
*emacs-21.4-r15 (08 Apr 2008)

  08 Apr 2008; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-22.1-vcdiff-tmp-race.patch, -emacs-21.4-r14.ebuild,
  +emacs-21.4-r15.ebuild, -emacs-22.1-r3.ebuild, +emacs-22.1-r4.ebuild,
  -emacs-22.2.ebuild, +emacs-22.2-r1.ebuild:
  Security fix for vcdiff insecure temporary file creation, CVE-2008-1694,
  bug 216880. Straight to stable, since there is no sensible way for arch
  teams to test (vcdiff was used for SCCS only). Remove vulnerable revisions.

  06 Apr 2008; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-22.2-heimdal-gentoo.patch, emacs-22.2.ebuild:
  Add patch to support compilation with Heimdal, and change dependency back
  to virtual/krb5; fixes bug 215558. Thanks to Michael Hammer (mueli)
  <michael@derhammer.net>, Honza Macháček <Hloupy.Honza@centrum.cz> and
  Martin Mokrejš <mmokrejs@ribosome.natur.cuni.cz> for their help.

  01 Apr 2008; Ulrich Mueller <ulm@gentoo.org> emacs-22.2.ebuild:
  Explicitely depend on mit-krb5 instead of virtual/krb5, bug 215558.

  28 Mar 2008; Ulrich Mueller <ulm@gentoo.org> emacs-18.59-r4.ebuild,
  emacs-22.1-r3.ebuild, emacs-22.2.ebuild:
  Add keepdir for site-lisp dir again, bug 93329; no idea why it was removed.
  Remove redundant dodir command.

*emacs-22.2 (26 Mar 2008)

  26 Mar 2008; Ulrich Mueller <ulm@gentoo.org> +emacs-22.2.ebuild:
  Version bump.

  02 Feb 2008; Ulrich Mueller <ulm@gentoo.org> emacs-18.59-r4.ebuild,
  emacs-21.4-r14.ebuild, emacs-22.1-r3.ebuild:
  Change to new syntax of eselect-emacs and update dependency. Remove empty
  Info directory after unmerge.

  30 Jan 2008; Ulrich Mueller <ulm@gentoo.org>
  -files/emacs-22.1-disable_alsa_detection.patch, emacs-21.4-r14.ebuild,
  emacs-22.1-r3.ebuild:
  Replace ALSA disable patch by sed magic. Add missing dependency on pkgconfig.

  22 Jan 2008; Ulrich Mueller <ulm@gentoo.org> -emacs-21.4-r4.ebuild:
  Remove old.

  17 Jan 2008; Ulrich Mueller <ulm@gentoo.org>
  files/emacs-22.1-s390x-non-multilib.patch:
  Replace s390x patch by upstream fix, bug 205555.

  13 Jan 2008; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-22.1-s390x-non-multilib.patch, emacs-22.1-r3.ebuild:
  Fix build issue on S/390x, bug 205555.

  10 Jan 2008; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r14.ebuild:
  Update DESCRIPTION. Re-add dropped keywords, following dependencies.

  04 Jan 2008; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r14.ebuild:
  Remove lesstif USE flag wrt bug #117057. Be verbose about toolkit selection.

  02 Jan 2008; Ulrich Mueller <ulm@gentoo.org> emacs-22.1-r3.ebuild:
  Remove explicit zlib dependency.

  28 Dec 2007; Ulrich Mueller <ulm@gentoo.org> emacs-22.1-r3.ebuild:
  Include net-libs/liblockfile in dependencies, fixes bug #203624.

  11 Dec 2007; Ulrich Mueller <ulm@gentoo.org> -emacs-21.4-r12.ebuild:
  Remove vulnerable revision wrt bug #200297.

  07 Dec 2007; Christian Faulhammer <opfer@gentoo.org>
  -emacs-21.4-r8.ebuild:
  clean up

  02 Dec 2007; Ulrich Mueller <ulm@gentoo.org> emacs-18.59-r4.ebuild,
  emacs-21.4-r12.ebuild, emacs-21.4-r14.ebuild, emacs-22.1-r3.ebuild:
  Declare some variables as local, add some quotes.

  01 Dec 2007; Ulrich Mueller <ulm@gentoo.org> emacs-22.1-r3.ebuild:
  Rename site-init file for USE=source.

  28 Nov 2007; Ulrich Mueller <ulm@gentoo.org> -emacs-21.4-r13.ebuild,
  -emacs-22.1-r2.ebuild:
  Remove vulnerable versions wrt security bug #200297.

  28 Nov 2007; <welp@gentoo.org> emacs-21.4-r14.ebuild,
  emacs-22.1-r3.ebuild:
  Stable on amd64, thanks angelos.

  27 Nov 2007; Raúl Porcel <armin76@gentoo.org> emacs-21.4-r14.ebuild,
  emacs-22.1-r3.ebuild:
  alpha/ia64/sparc stable

  27 Nov 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  emacs-21.4-r14.ebuild, emacs-22.1-r3.ebuild:
  ppc stable, bug #200297

  27 Nov 2007; Markus Rothe <corsair@gentoo.org> emacs-21.4-r14.ebuild,
  emacs-22.1-r3.ebuild:
  Stable on ppc64; bug #200297

  27 Nov 2007; Jeroen Roovers <jer@gentoo.org> emacs-22.1-r3.ebuild:
  Dropping compiler optimisations to -O1 for hppa (solves bug #193703).

  26 Nov 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-21.4-r14.ebuild, emacs-22.1-r3.ebuild:
  stable x86

  26 Nov 2007; Jeroen Roovers <jer@gentoo.org> emacs-21.4-r14.ebuild,
  emacs-22.1-r3.ebuild:
  Stable for HPPA.

*emacs-22.1-r3 (25 Nov 2007)
*emacs-21.4-r14 (25 Nov 2007)

  25 Nov 2007; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-22.1-format-int.patch, +emacs-21.4-r14.ebuild,
  +emacs-22.1-r3.ebuild:
  Fix buffer overflow in format function, CVE-2007-6109, security bug #200297.
  Patch from upstream CVS, partially backported to Emacs 21.

  22 Nov 2007; Ulrich Mueller <ulm@gentoo.org> emacs-22.1-r2.ebuild:
  Fix alsa dependency, thanks Flameeyes for pointing this out.

  14 Nov 2007; Brent Baude <ranger@gentoo.org> emacs-21.4-r13.ebuild:
  Marking emacs-21.4-r13 ppc64 stable for bug 197313

  14 Nov 2007; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r13.ebuild:
  Stable on amd64, bug #197313.

  06 Nov 2007; Ulrich Mueller <ulm@gentoo.org> -emacs-22.1-r1.ebuild:
  Remove vulnerable revision wrt bug #197958.

  06 Nov 2007; Chris Gianelloni <wolf31o2@gentoo.org> emacs-22.1-r2.ebuild:
  Stable on amd64 wrt bug #197958.

  05 Nov 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  emacs-22.1-r2.ebuild:
  ppc stable, bug #197958

  03 Nov 2007; Markus Rothe <corsair@gentoo.org> emacs-22.1-r2.ebuild:
  Stable on ppc64; bug #197958

  03 Nov 2007; Dawid Węgliński <cla@gentoo.org> emacs-22.1-r2.ebuild:
  Stable on x86 (bug #197958)

  03 Nov 2007; Raúl Porcel <armin76@gentoo.org> emacs-22.1-r2.ebuild:
  alpha/ia64/sparc stable wrt security #197958

  03 Nov 2007; Ulrich Mueller <ulm@gentoo.org> emacs-18.59-r4.ebuild:
  Use epatch for bulk patching.

*emacs-22.1-r2 (03 Nov 2007)

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

  02 Nov 2007; Ulrich Mueller <ulm@gentoo.org> emacs-22.1-r1.ebuild:
  Partial sync of emacs and emacs-cvs ebuilds.

  01 Nov 2007; Raúl Porcel <armin76@gentoo.org> emacs-21.4-r13.ebuild:
  alpha/ia64 stable wrt #197313

  31 Oct 2007; Jeroen Roovers <jer@gentoo.org> emacs-21.4-r13.ebuild:
  Stable for HPPA (bug #197313).

  30 Oct 2007; nixnut <nixnut@gentoo.org> emacs-21.4-r13.ebuild:
  Stable on ppc wrt bug 197313

  30 Oct 2007; Ferris McCormick <fmccor@gentoo.org> emacs-21.4-r13.ebuild:
  Sparc stable --- Security Bug #197313

  30 Oct 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-21.4-r13.ebuild:
  stable x86, bug 197313

*emacs-21.4-r13 (28 Oct 2007)

  28 Oct 2007; Ulrich Mueller <ulm@gentoo.org> +emacs-21.4-r13.ebuild:
  Security fix for crash on malformed GIF images, CVE-2007-2833, bug #197313.

  24 Oct 2007; Ulrich Mueller <ulm@gentoo.org> emacs-22.1-r1.ebuild:
  Add standard comment to site-init file.

  23 Oct 2007; Raúl Porcel <armin76@gentoo.org> emacs-22.1-r1.ebuild:
  alpha/ia64 stable

  14 Oct 2007; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r4.ebuild,
  emacs-21.4-r8.ebuild, emacs-21.4-r12.ebuild:
  Change USE flag "nosendmail" to "sendmail". Update postinst messages.

  10 Oct 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-18.59-r4.ebuild, emacs-21.4-r4.ebuild, emacs-21.4-r8.ebuild,
  emacs-21.4-r12.ebuild, emacs-22.1-r1.ebuild:
  remove PROVIDE=virtual/editor as we have now a new-style virtual

  06 Oct 2007; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r12.ebuild,
  emacs-22.1-r1.ebuild:
  Minor QA: quote ROOT variable.

  27 Sep 2007; Ulrich Mueller <ulm@gentoo.org> -emacs-22.1.ebuild:
  Remove old revision.

  26 Sep 2007; Christoph Mende <angelos@gentoo.org> emacs-22.1-r1.ebuild:
  Stable on amd64 wrt bug #193501

  24 Sep 2007; Brent Baude <ranger@gentoo.org> emacs-22.1-r1.ebuild:
  Marking emacs-22.1-r1 ppc64 stable for bug#193501

  24 Sep 2007; Jeroen Roovers <jer@gentoo.org> emacs-22.1-r1.ebuild:
  Marked ~hppa (bug #180642).

  24 Sep 2007; Raúl Porcel <armin76@gentoo.org> emacs-22.1-r1.ebuild:
  Add ~alpha/~ia64

  23 Sep 2007; Ferris McCormick <fmccor@gentoo.org> emacs-22.1-r1.ebuild:
  Sparc stable --- Bug #193501

  23 Sep 2007; nixnut <nixnut@gentoo.org> emacs-22.1-r1.ebuild:
  Stable on ppc wrt bug 193501

  23 Sep 2007; Christian Faulhammer <opfer@gentoo.org> emacs-22.1-r1.ebuild:
  stable x86, bug 193501

  18 Sep 2007; Ulrich Mueller <ulm@gentoo.org> emacs-22.1.ebuild,
  emacs-22.1-r1.ebuild:
  Change WANT_AUTOCONF to 2.5 following a change in autotools.eclass.
  Fixes bugs #192894 and #192923.

  25 Aug 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-18.59-r4.ebuild, emacs-21.4-r4.ebuild, emacs-21.4-r8.ebuild,
  emacs-21.4-r12.ebuild, emacs-22.1.ebuild, emacs-22.1-r1.ebuild:
  add BSD license because of etags binary, which initial version has been
  licensed thereunder

  25 Aug 2007; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r12.ebuild,
  emacs-22.1-r1.ebuild:
  Do "emake versionclean" before dumping again. Add some die messages.

*emacs-22.1-r1 (24 Aug 2007)

  24 Aug 2007; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-22.1-backup-buffer.patch, +emacs-22.1-r1.ebuild:
  Fix infinite loop if Emacs lacks permission to remove backup, bug #189627.
  Thanks to Martin von Gagern <Martin.vGagern@gmx.net>.

  23 Aug 2007; Ulrich Mueller <ulm@gentoo.org> -files/emacs-21.desktop,
  -files/60emacs-21.envd, -files/emacs-subdirs-el-gentoo.diff,
  emacs-21.4-r4.ebuild, emacs-21.4-r8.ebuild:
  Put remaining files for Emacs 21 on Gentoo mirrors.

  21 Aug 2007; Ulrich Mueller <ulm@gentoo.org> emacs-22.1.ebuild:
  Generate score files in pkg_postinst.

  01 Jul 2007; Ulrich Mueller <ulm@gentoo.org>
  files/emacs-22.1-Xaw3d-headers.patch:
  Properly check for Xaw3d in configure; patch backported from CVS trunk.
  Thanks to Philantrop for pointing this out.

  25 Jun 2007; Ulrich Mueller <ulm@gentoo.org> -files/emacs-21.2-sh.patch,
  -files/emacs-21.3-amd64.patch, -files/emacs-21.3-hppa.patch,
  -files/emacs-21.3-ppc64.patch, -files/emacs-21.3-xorg.patch,
  -files/emacs-21.4-Xaw3d-headers.patch,
  -files/emacs-21.4-autosave-tmp.patch,
  -files/emacs-21.4-blessmail-build.patch,
  -files/emacs-21.4-freebsd-terminfo.patch,
  -files/emacs-21.4-libungif-gif-gentoo.patch,
  -files/emacs-21.4-oldxmenu-malloc.patch,
  -files/emacs-21.4-ppc64-fix-unexelf.patch, -files/emacs-21.4-qa.patch,
  emacs-21.4-r4.ebuild, emacs-21.4-r8.ebuild, emacs-21.4-r12.ebuild:
  Put patches on Gentoo mirrors.

  24 Jun 2007; Ulrich Mueller <ulm@gentoo.org> emacs-22.1.ebuild:
  Depend on virtual/motif and remove lesstif USE flag.

  13 Jun 2007; Ulrich Mueller <ulm@gentoo.org> emacs-22.1.ebuild:
  Configure now supports "use_with hesiod" properly.

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

  05 Jun 2007; Gustavo Zacarias <gustavoz@gentoo.org> emacs-22.1.ebuild:
  Keyworded ~sparc wrt #180642

  04 Jun 2007; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-22.1-oldxmenu-qa.patch, emacs-22.1.ebuild:
  Quiet QA compilation warnings, patch submitted and accepted upstream.

  04 Jun 2007; Brent Baude <ranger@gentoo.org> emacs-22.1.ebuild:
  Marking emacs-22.1 ppc/ppc64 ~ for bug#180642

  02 Jun 2007; deedra waters <dmwaters@gentoo.org> emacs-22.1.ebuild:
  Adding ~amd64 keyword

  02 Jun 2007; Diego Pettenò <flameeyes@gentoo.org> emacs-22.1.ebuild:
  Add ~x86-fbsd keyword.

*emacs-22.1 (02 Jun 2007)

  02 Jun 2007; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-22.1-Xaw3d-headers.patch,
  +files/emacs-22.1-disable_alsa_detection.patch,
  +files/emacs-22.1-freebsd-sparc.patch, +emacs-22.1.ebuild:
  Emacs 22 released. Ebuild and patchset based on emacs-cvs-22.0.990.

  01 Jun 2007; nixnut <nixnut@gentoo.org> emacs-21.4-r12.ebuild:
  Stable on ppc wrt bug 180100

  29 May 2007; Raúl Porcel <armin76@gentoo.org> emacs-21.4-r12.ebuild:
  alpha/ia64 stable wrt #180100

  29 May 2007; Jeroen Roovers <jer@gentoo.org> emacs-21.4-r12.ebuild:
  Stable for HPPA (bug #180100).

  28 May 2007; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-21.4-oldxmenu-malloc.patch, emacs-21.4-r12.ebuild:
  Fix segmentation faults on ia64, bug #180142.

  28 May 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-18.59-r4.ebuild:
  stable x86

  28 May 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-21.4-r12.ebuild:
  x86/amd64 stable, bug 180100

  28 May 2007; Brent Baude <ranger@gentoo.org> emacs-21.4-r12.ebuild:
  Marking emacs-21.4-r12 ppc64 stable for 180100

  28 May 2007; Gustavo Zacarias <gustavoz@gentoo.org> emacs-21.4-r12.ebuild:
  Stable on sparc wrt #180100

  24 May 2007; Christian Faulhammer <opfer@gentoo.org> ChangeLog:
  corrected ChangeLog, so it conforms to our standards

  15 May 2007; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r4.ebuild,
  emacs-21.4-r8.ebuild, emacs-21.4-r12.ebuild:
  Don't provide virtual/emacs, it is a new-style virtual now.

  15 May 2007; Roy Marples <uberlord@gentoo.org>
  +files/emacs-21.4-freebsd-terminfo.patch, emacs-21.4-r12.ebuild:
  Added ~x86-fbsd keyword, #174884

  14 May 2007; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r12.ebuild:
  Remove !arm inverse arch flag for Xaw3d and motif, according to jokey it is
  not needed anymore.

  14 May 2007; Markus Ullmann <jokey@gentoo.org> emacs-21.4-r12.ebuild:
  Works on arm as well

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

  30 Apr 2007; Ulrich Mueller <ulm@gentoo.org> -emacs-18.59-r1.ebuild,
  emacs-21.4-r12.ebuild:
  Removed dependency on sys-devel/gettext. Removed old (non-eselect) revision.

  29 Apr 2007; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r12.ebuild:
  Apply emacs-21.4-ppc64-fix-unexelf.patch only on ppc64 architecture.
  Don't assign CPPFLAGS, use append-cppflags instead.

  29 Apr 2007; Markus Rothe <corsair@gentoo.org>
  +files/emacs-21.4-ppc64-fix-unexelf.patch, emacs-21.4-r12.ebuild:
  Add patch for ppc64 - thanks ulm; bug #152006. Also add ~ppc64; bug #174884

  26 Apr 2007; Ulrich Mueller <ulm@gentoo.org> emacs-21.4-r12.ebuild:
  Fixed parameter expansion for file name of man pages.

  24 Apr 2007; Ulrich Mueller <ulm@gentoo.org> emacs-18.59-r1.ebuild,
  emacs-18.59-r4.ebuild:
  Don't PROVIDE virtual/emacs, it makes no sense for version 18.

  19 Apr 2007; Bryan Østergaard <kloeri@gentoo.org> emacs-21.4-r12.ebuild:
  Add ~alpha keyword, bug 174882.

  19 Apr 2007; Ulrich Mueller <ulm@gentoo.org>
  +files/emacs-21.4-Xaw3d-headers.patch, emacs-21.4-r12.ebuild:
  Backported Emacs 22 upstream patch for proper including of Xaw3d headers;
  removed build-time dependency on x11-libs/libXaw; bug #174453.

  18 Apr 2007; Gustavo Zacarias <gustavoz@gentoo.org> emacs-21.4-r12.ebuild:
  Keyworded ~sparc wrt #174884

  18 Apr 2007; Jeroen Roovers <jer@gentoo.org> emacs-21.4-r12.ebuild:
  Marked ~hppa (bug #174884).

  17 Apr 2007; Raúl Porcel <armin76@gentoo.org> emacs-21.4-r12.ebuild:
  Add ~ia64 wrt bug 174884

  17 Apr 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-21.4-r12.ebuild:
  keyworded ~amd64, bug 174884

*emacs-21.4-r12 (16 Apr 2007)

  16 Apr 2007; Christian Faulhammer <opfer@gentoo.org>
  +files/emacs-21.4-qa.patch, +emacs-21.4-r12.ebuild:
  prepared for the new eselect module; qa patch to shut down QA warnings

*emacs-18.59-r4 (16 Apr 2007)

  16 Apr 2007; Christian Faulhammer <opfer@gentoo.org>
  +emacs-18.59-r4.ebuild:
  prepared for the new eselect module

  26 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  -files/60emacs-22.0.50.envd, -emacs-21.4-r7.ebuild:
  clean up

  07 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  -files/40aspell-gentoo.el, emacs-21.4-r7.ebuild, emacs-21.4-r8.ebuild:
  removed not working aspell support

*emacs-21.4-r8 (07 Mar 2007)

  07 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  +emacs-21.4-r8.ebuild:
  make subdirs patch obsolete

  02 Mar 2007; Christian Faulhammer <opfer@gentoo.org> emacs-21.4-r4.ebuild,
  emacs-21.4-r7.ebuild:
  added elisp-site-regen to actually update the site-lisp files

  02 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  emacs-18.59-r1.ebuild, emacs-21.4-r4.ebuild, emacs-21.4-r7.ebuild:
  removed virtual/x11 from dependencies

  02 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  -files/emacs-18.59-gcc4.patch, -files/emacs-18.59-gentoo.patch,
  -files/emacs-18.59-unexelf.patch, emacs-18.59-r1.ebuild:
  patches are now on Gentoo mirrors as they were too big

  02 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  -emacs-21.4-r6.ebuild:
  clean up

  02 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  -files/emacs-22.0.50.desktop, -files/emacs-nofink-gentoo.diff:
  remove some unnecessary files

  02 Mar 2007; Christian Faulhammer <opfer@gentoo.org> emacs-21.4-r4.ebuild,
  emacs-21.4-r6.ebuild, emacs-21.4-r7.ebuild,
  -emacs-22.0.50_pre20050225.ebuild:
  added flags for PPC64, fixes bug 152006, reported by corsair, solution found
  by Andrew John Hughes <gnu_andrew@member.fsf.org>; removed stale version as
  it is in prefix overlay for ppc-macos

*emacs-21.4-r7 (20 Feb 2007)

  20 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  +files/emacs-21.4-autosave-tmp.patch,
  +files/emacs-21.4-blessmail-build.patch, +emacs-21.4-r7.ebuild:
  revision bump with patches to handle rests of temporary path strings in the
  executable (bug 22563); and 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>

*emacs-18.59-r1 (14 Feb 2007)

  14 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  +files/emacs-18.59-gcc4.patch, +files/emacs-18.59-gentoo.patch,
  +files/emacs-18.59-unexelf.patch, +emacs-18.59-r1.ebuild:
  readded this old version as it can become handy over a SSH connection with
  X; digged out some old patches, and made it ready for GCC 4. Provided by
  Ulrich Mueller <ulm@kph.uni-mainz.de> in bug 44766

  06 Feb 2007; Christian Faulhammer <opfer@gentoo.org> emacs-21.4-r6.ebuild:
  made the definition of suffix variable more elegant (thanks to Ulrich
  Müller <ulm@kph.uni-mainz.de>; removed emacsclient from man page
  symlinking; added gfdl at the same place

  04 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  -emacs-21.4-r5.ebuild, emacs-21.4-r6.ebuild:
  add a check for uncompressed man pages and clean up

  03 Feb 2007; Christian Faulhammer <opfer@gentoo.org> emacs-21.4-r6.ebuild:
  determine compression suffix correctly and finally

  02 Feb 2007; Christian Faulhammer <opfer@gentoo.org> emacs-21.4-r6.ebuild:
  hopefully fix man page symlinks again

*emacs-21.4-r6 (02 Feb 2007)

  02 Feb 2007; Christian Faulhammer <opfer@gentoo.org>
  +emacs-21.4-r6.ebuild:
  create symlinks for man pages, as reported by Ulrich Mueller
  <ulm@kph.uni-mainz.de>

  05 Jan 2007; Christian Faulhammer <opfer@gentoo.org> emacs-21.4-r5.ebuild:
  correctly use aspell when having it installed, see bug #158850, reported
  by Don Pellegrino <donpellegrino@comcast.net>

  04 Dec 2006; Christian Faulhammer <opfer@gentoo.org> -emacs-18.59.ebuild,
  -emacs-21.4-r1.ebuild, -emacs-21.4-r2.ebuild, -emacs-21.4-r3.ebuild:
  clean up old versions

  26 Nov 2006; Christian Faulhammer <opfer@gentoo.org> emacs-21.4-r5.ebuild:
  added some quotes around epatch commands

  31 Oct 2006; Christian Faulhammer <opfer@gentoo.org> emacs-21.4-r4.ebuild,
  emacs-21.4-r5.ebuild:
  removed dependency on sys-libs/gdbm as reported in bug #103382 by Marien
  Zwart <marienz@gentoo.org>

  31 Oct 2006; Christian Faulhammer <opfer@gentoo.org>
  +files/40aspell-gentoo.el:
  copied 40aspell-gentoo.el over from app-editors/emacs-cvs to fix bug #101585

  30 Oct 2006; Christian Faulhammer <opfer@gentoo.org> emacs-21.4-r5.ebuild:
  suppressed the output of permission fixing, as reported by Carsten Lohrke
  <carlo@gentoo.org> in bug #85968

  15 Oct 2006; Bryan Østergaard <kloeri@gentoo.org> emacs-21.4-r4.ebuild:
  Stable on ia64.

  10 Oct 2006; Jeroen Roovers <jer@gentoo.org> emacs-21.4-r4.ebuild:
  Stable for HPPA (bug #136987).

  30 Aug 2006; Michael Hanselmann <hansmi@gentoo.org> emacs-21.4-r4.ebuild:
  Stable on ppc.

  21 Aug 2006; Matthew Kennedy <mkennedy@gentoo.org> emacs-21.4-r5.ebuild:
  Add note to pkg_postinst that Emacs needs fonts; Resolves Bug #137598.

  18 Aug 2006; Joshua Jackson <tsunam@gentoo.org> emacs-21.4-r4.ebuild:
  Stable x86; following the others

  13 Aug 2006; Markus Rothe <corsair@gentoo.org> emacs-21.4-r4.ebuild:
  Stable on ppc64; bug #136987

*emacs-21.4-r5 (12 Aug 2006)

  12 Aug 2006; Matthew Kennedy <mkennedy@gentoo.org>
  +files/emacs-21.4-libungif-gif-gentoo.patch, +emacs-21.4-r5.ebuild:
  Force build with libgif, not libungif; Resolves Bug #95961.

  11 Aug 2006; Jose Luis Rivero <yoswink@gentoo.org> emacs-21.4-r4.ebuild:
  Stable on alpha wrt bug #136987

  11 Aug 2006; Jason Wever <weeve@gentoo.org> emacs-21.4-r4.ebuild:
  Stable on SPARC wrt bug #136987.

  09 Aug 2006; Thomas Cort <tcort@gentoo.org> emacs-21.4-r4.ebuild:
  Stable on amd64 wrt Bug #136987.

*emacs-21.4-r4 (09 Aug 2006)

  09 Aug 2006; Matthew Kennedy <mkennedy@gentoo.org> +emacs-21.4-r4.ebuild:
  Replace -O3 onwards (if present) with -O2; Resolves Bug #136987 and many
  other bugs.

  03 May 2006; Diego Pettenò <flameeyes@gentoo.org> emacs-21.4-r3.ebuild:
  Add ~x86-fbsd keyword.

  03 May 2006; <tcort@gentoo.org> files/digest-emacs-21.4-r1,
  files/digest-emacs-21.4-r2, files/digest-emacs-21.4-r3,
  files/digest-emacs-22.0.50_pre20050225, Manifest:
  Fixed digests wrt Bug #132083.

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

  14 Mar 2006; Fernando J. Pereda <ferdy@gentoo.org> emacs-21.4-r3.ebuild:
  Stable on alpha as per bug #76141. Tested by Thomas Cort <tcort@cs.ubishops.ca>

  12 Mar 2006; Jason Wever <weeve@gentoo.org> emacs-21.4-r3.ebuild:
  Stable on SPARC wrt bug #76141.

  10 Mar 2006; Michael Hanselmann <hansmi@gentoo.org> emacs-21.4-r3.ebuild:
  Stable on ppc.

  09 Mar 2006; Aron Griffis <agriffis@gentoo.org> emacs-21.4-r3.ebuild:
  Mark 21.4-r3 stable on ia64

  08 Mar 2006; Mike Doty <kingtaco@gentoo.org> emacs-21.4-r3.ebuild:
  amd64 stable, bug 76141

  08 Mar 2006; Jeroen Roovers <jer@gentoo.org> emacs-21.4-r3.ebuild:
  Stable on hppa (bug #113266).

  08 Mar 2006; Michele Noberasco <s4t4n@gentoo.org> emacs-21.4-r3.ebuild:
  Stable for x86. See bugs #76141 and #113266.

  08 Mar 2006; Markus Rothe <corsair@gentoo.org> emacs-21.4-r3.ebuild:
  Stable on ppc64; bug #113266

*emacs-21.4-r3 (06 Mar 2006)

  06 Mar 2006; Matthew Kennedy <mkennedy@gentoo.org> +emacs-21.4-r3.ebuild:
  Remove the GNOME USE flag; Install the .desktop file unconditionally;
  Resolves Bug #112449.

  05 Mar 2006; Joseph Jezak <josejx@gentoo.org> emacs-21.4-r2.ebuild:
  Marked ppc stable for bug #76141.

  01 Mar 2006; Markus Rothe <corsair@gentoo.org> emacs-21.4-r2.ebuild:
  Stable on ppc64; bug #76141

  01 Mar 2006; Jeroen Roovers <jer@gentoo.org> emacs-21.4-r2.ebuild:
  Stable on hppa (bug #76141).

  27 Feb 2006; <plasmaroo@gentoo.org> emacs-21.4-r2.ebuild:
  Stable on IA64; bug #76141.

*emacs-21.4-r2 (27 Feb 2006)

  27 Feb 2006; Matthew Kennedy <mkennedy@gentoo.org> emacs-18.59.ebuild,
  +emacs-21.4-r2.ebuild, emacs-22.0.50_pre20050225.ebuild:
  Move SANDBOX_DISABLED=1 from global scope to SANDBOX_ON=0 in src_compile();
  Partially resolves Bug #76141.

  09 Feb 2006; Matthew Kennedy <mkennedy@gentoo.org> emacs-18.59.ebuild:
  Modular X dependencies; Resolves Bug #122215.

  10 Jan 2006; <ferringb@gentoo.org> -emacs-21.4.ebuild:
  Removing 21.4; stale version that is succeeded by 21.4-r1 in keywords.
  Reason for removal is bug 118386, ungif being screwed over for a good chunk
  of time thus removed.

  12 Dec 2005; Donnie Berkholz <spyderous@gentoo.org>; emacs-21.4-r1.ebuild,
  emacs-22.0.50_pre20050225.ebuild:
  (#113394) We also need fonts in modular.

  12 Dec 2005; Donnie Berkholz <spyderous@gentoo.org>; emacs-21.4-r1.ebuild,
  emacs-22.0.50_pre20050225.ebuild:
  Add modular X dependencies.

  23 Aug 2005; Aron Griffis <agriffis@gentoo.org> emacs-21.4-r1.ebuild:
  stable on ia64

  03 Aug 2005; Bryan Østergaard <kloeri@gentoo.org> emacs-21.4-r1.ebuild:
  Stable on alpha.

  29 Jul 2005; MATSUU Takuto <matsuu@gentoo.org> +files/emacs-21.2-sh.patch,
  emacs-21.4-r1.ebuild:
  Added emacs-21.2-sh.patch and ~sh to KEYWORDS.

  17 Jul 2005; Tobias Scherbaum <dertobi123@gentoo.org>
  emacs-21.4-r1.ebuild:
  ppc stable

  07 Jul 2005; Markus Rothe <corsair@gentoo.org> emacs-21.4-r1.ebuild:
  Stable on ppc64

  05 Jul 2005; Rene Nussbaumer <killerfox@gentoo.org> emacs-21.4-r1.ebuild:
  Stable on hppa.

  05 Jul 2005; Olivier Crête <tester@gentoo.org> emacs-21.4-r1.ebuild:
  Stable on amd64

  04 Jul 2005; Gustavo Zacarias <gustavoz@gentoo.org> emacs-21.4-r1.ebuild:
  Stable on sparc

  02 Jul 2005; Mamoru KOMACHI <usata@gentoo.org> emacs-21.4-r1.ebuild:
  Stable on x86.

  21 May 2005; Mamoru KOMACHI <usata@gentoo.org> emacs-21.4.ebuild,
  emacs-21.4-r1.ebuild:
  Added keepdir /usr/share/emacs/site-lisp to fix bug #93329 and use
  leim-21.4.tar.gz to fix bug #91665.

  03 May 2005; Mamoru KOMACHI <usata@gentoo.org> files/emacs-21.desktop,
  files/emacs-22.0.50.desktop, -files/emacs.desktop, emacs-21.4-r1.ebuild:
  Make desktop entry consistent between emacs and emacs-cvs; bug #89757.

  12 Apr 2005; Jeremy Huddleston <eradicator@gentoo.org>
  emacs-21.4-r1.ebuild, emacs-22.0.50_pre20050225.ebuild:
  Use proper toolchain compiler.

  12 Apr 2005; Mamoru KOMACHI <usata@gentoo.org> emacs-21.4.ebuild,
  emacs-21.4-r1.ebuild:
  Unset LDFLAGS; see bug #77430 and bug #65002.

*emacs-21.4-r1 (08 Apr 2005)

  08 Apr 2005; Mamoru KOMACHI <usata@gentoo.org> files/emacs-21.desktop,
  files/emacs-22.0.50.desktop, +emacs-21.4-r1.ebuild,
  emacs-22.0.50_pre20050225.ebuild:
  Use giflib instead of libungif; bug #85720. Installs correct desktop
  entry; bug #86932.

*emacs-22.0.50_pre20050225 (26 Feb 2005)

  26 Feb 2005; Mamoru KOMACHI <usata@gentoo.org>
  +files/60emacs-22.0.50.envd, +files/emacs-22.0.50.desktop,
  -emacs-21.3-r2.ebuild, -emacs-21.3-r3.ebuild, -emacs-21.3-r5.ebuild,
  -emacs-21.3.50_pre20041027.ebuild, +emacs-22.0.50_pre20050225.ebuild:
  Updated CVS snapshot for ppc-macos.
  Removed ebuilds vulnerable to GLSA 200502-20.

  20 Feb 2005; Aron Griffis <agriffis@gentoo.org> emacs-21.4.ebuild:
  stable on ia64 #79686

  10 Feb 2005; Bryan Østergaard <kloeri@gentoo.org> emacs-21.4.ebuild:
  Stable on alpha, bug 79686.

  09 Feb 2005; Michael Hanselmann <hansmi@gentoo.org> emacs-21.4.ebuild:
  Stable on ppc.

  09 Feb 2005; Marcus D. Hanwell <cryos@gentoo.org> emacs-21.4.ebuild:
  Marked stable on amd64, bug 79686.

  08 Feb 2005; Markus Rothe <corsair@gentoo.org> emacs-21.4.ebuild:
  Stable on ppc64; bug #79686

  08 Feb 2005; Olivier Crête <tester@gentoo.org> emacs-21.4.ebuild:
  Stable on x86 wrt bug #79686

  08 Feb 2005; Gustavo Zacarias <gustavoz@gentoo.org> emacs-21.4.ebuild:
  Stable on sparc wrt #79686

*emacs-21.4 (08 Feb 2005)

  08 Feb 2005; Mamoru KOMACHI <usata@gentoo.org> +emacs-21.4.ebuild:
  Version bumped. This fixes CAN-2005-0100. (bug #79686)

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

  19 Dec 2004; Jeremy Huddleston <eradicator@gentoo.org>
  emacs-21.3-r5.ebuild, emacs-21.3.50_pre20041027.ebuild:
  multilib fixin.

  30 Nov 2004; Sven Wegener <swegener@gentoo.org> emacs-21.3-r4.ebuild,
  emacs-21.3-r5.ebuild:
  Added missing ? after !use in dependency.

*emacs-21.3-r5 (23 Nov 2004)

  23 Nov 2004; Mamoru KOMACHI <usata@gentoo.org>
  +files/emacs-21.3-xorg.patch, +emacs-21.3-r5.ebuild:
  Added a patch to fix AltGr key behaviour. Thanks to Sergio Polini
  <s.polini@mclink.it> for providing a link to the patch.
  This closes bug #66508. Changed binaries' suffix from "-${SLOT}" to
  ".emacs-${SLOT}" (b2m, ctags, etags and rcs-checkin from xemacs
  conflict with those from emacs). See bug #62991 for detail.

*emacs-21.3.50_pre20041027 (07 Nov 2004)

  07 Nov 2004; Mamoru KOMACHI <usata@gentoo.org>
  +files/emacs-nofink-gentoo.diff, +emacs-21.3.50_pre20041027.ebuild:
  Added Carbon Emacs (aqua USE flag). See bug #64362.
  Also added multi-tty patch.

  19 Oct 2004; Bryan Østergaard <kloeri@gentoo.org> emacs-21.3-r4.ebuild:
  ~alpha keyword.

  19 Oct 2004; Dylan Carlson <absinthe@gentoo.org> emacs-21.3-r3.ebuild:
  Stable on amd64.

  16 Oct 2004; Mamoru KOMACHI <usata@gentoo.org> emacs-21.3-r3.ebuild,
  emacs-21.3-r4.ebuild:
  Fixed compile problem when lesstif USE flag is set but openmotif is not
  installed. This closes bug #67492.

  14 Oct 2004; Mamoru KOMACHI <usata@gentoo.org> emacs-21.3-r4.ebuild:
  Specify alternatives version explicitly.

  06 Oct 2004; Guy Martin <gmsoft@gentoo.org> emacs-21.3-r3.ebuild,
  emacs-21.3-r4.ebuild:
  Stable on hppa.

  03 Oct 2004; Mamoru KOMACHI <usata@gentoo.org> +files/60emacs-21.envd,
  -files/emacs-21.1-gentoo.diff, +files/emacs-21.desktop,
  +files/emacs-subdirs-el-gentoo.diff, emacs-21.3-r4.ebuild:
  Sync IUSE (nosendmail). More on SLOT support.

  30 Sep 2004; Mamoru KOMACHI <usata@gentoo.org> -emacs-21.1-r4.ebuild,
  -emacs-21.2-r2.ebuild, emacs-21.3-r2.ebuild, emacs-21.3-r3.ebuild,
  emacs-21.3-r4.ebuild:
  Changed SLOT="0" to SLOT="21", see bug #65061. Removed old versions.

  24 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> emacs-21.3-r3.ebuild:
  Stable on sparc

  23 Sep 2004; Mamoru KOMACHI <usata@gentoo.org> emacs-21.3-r3.ebuild,
  emacs-21.3-r4.ebuild:
  Filtered out -O[3-9] if gcc-3.4 detected; bug #64832, bug #64790
  and bug #64286.

  07 Sep 2004; Mamoru KOMACHI <usata@gentoo.org> emacs-21.3-r4.ebuild:
  Added nosendmail USE flag. This closes bug #11104.

  31 Jul 2004; Mamoru KOMACHI <usata@gentoo.org>
  -files/emacs-18.59-gcc-gentoo.patch, -files/emacs-18.59-gentoo.patch,
  -files/emacs-18.59-unexelf.patch, emacs-18.59.ebuild:
  Put patches on Gentoo mirrors.

  17 Jul 2004; Tom Gall <tgall@gentoo.org> emacs-21.3-r4.ebuild:
  stable on ppc64

  15 Jul 2004; Tom Gall <tgall@gentoo.org> emacs-21.3-r4.ebuild:
  added ~ppc64 bug #55328

*emacs-21.3-r4 (04 Jul 2004)

  04 Jul 2004; Mamoru KOMACHI <usata@gentoo.org> -emacs-21.3-r1.ebuild,
  emacs-21.3-r2.ebuild, emacs-21.3-r3.ebuild, +emacs-21.3-r4.ebuild:
  Added partial SLOT support. Reversed Xaw3d and motif USE flag order,
  see bug #18518

  01 Jun 2004; Aron Griffis <agriffis@gentoo.org> emacs-21.3-r2.ebuild,
  emacs-21.3-r3.ebuild:
  Fix use invocation

  17 May 2004; <mkennedy@gentoo.org> files/emacs-18.59-gcc-gentoo.patch:
  Remove compiler option adjustments which made the build incompatible with GCC
  2.95

  13 May 2004; Michael Sterrett <mr_bones_@gentoo.org> emacs-21.3-r3.ebuild:
  don't use deprecated ? : use syntax

*emacs-21.3-r3 (13 May 2004)
*emacs-18.59 (13 May 2004)

  13 May 2004; <mkennedy@gentoo.org> +files/emacs-18.59-gcc-gentoo.patch,
  +files/emacs-18.59-gentoo.patch, +files/emacs-18.59-unexelf.patch,
  +emacs-18.59.ebuild, +emacs-21.3-r3.ebuild:
  Added retro emacs-18.59 w/ SLOT=1 (ebuild contributed by Ulrich Mueller
  <ulm@kph.uni-mainz.de>), resolves Bug #44766; Added new emacs-21.3-r3
  with support for using LessTif instead of OpenMotif (OpenMotif has
  problems which causes Emacs to be unstable); Marked emacs-21.3-r3 as
  ~arch.

  09 Apr 2004; Brian Jackson <iggy@gentoo.org> emacs-21.3-r2.ebuild:
  add s390 keywords

  03 Mar 2004; Mamoru KOMACHI <usata@gentoo.org> emacs-21.1-r4.ebuild,
  emacs-21.2-r2.ebuild, emacs-21.3-r1.ebuild, emacs-21.3-r2.ebuild:
  Moved gnome USE flag inside X. Closing bug #43228

  27 Feb 2004; Sven Blumenstein <bazik@gentoo.org> emacs-21.3-r2.ebuild:
  Stable on sparc. <imo>use vim, use vim, use vim, use vim, use vim!</imo>

  18 Feb 2004; Aron Griffis <agriffis@gentoo.org> emacs-21.3-r2.ebuild:
  stable on ia64

  18 Feb 2004; Mamoru KOMACHI <usata@gentoo.org> emacs-21.3-r1.ebuild,
  emacs-21.3-r2.ebuild:
  Moved filter-flags to src_compile() to kill a warning with
  portage-2.0.50. Marked stable on x86 and alpha

  13 Dec 2003; Brad House <brad_mssw@gentoo.org> emacs-21.3-r2.ebuild,
  files/emacs-21.3-amd64.patch:
  mark stable on amd64 and patch

*emacs-21.3-r2 (08 Dec 2003)

  20 Dec 2003; Guy Martin <gmsoft@gentoo.org> emacs-21.3-r2.ebuild
  files/emacs-21.3-hppa.patch :
  Fix hppa compilation with a patch. Marked stable on hppa.

  08 Dec 2003; Mamoru KOMACHI <usata@gentoo.org> emacs-21.3-r2.ebuild:
  Disable Xaw3d if USE="-Xaw3d" even when it is installed, bug 35300

  01 Dec 2003; Mamoru KOMACHI <usata@gentoo.org> emacs-21.3-r1.ebuild:
  Filter -fstack-protector that causes internal compiler error at xterm.c
  Closing bug #33265

  31 Jul 2003; Tavis Ormandy <taviso@gentoo.org> emacs-21.3-r1.ebuild:
  stable on alpha

*emacs-21.3-r1 (01 Apr 2003)

  01 Apr 2003; Matthew Kennedy <mkennedy@gentoo.org> emacs-21.3-r1.ebuild:
  resolves bug 18419 -- adds gif support

*emacs-21.3 (27 Mar 2003)
*emacs-21.2-r2 (14 Sep 2002)

  06 Jan 2003; Seemant Kulleen <seemant@gentoo.org> *.ebuild :
  PROVIDE virtual/editor as well as virtual/emacs now

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

  14 Sep 2002; Matthew Kennedy <mkennedy@gentoo.org>
  emacs-21.2-r2.ebuild, files/digest-emacs-21.2-r2.ebuild :
  Added support for LEIM (input methods for Emacs) based on new leim
  USE flag. Credits to Ryan Shaw <ryan.shaw@stanfordalumni.org> of bug
  6557.

*emacs-21.2-r1 (29 Jul 2002)

  07 Aug 2002; Matthew Kennedy <mkennedy@gentoo.org>
  emacs-21.2-r1.ebuild :
  Sandbox.

  06 Aug 2002; Mark Guertin <gerk@gentoo.org> :
  Added ppc to keywords

  06 Aug 2002; Matthew Kennedy <mkennedy@gentoo.org>
  emacs-21.2-r1.ebuild :
  Documentation install fix. Sandbox adjustment.

  29 Jul 2002; Matthew Kennedy <mkennedy@gentoo.org>
  emacs-21.2-r1.ebuild, files/digest-emacs-21.1-r1 :
  Permissions fix. Resolves bug #3724

*emacs-21.2 (28 Apr 2002)

  28 Apr 2002; pvdabeel <pvdabeel@gentoo.org>
  Version bump

*emacs-21.1-r4 (11 Apr 2002)

  11 Apr 2002; Spider <spider@gentoo.org>
  Update libpng dependency

  28 Apr 2002; pvdabeel <pvdabeel@gentoo.org>
  PPC fix (nocombreloc - fixes bug # 2104)

*emacs-21.1-r3 (1 Feb 2002)

  1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog :

  Added initial ChangeLog which should be updated whenever the package is
  updated in any way. This changelog is targetted to users. This means that the
  comments should well explained and written in clean English. The details about
  writing correct changelogs are explained in the skel.ChangeLog file which you
  can find in the root directory of the portage repository.