summaryrefslogtreecommitdiff
blob: ded911b90f32a0877005f0ee8934d97ca4492c4a (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
# ChangeLog for app-editors/emacs-cvs
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/ChangeLog,v 1.198 2008/02/26 13:27:34 opfer Exp $

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

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

*emacs-cvs-22.1.91 (20 Feb 2008)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*emacs-cvs-23.0.60 (12 Oct 2007)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*emacs-cvs-23.0.50 (29 Aug 2007)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*emacs-cvs-22.0.990 (17 May 2007)

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

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

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

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

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

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

*emacs-cvs-22.1.50 (26 Apr 2007)

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

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

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

*emacs-cvs-22.0.99 (24 Apr 2007)

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

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

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

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

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

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

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

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

*emacs-cvs-22.0.98 (17 Apr 2007)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*emacs-cvs-22.0.93 (26 Jan 2007)

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

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

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

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

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

*emacs-cvs-22.0.92 (05 Jan 2007)

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

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

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

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

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

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

*emacs-cvs-22.0.91 (20 Nov 2006)

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

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

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

*emacs-cvs-22.0.90 (28 Oct 2006)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*emacs-cvs-23.0.0 (16 Feb 2005)

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

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

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

*emacs-cvs-22.0.50 (11 Feb 2005)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*emacs-cvs-21.3.50 (22 Nov 2002)

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

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

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

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

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

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

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

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