summaryrefslogtreecommitdiff
blob: d87c56e3e18980542eee2501226db629b9cdcd55 (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
# ChangeLog for app-editors/emacs
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs/ChangeLog,v 1.218 2007/11/28 21:49:35 ulm Exp $

  28 Nov 2007; Ulrich Mueller <ulm@gentoo.org> -emacs-21.4-r13.ebuild,
  -emacs-22.1-r2.ebuild:
  Remove old.

  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-22.1-r3.ebuild:
  Stable for HPPA.

  26 Nov 2007; Jeroen Roovers <jer@gentoo.org> emacs-21.4-r14.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:
  Correctly format integer values, SuSE bug 342158. 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 ~ for bug#180642

  04 Jun 2007; Brent Baude <ranger@gentoo.org> emacs-22.1.ebuild:
  Marking emacs-22.1 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:
  Don't assign CPPFLAGS, use append-cppflags instead.

  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.

  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:
  clean up

  26 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
  -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, part II

  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.