summaryrefslogtreecommitdiff
blob: b27eb6d570cc1044119823964d284726e971b37c (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
# ChangeLog for app-office/openoffice-bin
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-office/openoffice-bin/ChangeLog,v 1.260 2012/09/19 09:52:57 johu Exp $

  19 Sep 2012; Johannes Huber <johu@gentoo.org> openoffice-bin-3.4.1.ebuild:
  Stable for x86, wrt bug #433483

  08 Sep 2012; Agostino Sarubbo <ago@gentoo.org> openoffice-bin-3.4.1.ebuild:
  Stable for amd64, wrt bug #433483

*openoffice-bin-3.4.1 (30 Aug 2012)

  30 Aug 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  +openoffice-bin-3.4.1.ebuild:
  Version bump.

*openoffice-bin-3.4.0-r2 (16 Aug 2012)

  16 Aug 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +openoffice-bin-3.4.0-r2.ebuild, -openoffice-bin-3.4.0-r1.ebuild:
  Revbump once more to use get_libdir, not hardcode lib64. My bad.

*openoffice-bin-3.4.0-r1 (13 Aug 2012)

  13 Aug 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +openoffice-bin-3.4.0-r1.ebuild, -openoffice-bin-3.4.0.ebuild:
  Revision bump, now we cope along with libreoffice. Acked by chithead.

  18 May 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  -openoffice-bin-3.3.0.ebuild:
  Drop vulnerable version.

  13 May 2012; Agostino Sarubbo <ago@gentoo.org> openoffice-bin-3.4.0.ebuild:
  Stable for amd64, wrt bug #386081

  09 May 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  openoffice-bin-3.4.0.ebuild:
  x86 stable wrt security bug #386081

*openoffice-bin-3.4.0 (08 May 2012)

  08 May 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  +openoffice-bin-3.4.0.ebuild:
  Version bump.

  25 Aug 2011; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
  +files/50-openoffice-bin, +openoffice-bin-3.3.0.ebuild, +files/wrapper.in,
  +metadata.xml:
  Re-add openoffice-bin, now maintained by me.

  21 Mar 2011; Markos Chandras <hwoarang@gentoo.org>
  openoffice-bin-3.3.0.ebuild:
  Stable on amd64 wrt bug #332321

  20 Mar 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  openoffice-bin-3.3.0.ebuild:
  x86 stable wrt security bug #332321

  20 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.3.0.ebuild:
  Add some more supported languages, ebuild cleanups

  19 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.3.0.ebuild:
  Another minor ebuild cleanup

  19 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.3.0.ebuild:
  Minor cleanup

  18 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.3.0.ebuild:
  Install all the available dictionaries by default

  18 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.3.0.ebuild:
  some ebuild reorganization to make future maintenance easier

  17 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.3.0.ebuild:
  Remove usage of RESTRICT="bincheck"

  17 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.2.1.ebuild, openoffice-bin-3.3.0.ebuild:
  Fix license entry, OOo uses LGPLv3 since some time

  17 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.3.0.ebuild:
  Bunch of cleanups, dependencies, restricts

  17 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.3.0.ebuild:
  Remove kde stuff, this is KDE3-only, which is not even in the tree anymore.
  Bug upstream about 
  packaging KDE4-support

  17 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.3.0.ebuild:
  Properly install all sizes of app and mimetype icons

*openoffice-bin-3.3.0 (16 Mar 2011)

  16 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-3.3.0.ebuild:
  Bump to OpenOffice.org 3.3.0

  16 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.2.1.ebuild:
  Remove old style virtuals PROVIDE, bug #358895

  05 Feb 2011; Andreas Proschofsky <suka@gentoo.org> files/50-openoffice-bin,
  -openoffice-bin-3.2.0.ebuild, openoffice-bin-3.2.1.ebuild, files/wrapper.in:
  EAPI3 and prefix fixes, bug #315805, also clean up pax-stuff, bug #353587,
  remove outdated release

  15 Nov 2010; Thomas Kahle <tomka@gentoo.org> openoffice-bin-3.2.1.ebuild:
  x86 stable per bug #340917

  13 Nov 2010; Markos Chandras <hwoarang@gentoo.org>
  openoffice-bin-3.2.1.ebuild:
  Stable on amd64 wrt bug #340917

*openoffice-bin-3.2.1 (14 Jun 2010)

  14 Jun 2010; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-3.2.1_rc1.ebuild, +openoffice-bin-3.2.1.ebuild:
  Bump to OpenOffice 3.2.1

*openoffice-bin-3.2.1_rc1 (23 May 2010)

  23 May 2010; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-3.2.1_rc1.ebuild:
  First release candidate for openoffice-bin-3.2.1

  18 Apr 2010; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-3.1.1.ebuild:
  Remove openoffice-bin 3.1.1 for security bug #305195

  08 Mar 2010; Richard Freeman <rich0@gentoo.org>
  openoffice-bin-3.2.0.ebuild:
  amd64 stable - 305195

  02 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
  openoffice-bin-3.2.0.ebuild:
  stable x86, security bug 305195

  27 Feb 2010; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.1.1.ebuild, openoffice-bin-3.2.0.ebuild:
  Make sure the permissions of installed files are right, bug #306779

  21 Feb 2010; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.2.0.ebuild:
  Add missing ga and ja locales, closes bug #305433

*openoffice-bin-3.2.0 (15 Feb 2010)

  15 Feb 2010; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-3.2.0_rc5.ebuild, +openoffice-bin-3.2.0.ebuild:
  Final release for OpenOffice.org 3.2.0

*openoffice-bin-3.2.0_rc5 (04 Feb 2010)

  04 Feb 2010; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-3.2.0_rc4.ebuild, +openoffice-bin-3.2.0_rc5.ebuild:
  Update to RC5 for OpenOffice.org 3.2.0

  29 Jan 2010; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.1.1.ebuild:
  remove kde3-support by request of the kde-herd, see bug #296465

*openoffice-bin-3.2.0_rc4 (28 Jan 2010)

  28 Jan 2010; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-3.2.0_rc2.ebuild, +openoffice-bin-3.2.0_rc4.ebuild:
  Bump to newer release candidate for OOo 3.2.0

*openoffice-bin-3.2.0_rc2 (14 Jan 2010)

  14 Jan 2010; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-3.2.0_rc2.ebuild:
  Add RC2 for openoffice-bin 3.2.0, still masked

  26 Sep 2009; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-3.0.0.ebuild, -openoffice-bin-3.1.0.ebuild:
  Remove vulnerable versions for security bug #283370

  26 Sep 2009; Tobias Heinlein <keytoaster@gentoo.org>
  openoffice-bin-3.1.1.ebuild:
  amd64 stable, security bug #283370

  23 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
  openoffice-bin-3.1.1.ebuild:
  stable x86, security bug 283370

  02 Sep 2009; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-3.0.1.ebuild
  Remove old release

*openoffice-bin-3.1.1 (02 Sep 2009)

  02 Sep 2009; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-3.1.1.ebuild:
  Add ebuild for OpenOffice.org 3.1.1

  26 May 2009; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.1.0.ebuild:
  Add back swedish language support, bug #270529

  17 May 2009; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.1.0.ebuild:
  Accidentally missed spanish translation, bug #269601

*openoffice-bin-3.1.0 (08 May 2009)

  08 May 2009; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-3.1.0_rc1.ebuild, +openoffice-bin-3.1.0.ebuild:
  OpenOffice.org 3.1.0. All the language packs and amd64-support are back

*openoffice-bin-3.1.0_rc1 (08 Apr 2009)

  08 Apr 2009; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-3.1.0_rc1.ebuild:
  RC1 for OpenOffice.org 3.1. This adds back AMD64-support. Please also note
  that this release is missing some language packs, these should be back
  with RC2

*openoffice-bin-3.0.1 (04 Feb 2009)

  04 Feb 2009; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-3.0.1.ebuild:
  Bump to openoffice-bin 3.0.1, no amd64 support atm though, as upstream did
  no corresponding package until now.

  11 Jan 2009; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.0.0.ebuild:
  Add missing ru-language-pack, closes bug #246531

  09 Jan 2009; Andreas Proschofsky <suka@gentoo.org> openoffice-bin-3.0.0.ebuild:
  Fix sandbox problems, see bug #251249

  28 Dec 2008; Andreas Proschofsky <suka@gentoo.org> -openoffice-bin-2.4.1.ebuild:
  Remove outdated (and security problematic) release

  21 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.0.0.ebuild:
  Fix removal of javaldx on non-java systems, see bug #242844

  19 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.0.0.ebuild:
  Install dictionaries for english, french and spanish, tell the users where
  to find them, see bug #242312

  19 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.0.0.ebuild:
  Add pt_BR to the list of supported languages, closes bug #242686

  19 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.0.0.ebuild:
  Fix printeradmin symlink, bug #242690

  17 Oct 2008; Markus Meier <maekke@gentoo.org> openoffice-bin-3.0.0.ebuild:
  amd64/x86 stable, bug #235824

*openoffice-bin-3.0.0 (13 Oct 2008)

  13 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-3.0.0_rc4.ebuild, +openoffice-bin-3.0.0.ebuild:
  OpenOffice.org 3.0.0, final release.

*openoffice-bin-3.0.0_rc4 (07 Oct 2008)

  07 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-3.0.0_rc3.ebuild, +openoffice-bin-3.0.0_rc4.ebuild:
  Bump to RC4 for OpenOffice.org 3

*openoffice-bin-3.0.0_rc3 (03 Oct 2008)

  03 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-3.0.0_rc2.ebuild, +openoffice-bin-3.0.0_rc3.ebuild:
  Bump to OOo 3.0 RC3

*openoffice-bin-3.0.0_rc2 (22 Sep 2008)

  22 Sep 2008; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-3.0.0_rc1.ebuild, +openoffice-bin-3.0.0_rc2.ebuild:
  Bump to RC2 of openoffice-bin-3.0

  22 Sep 2008; Andreas Proschofsky <suka@gentoo.org>
  files/50-openoffice-bin:
  Fixup revdep-rebuild prevention for amd64, see bug #238243

  20 Sep 2008; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.0.0_rc1.ebuild:
  Some fixes / cleanups, most importantly: Integration of systemwide
  myspell-dictionaries does not work anymore, add a note and remove
  corresponding dep.

  15 Sep 2008; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.0.0_rc1.ebuild:
  Fix qstart-icon snafu

  15 Sep 2008; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-3.0.0_rc1.ebuild:
  Try to fix installation issues on amd64

*openoffice-bin-3.0.0_rc1 (11 Sep 2008)

  11 Sep 2008; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.4.1.ebuild, +openoffice-bin-3.0.0_rc1.ebuild:
  First release candidate for OOo 3. This now includes seperate binaries for
  amd64. Also packaging was made even more complicated and messy by
  upstream, so there might still be some missing things (like
  myspell-integration).

  17 Jul 2008; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-2.4.0.ebuild:
  Remove outdated version

  07 Jul 2008; Markus Meier <maekke@gentoo.org> openoffice-bin-2.4.1.ebuild:
  amd64 stable, bug #225723

  11 Jun 2008; Christian Faulhammer <opfer@gentoo.org>
  openoffice-bin-2.4.1.ebuild:
  stable x86, security bug 225732

*openoffice-bin-2.4.1 (10 Jun 2008)

  10 Jun 2008; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-2.4.1.ebuild:
  Bump to OpenOffice.org 2.4.1

  29 May 2008; Andreas Proschofsky <suka@gentoo.org> Manifest:
  Manifest recommit to fix bug #222919

  18 Apr 2008; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-2.3.1.ebuild:
  Remove openoffice-2.3.1 for security bug #218080

  17 Apr 2008; Markus Meier <maekke@gentoo.org> openoffice-bin-2.4.0.ebuild:
  amd64/x86 stable, security bug #218080

*openoffice-bin-2.4.0 (27 Mar 2008)

  27 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-2.4.0_rc6.ebuild, +openoffice-bin-2.4.0.ebuild:
  OpenOffice.org 2.4.0 is released

*openoffice-bin-2.4.0_rc6 (23 Mar 2008)

  23 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-2.4.0_rc6.ebuild:
  Add release candidate for OpenOffice.org 2.4.0, masked for now

  08 Dec 2007; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-2.3.0.ebuild:
  Clean out vulnerable release

  08 Dec 2007; Peter Weller <welp@gentoo.org> openoffice-bin-2.3.1.ebuild:
  Stable on amd64 wrt bug 200771

  06 Dec 2007; Christian Faulhammer <opfer@gentoo.org>
  openoffice-bin-2.3.1.ebuild:
  quote variables that need it

  06 Dec 2007; Christian Faulhammer <opfer@gentoo.org>
  openoffice-bin-2.3.1.ebuild:
  stable x86, bug 200771

*openoffice-bin-2.3.1 (04 Dec 2007)

  04 Dec 2007; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-2.3.1_rc1.ebuild, +openoffice-bin-2.3.1.ebuild:
  Add new release: OpenOffice.org 2.3.1

*openoffice-bin-2.3.1_rc1 (02 Dec 2007)

  02 Dec 2007; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-2.3.1_rc1.ebuild:
  Add masked release candidate for openoffice-bin-2.3.1

  20 Sep 2007; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.3.0.ebuild:
  Surpress QA warnings on AMD64 too, closes bug #193164

  19 Sep 2007; Andreas Proschofsky <suka@gentoo.org>
  -files/2.2.1/50-openoffice-bin, -files/2.2.1/ooo-wrapper2,
  -openoffice-bin-2.2.1.ebuild:
  Cleanup for security bug #192818

  18 Sep 2007; Christian Faulhammer <opfer@gentoo.org>
  openoffice-bin-2.3.0.ebuild:
  stable x86, security bug 192818

  18 Sep 2007; Christoph Mende <angelos@gentoo.org>
  openoffice-bin-2.3.0.ebuild:
  Stable on amd64 wrt security bug #192818

  18 Sep 2007; Andreas Proschofsky <suka@gentoo.org> files/wrapper.in,
  openoffice-bin-2.3.0.ebuild:
  Fix wrapper on AMD64 see bug #192833

*openoffice-bin-2.3.0 (17 Sep 2007)

  17 Sep 2007; Andreas Proschofsky <suka@gentoo.org> +files/wrapper.in,
  -openoffice-bin-2.3.0_rc2.ebuild, +openoffice-bin-2.3.0.ebuild:
  Bump to release version of OOo 2.3.0

*openoffice-bin-2.3.0_rc2 (07 Sep 2007)

  07 Sep 2007; Andreas Proschofsky <suka@gentoo.org>
  -openoffice-bin-2.3.0_rc1.ebuild, +openoffice-bin-2.3.0_rc2.ebuild:
  Bump to RC2

  04 Sep 2007; Andreas Proschofsky <suka@gentoo.org>
  -files/2.3.0_rc1/50-openoffice-bin, -files/2.3.0_rc1/ooo-wrapper2,
  +files/50-openoffice-bin, openoffice-bin-2.3.0_rc1.ebuild:
  Get rid of the wrapper script

*openoffice-bin-2.3.0_rc1 (04 Sep 2007)

  04 Sep 2007; Andreas Proschofsky <suka@gentoo.org>
  +files/2.3.0_rc1/50-openoffice-bin, +files/2.3.0_rc1/ooo-wrapper2,
  +openoffice-bin-2.3.0_rc1.ebuild:
  Add first release candidate for openoffice-bin-2.3.0

  02 Jul 2007; Piotr Jaroszyński <peper@gentoo.org>
  openoffice-bin-2.2.1.ebuild:
  (QA) RESTRICT clean up.

  16 Jun 2007; Andreas Proschofsky <suka@gentoo.org>
  -files/2.2.0/50-openoffice-bin, -files/2.2.0/ooo-wrapper2,
  -openoffice-bin-2.2.0.ebuild:
  Remove 2.2.0 for bug #181773

  15 Jun 2007; Christoph Mende <angelos@gentoo.org>
  openoffice-bin-2.2.1.ebuild:
  Stable on amd64 wrt security bug 181773

  15 Jun 2007; Christian Faulhammer <opfer@gentoo.org>
  openoffice-bin-2.2.1.ebuild:
  stable x86, security bug 181773

*openoffice-bin-2.2.1 (12 Jun 2007)

  12 Jun 2007; Andreas Proschofsky <suka@gentoo.org>
  +files/2.2.1/50-openoffice-bin, +files/2.2.1/ooo-wrapper2,
  +openoffice-bin-2.2.1.ebuild:
  Update to OpenOffice.org 2.2.1, this is a bugfix release, so no new features
  to see.

  30 Apr 2007; Marius Mauch <genone@gentoo.org> openoffice-bin-2.2.0.ebuild:
  Replacing einfo with elog

  25 Apr 2007; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.2.0.ebuild:
  Fix printeradmin desktop-file, see bug #173715

  06 Apr 2007; Andreas Proschofsky <suka@gentoo.org>
  -files/2.1.0/50-openoffice-bin, -files/2.1.0/ooo-wrapper2,
  -openoffice-bin-2.1.0.ebuild:
  Remove vulnerable version, see bug #170828

  06 Apr 2007; Peter Weller <welp@gentoo.org> openoffice-bin-2.2.0.ebuild:
  Stable on amd64 wrt bug 170828

  04 Apr 2007; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.2.0.ebuild:
  Get language packs from our openoffice-extended mirror list instead of one
  specific mirror

  29 Mar 2007; Andrej Kacian <ticho@gentoo.org> openoffice-bin-2.2.0.ebuild:
  Stable on x86, security bug #170828.

*openoffice-bin-2.2.0 (29 Mar 2007)

  29 Mar 2007; Andreas Proschofsky <suka@gentoo.org>
  +files/2.2.0/50-openoffice-bin, +files/2.2.0/ooo-wrapper2,
  -files/2.2.0_rc3/50-openoffice-bin, -files/2.2.0_rc3/ooo-wrapper2,
  +openoffice-bin-2.2.0.ebuild:
  Bump to shiny new OpenOffice.org 2.2.0 release

*openoffice-bin-2.2.0_rc3 (16 Mar 2007)

  16 Mar 2007; Andreas Proschofsky <suka@gentoo.org>
  +files/2.2.0_rc3/50-openoffice-bin, +files/2.2.0_rc3/ooo-wrapper2,
  +openoffice-bin-2.2.0_rc3.ebuild:
  Release candidate for OpenOffice.org 2.2.0

  07 Mar 2007; Chris Gianelloni <wolf31o2@gentoo.org>
  openoffice-bin-2.1.0.ebuild:
  Change all instances of [ to [[.

  25 Jan 2007; Marius Mauch <genone@gentoo.org> openoffice-bin-2.1.0.ebuild:
  Replacing einfo with elog

  09 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.1.0.ebuild:
  Accidentaly only fixed half of the problem in regard to the wrong download URI

  08 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
  -files/2.0.3/50-openoffice-bin, -files/2.0.4/50-openoffice-bin,
  -files/2.0.3/ooo-wrapper2, -files/2.0.4/ooo-wrapper2,
  -openoffice-bin-2.0.3.ebuild, -openoffice-bin-2.0.4.ebuild:
  Remove old versions

  08 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.1.0.ebuild:
  Upstream changed location of the langpacks without any notice or reasoning.
  Fixing, closes bug #160853

  07 Jan 2007; Michael Cummings <mcummings@gentoo.org>
  openoffice-bin-2.1.0.ebuild:
  Bug 159951, marking amd64 stable

  04 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
  openoffice-bin-2.1.0.ebuild:
  stable x86, security bug #159859

  24 Dec 2006; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.1.0.ebuild:
  Fix dependency on eselect-oodict

*openoffice-bin-2.1.0 (12 Dec 2006)

  12 Dec 2006; Andreas Proschofsky <suka@gentoo.org>
  +files/2.1.0/50-openoffice-bin, -files/2.1.0_rc1/50-openoffice-bin,
  +files/2.1.0/ooo-wrapper2, -files/2.1.0_rc1/ooo-wrapper2,
  -openoffice-bin-2.1.0_rc1.ebuild, +openoffice-bin-2.1.0.ebuild:
  OpenOffice.org 2.1.0 is here.

  04 Dec 2006; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.1.0_rc1.ebuild:
  Silence well known QA-messages, also fix the desktop files for 2.1_rc1,
  closes bug #156533

  04 Dec 2006; <solar@gentoo.org> openoffice-bin-2.0.4.ebuild,
  openoffice-bin-2.1.0_rc1.ebuild:
  - QA Bug 156557 - Removed invalid use of RESTRICT=binchecks

*openoffice-bin-2.1.0_rc1 (25 Nov 2006)

  25 Nov 2006; Andreas Proschofsky <suka@gentoo.org>
  +files/2.1.0_rc1/50-openoffice-bin, +files/2.1.0_rc1/ooo-wrapper2,
  +openoffice-bin-2.1.0_rc1.ebuild:
  Add first Release Candidate for OpenOffice.org 2.1.0

*openoffice-bin-2.0.4 (13 Oct 2006)

  13 Oct 2006; Andreas Proschofsky <suka@gentoo.org>
  +files/2.0.4/50-openoffice-bin, -files/2.0.4_rc3/50-openoffice-bin,
  +files/2.0.4/ooo-wrapper2, -files/2.0.4_rc3/ooo-wrapper2,
  -openoffice-bin-2.0.4_rc3.ebuild, +openoffice-bin-2.0.4.ebuild:
  Bump to final 2.0.4 release

*openoffice-bin-2.0.4_rc3 (28 Sep 2006)

  28 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
  -files/2.0.4_rc2/50-openoffice-bin, +files/2.0.4_rc3/50-openoffice-bin,
  -files/2.0.4_rc2/ooo-wrapper2, +files/2.0.4_rc3/ooo-wrapper2,
  -openoffice-bin-2.0.4_rc2.ebuild, +openoffice-bin-2.0.4_rc3.ebuild:
  Bump to next RC for 2.0.4

*openoffice-bin-2.0.4_rc2 (15 Sep 2006)

  15 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
  -files/2.0.4_rc1/50-openoffice-bin, +files/2.0.4_rc2/50-openoffice-bin,
  -files/2.0.4_rc1/ooo-wrapper2, +files/2.0.4_rc2/ooo-wrapper2,
  -openoffice-bin-2.0.4_rc1.ebuild, +openoffice-bin-2.0.4_rc2.ebuild:
  Bump to 2.0.4_rc2, also add kde-use-flag and remove modular X-suport

*openoffice-bin-2.0.4_rc1 (10 Sep 2006)

  10 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
  +files/2.0.4_rc1/50-openoffice-bin, +files/2.0.4_rc1/ooo-wrapper2,
  +openoffice-bin-2.0.4_rc1.ebuild:
  First Release Candidate for OpenOffice.org 2.0.4

  16 Jul 2006; Andreas Proschofsky <suka@gentoo.org>
  -files/2.0.2/ooo-wrapper2, -openoffice-bin-2.0.2.ebuild:
  Remove vulnerable versions from the tree, see bug #138545

  15 Jul 2006; Joshua Jackson <tsunam@gentoo.org>
  openoffice-bin-2.0.3.ebuild:
  Stable x86; Security bug #138545 

  15 Jul 2006; Luis Medinas <metalgod@gentoo.org>
  openoffice-bin-2.0.3.ebuild:
  Stable on amd64. See security bug #138545.

  08 Jul 2006; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.0.3.ebuild:
  Change call for eselect-oodict, so that AMD64 works, closes bug #139228

  07 Jul 2006; Joshua Nichols <jnichols@gentoo.org>
  openoffice-bin-2.0.2.ebuild, openoffice-bin-2.0.3.ebuild:
  Fixed virtual/jre dependency.

  07 Jul 2006; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.0.3.ebuild:
  Add dependency on recent freetype to prevent start problems, see bug #132649

  07 Jul 2006; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.0.3.ebuild:
  Small fix for strip-linguas

*openoffice-bin-2.0.3 (02 Jul 2006)

  02 Jul 2006; Andreas Proschofsky <suka@gentoo.org>
  +files/2.0.3/50-openoffice-bin, -files/2.0.3_rc6/50-openoffice-bin,
  +files/2.0.3/ooo-wrapper2, -files/2.0.3_rc6/ooo-wrapper2,
  -openoffice-bin-2.0.3_rc6.ebuild, +openoffice-bin-2.0.3.ebuild:
  Final release of 2.0.3, also fixes security problems, see bug #138545

  20 Jun 2006; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.0.3_rc6.ebuild:
  Little fix to the LINGUAS stuff

*openoffice-bin-2.0.3_rc6 (20 Jun 2006)

  20 Jun 2006; Andreas Proschofsky <suka@gentoo.org>
  -files/2.0.3_rc5/50-openoffice-bin, +files/2.0.3_rc6/50-openoffice-bin,
  -files/2.0.3_rc5/ooo-wrapper2, +files/2.0.3_rc6/ooo-wrapper2,
  -openoffice-bin-2.0.3_rc5.ebuild, +openoffice-bin-2.0.3_rc6.ebuild:
  Another release candidate for OOo 2.0.3, this also adds the supported
  LINGUAS to IUSE, see bug #136953

*openoffice-bin-2.0.3_rc5 (04 Jun 2006)

  04 Jun 2006; Andreas Proschofsky <suka@gentoo.org>
  -files/2.0.3_rc4/50-openoffice-bin, +files/2.0.3_rc5/50-openoffice-bin,
  -files/2.0.3_rc4/ooo-wrapper2, +files/2.0.3_rc5/ooo-wrapper2,
  -openoffice-bin-2.0.3_rc4.ebuild, +openoffice-bin-2.0.3_rc5.ebuild:
  Hopefully last release candidate, that's also the first version with proper
  integration of the myspell-ebuilds we are now using to provide spell
  checking by default

*openoffice-bin-2.0.3_rc4 (30 May 2006)

  30 May 2006; Andreas Proschofsky <suka@gentoo.org>
  -files/2.0.3_rc3/ooo-wrapper2, +files/2.0.3_rc4/ooo-wrapper2,
  +files/2.0.3_rc4/50-openoffice-bin, -openoffice-bin-2.0.3_rc3.ebuild,
  +openoffice-bin-2.0.3_rc4.ebuild:
  Bump to RC4, also solves the long standing revdep-rebuild-problem, see bug
  #32276

*openoffice-bin-2.0.3_rc3 (24 May 2006)

  24 May 2006; Andreas Proschofsky <suka@gentoo.org>
  -files/2.0.3_rc1/ooo-wrapper2, +files/2.0.3_rc3/ooo-wrapper2,
  -openoffice-bin-2.0.3_rc1.ebuild, +openoffice-bin-2.0.3_rc3.ebuild:
  Version bump to 2.0.3_rc3

*openoffice-bin-2.0.3_rc1 (18 May 2006)

  18 May 2006; Andreas Proschofsky <suka@gentoo.org>
  +files/2.0.3_rc1/ooo-wrapper2, +openoffice-bin-2.0.3_rc1.ebuild:
  First OpenOffice.org 2.0.3 release candidate

  17 Mar 2006; Andreas Proschofsky <suka@gentoo.org>
  -files/2.0.1/ooo-wrapper2, -openoffice-bin-2.0.1.ebuild:
  Remove openoffice-bin-2.0.1 for security bug #126433

  16 Mar 2006; Chris Gianelloni <wolf31o2@gentoo.org>
  openoffice-bin-2.0.2.ebuild:
  Stable on x86 wrt bug #126433.

  16 Mar 2006; Luis Medinas <metalgod@gentoo.org>
  openoffice-bin-2.0.2.ebuild:
  Stable on amd64. See bug #126433.

*openoffice-bin-2.0.2 (07 Mar 2006)

  07 Mar 2006; Andreas Proschofsky <suka@gentoo.org>
  +files/2.0.2/ooo-wrapper2, -files/2.0.2_rc4/ooo-wrapper2,
  -openoffice-bin-2.0.2_rc4.ebuild, +openoffice-bin-2.0.2.ebuild:
  OpenOffice.org-2.0.2 in the tree, masked until an official announcement

  04 Mar 2006; Andreas Proschofsky <suka@gentoo.org>
  files/2.0.1/ooo-wrapper2, files/2.0.2_rc4/ooo-wrapper2:
  Fix for Python scripting, see bug #123962

*openoffice-bin-2.0.2_rc4 (28 Feb 2006)

  28 Feb 2006; Andreas Proschofsky <suka@gentoo.org>
  -files/2.0.2_rc2/ooo-wrapper2, +files/2.0.2_rc4/ooo-wrapper2,
  -openoffice-bin-2.0.2_rc2.ebuild, +openoffice-bin-2.0.2_rc4.ebuild:
  New release candidate

*openoffice-bin-2.0.2_rc2 (21 Feb 2006)

  21 Feb 2006; Andreas Proschofsky <suka@gentoo.org>
  -files/2.0.2_rc1/ooo-wrapper2, +files/2.0.2_rc2/ooo-wrapper2,
  -openoffice-bin-2.0.2_rc1.ebuild, +openoffice-bin-2.0.2_rc2.ebuild:
  New release candiate, removing the old one

*openoffice-bin-2.0.2_rc1 (16 Feb 2006)

  16 Feb 2006; Andreas Proschofsky <suka@gentoo.org>
  +files/2.0.2_rc1/ooo-wrapper2, +openoffice-bin-2.0.2_rc1.ebuild:
  First release candidate for OpenOffice.org 2.0.2, use at your own risk

  03 Feb 2006; Andreas Proschofsky <suka@gentoo.org>
  -files/1.1.5/ooffice-wrapper-1.3, -openoffice-bin-1.1.5.ebuild:
  Pull openoffice-bin-1.1.5 for security bug #121458

  19 Jan 2006; Krzysiek Pawlik <nelchael@gentoo.org>
  openoffice-bin-2.0.1.ebuild:
  Stable on x86.

  19 Jan 2006; Marcus D. Hanwell <cryos@gentoo.org>
  openoffice-bin-2.0.1.ebuild:
  Stable on amd64.

  29 Dec 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.0.1.ebuild:
  Just some cleanups to the ebuild

*openoffice-bin-2.0.1 (21 Dec 2005)

  21 Dec 2005; Andreas Proschofsky <suka@gentoo.org>
  +files/2.0.1/ooo-wrapper2, +openoffice-bin-2.0.1.ebuild:
  New upstream release, no big new features but lots of bugfixes, also this
  adds a few more translations

  12 Dec 2005; Donnie Berkholz <spyderous@gentoo.org>;
  openoffice-bin-2.0.0.ebuild:
  Add modular X dependencies. For any interest in reproducing the command used
  to find them: find /usr/lib/openoffice/program/ -maxdepth 1 | grep -v -e
  '\.so$' -e '\.so\.' | xargs file | grep 'LSB exe' | cut -d: -f1 | xargs ldd
  | cut -d'(' -f1 | sort | uniq | grep lib[SIX].

  08 Dec 2005; Herbie Hopkins <herbs@gentoo.org>
  openoffice-bin-2.0.0.ebuild:
  Adjusted RDEPEND to depend on emul-linux-x86-java to enable java
  functionality on amd64, closes bug #92378.

  29 Nov 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.0.0.ebuild:
  Finally mark stable on x86

  22 Nov 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.0.0.ebuild:
  Postinstall fix for PaX

  21 Nov 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.0.0.ebuild:
  We really should depend on sys-libs/glibc instead of virtual/libc

  29 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.0.0.ebuild:
  Some reorganizations to be more in-line with the source-based build, further
  cleanups include the mime and icon stuff. This also removes the need for the
  "kde" use-flag. Don't fear, this doesn't remove kde-integration, the use-flag
  was only used for mime type stuff.

  23 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.0.0.ebuild:
  Add russian translation, closes bug #110251

*openoffice-bin-2.0.0 (20 Oct 2005)

  20 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-2.0.0.ebuild:
  OpenOffice.org 2.0, finally. Time to celebrate.

*openoffice-bin-2.0.0_rc3 (15 Oct 2005)

  15 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-2.0.0_rc3.ebuild:
  New and hopefully final release candidate

  12 Oct 2005; Andreas Proschofsky <suka@gentoo.org> ChangeLog:
  Add missing mozilla dependency.

  11 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
  -files/1.1.1/ooffice-wrapper-1.3, -openoffice-bin-1.1.1.ebuild:
  Remove the ancient openoffice-bin 1.1.1 as it has security issues and the
  ppc-herd prefers to have it removed, see bug #97907

  11 Oct 2005; Andreas Proschofsky <suka@gentoo.org> ChangeLog:
  Another shot at the icon dir permission problem

  11 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-2.0.0_rc2.ebuild:
  Fix user install dir to be in-line with the source based ebuild

  08 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
  files/2.0.0/ooo-wrapper2, openoffice-bin-2.0.0_rc2.ebuild:
  clean up wrapper

  08 Oct 2005; Simon Stelling <blubb@gentoo.org>
  openoffice-bin-2.0.0_rc1.ebuild:
  add forgotten has_multilib_profile in front of ABI=x86

*openoffice-bin-2.0.0_rc2 (08 Oct 2005)

  08 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-2.0.0_rc2.ebuild:
  New Release Candidate, most language packs are still rc1 as no new ones have
  been provided, fixed a few bugs and backed out AMD64 changes as they break
  x86

  08 Oct 2005; Simon Stelling <blubb@gentoo.org>
  openoffice-bin-2.0.0_rc1.ebuild:
  fix bug 107568

*openoffice-bin-2.0.0_rc1 (27 Sep 2005)

  27 Sep 2005; Andreas Proschofsky <suka@gentoo.org>
  +files/2.0.0/ooo-wrapper2, +openoffice-bin-2.0.0_rc1.ebuild:
  First Release Candidate for OpenOffice.org 2.0! Don't let yourself be fooled
  by the About box this is NOT (yet) the final release. This release also adds
  back all the missing language packs of the last release and even a few more,
  so now the ebuild supports 50 different LINGUAS settings.

  24 Sep 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-1.1.5.ebuild, openoffice-bin-1.9.130.ebuild:
  Getting rid of the old mimetype stuff which causes broken behaviour for kde,
  see bug #92767

  22 Sep 2005; Luis Medinas <metalgod@gentoo.org>
  openoffice-bin-1.1.5.ebuild:
  Marked Stable on amd64.

*openoffice-bin-1.9.130 (18 Sep 2005)

  18 Sep 2005; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-1.9.130.ebuild:
  New beta-release for OOo 2.0, unfortunately a bunch more translations
  missing, as upstream did not provide language packs, on the other hands a
  few other have been added (from the "unofficial" translations)

  18 Sep 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-1.1.5.ebuild:
  Marking stable on x86

*openoffice-bin-1.1.5 (14 Sep 2005)

  14 Sep 2005; Andreas Proschofsky <suka@gentoo.org>
  +files/1.1.5/ooffice-wrapper-1.3, +openoffice-bin-1.1.5.ebuild:
  Version bump

  14 Sep 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-1.9.128.ebuild:
  fix variable declaration, see bug #105618

  10 Sep 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-1.9.128.ebuild:
  Fix startup problems on non-java systems, see bug #99366

  10 Sep 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-1.9.128.ebuild:
  Work around some icon dir weirdness for bug #99366

*openoffice-bin-1.9.128 (09 Sep 2005)

  09 Sep 2005; Andreas Proschofsky <suka@gentoo.org> files/1.9/ooo-wrapper2,
  -openoffice-bin-1.9.122.ebuild, +openoffice-bin-1.9.128.ebuild:
  New development release, pt_BR localization unfortunately missing, as it
  wasn't provide by upstream. Also this marks the change of the install dir to
  /usr/lib/openoffice

  23 Aug 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-1.1.1.ebuild, openoffice-bin-1.1.4-r1.ebuild:
  Correct cp -a to cp -pPR for bug #103487

*openoffice-bin-1.9.122 (03 Aug 2005)

  03 Aug 2005; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-1.9.122.ebuild:
  New testing release, ebuild simplified a bit, thanks to some saner packaging
  on behalf of the OOo-people

*openoffice-bin-1.9.118 (21 Jul 2005)

  21 Jul 2005; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-1.9.118.ebuild:
  New testing release

*openoffice-bin-1.9.109 (16 Jun 2005)

  16 Jun 2005; Andreas Proschofsky <suka@gentoo.org>
  +files/1.9/ooo-wrapper2, +openoffice-bin-1.9.109.ebuild:
  New beta version of OOo 2.0. This uses a new wrapper, also adds two new
  languages (hr and lt) plus some minor fixes and the user install dir
  has changed.

  05 Jun 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-1.9.104.ebuild:
  Make the LINGUAS-stuff a little bit smarter to not break en_GB, closes bug
  #93826

  21 May 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-1.9.104.ebuild:
  Missed two new rpms, which breaks stuff for some. Fixed. Install 
  changing all the time is really anoying.

*openoffice-bin-1.9.104 (20 May 2005)

  20 May 2005; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-1.9.104.ebuild:
  New beta release, some modifications to the ebuild as the language pack
  format has changed. Again.

*openoffice-bin-1.9.95 (23 Apr 2005)

  23 Apr 2005; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-1.9.95.ebuild:
  Another new development release, this also now includes a fix for the recent
  security problem

  20 Apr 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-1.9.93.ebuild:
  fixed certain language installations

*openoffice-bin-1.9.93 (15 Apr 2005)

  15 Apr 2005; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-1.9.93.ebuild:
  New prerelease of OOo 2.0, this still has no fix for the security bug
  #88863, so use with care

  13 Apr 2005; Homer Parker <hparker@gentoo.org>
  openoffice-bin-1.1.4-r1.ebuild:
  Mark stable for bug #88863

  12 Apr 2005; Olivier Crête <tester@gentoo.org>
  openoffice-bin-1.1.4-r1.ebuild:
  Stable on x86 per security bug #88863

*openoffice-bin-1.1.4-r1 (12 Apr 2005)

  12 Apr 2005; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-1.1.4-r1.ebuild:
  revision bump for security fix, see bug #88863

*openoffice-bin-1.9.91-r2 (10 Apr 2005)

  10 Apr 2005; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-1.9.91-r2.ebuild:
  Another revision, which adds some 20 new unofficial translations, also this
  uses another translation for german, which was borked in -r1

  09 Apr 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-1.9.91-r1.ebuild:
  remove addpredicts to make genstef happy ;)

*openoffice-bin-1.9.91-r1 (08 Apr 2005)

  09 Apr 2005; Brian Harring <ferringb@gentoo.org> openoffice-bin-1.9.91-r1.ebuild:
  s:/usr/portage/distfiles/:${DISTDIR}:g , bug 88452

  08 Apr 2005; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-1.9.91-r1.ebuild:
  New revision, adds LINGUAS support! Additional language packs will be
  downloaded and installed if your LINGUAS settings are set correctly.

  Closes bug #44944 and lots of other longstanding bugs.

*openoffice-bin-1.9.91 (08 Apr 2005)

  08 Apr 2005; Andreas Proschofsky <suka@gentoo.org>
  +openoffice-bin-1.9.91.ebuild:
  New beta release of OOo 2.0

  31 Mar 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-1.9.87.ebuild:
  Fix to make the KDE mime system happy

*openoffice-bin-1.9.87 (30 Mar 2005)

  30 Mar 2005; Andreas Proschofsky <suka@gentoo.org>
  +files/1.9/ooffice-wrapper-1.9, +openoffice-bin-1.9.87.ebuild:
  First pre-release of OpenOffice.org 2.0. Please remember:
  
  *) This is a pre-release so expect breakage, its use is totally at your own
  risk
  
  *) The ebuild is not finished, but should generally work, just don't expect
  a "smooth" upgrade path for your user install to future versions
  
  Other than that: Enjoy!

  30 Mar 2005; Andreas Proschofsky <suka@gentoo.org>
  files/1.1.4/ooffice-wrapper-1.3, openoffice-bin-1.1.4.ebuild:
  Simplify menu entry installation, see bug #81902, also fix problem with
  newer findutils, bug#86974

  24 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
  files/1.1.4/ooffice-wrapper-1.3:
  Add check for mounted /proc to wrapper, OOo will fail without it

  24 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
  files/1.1.4/ooffice-wrapper-1.3:
  Remove unused UPDATEFLAG from wrapper

  23 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
  files/1.1.4/ooffice-wrapper-1.3:
  Fix for wrapper-file to automatically find all fonts in /usr/share/fonts,
  also remove some unneeded stuff

  17 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-1.1.4.ebuild:
  Some ebuild and dependency cleanups

  17 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-1.1.4.ebuild:
  Clean up dependencies, also don't hard-depend on java anymore, as it is not
  needed, close the ancien bug #32315

  16 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-1.1.4.ebuild:
  Prevent OOo from double installing menu entries, closes bug #53752

  14 Jan 2005; Jan Brinkmann <luckyduck@gentoo.org>
  openoffice-bin-1.1.1.ebuild, openoffice-bin-1.1.3.ebuild,
  openoffice-bin-1.1.4.ebuild:
  back to amd64 from of emul-linux-x86

  12 Jan 2005; Jan Brinkmann <luckyduck@gentoo.org>
  openoffice-bin-1.1.1.ebuild, openoffice-bin-1.1.3.ebuild,
  openoffice-bin-1.1.4.ebuild:
  migrated from amd64? to emul-linux-x86? dependency.

  12 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
  openoffice-bin-1.1.4.ebuild:
  Mark 1.1.4 stable on x86

*openoffice-bin-1.1.4 (23 Dec 2004)

  23 Dec 2004; Andreas Proschofsky <suka@gentoo.org>
  +files/1.1.4/ooffice-wrapper-1.3, +openoffice-bin-1.1.4.ebuild:
  New release, wrapper updated for smooth transition

  12 Nov 2004; suka@gentoo.org openoffice-bin-1.1.1.ebuild,
  openoffice-bin-1.1.3.ebuild:
  Fix ewarn messages, closes bug #70850

  12 Oct 2004; suka@gentoo.org openoffice-bin-1.1.3.ebuild:
  mark stable on x86 for bug #63556

  10 Oct 2004; Simon Stelling <blubb@gentoo.org>
  openoffice-bin-1.1.3.ebuild:
  stable on amd64 for bug #63556

*openoffice-bin-1.1.3 (02 Oct 2004)

  02 Oct 2004; suka@gentoo.org +files/1.1.3/ooffice-wrapper-1.3,
  +openoffice-bin-1.1.3.ebuild:
  Version bump. Masked for now, will unmask after the official release
  announcement

  19 Sep 2004; Travis Tilley <lv@gentoo.org> openoffice-bin-1.1.2.ebuild:
  stable on amd64

  20 Aug 2004; suka@gentoo.org openoffice-bin-1.1.2.ebuild:
  fixing some sandbox issues and marking stable on x86, at last

  30 Jun 2004; <augustus@gentoo.org> openoffice-bin-1.1.2.ebuild:
  Added ~amd64 keyword. Bug 55743.

*openoffice-bin-1.1.2 (17 Jun 2004)

  17 Jun 2004; suka@gentoo.org +files/1.1.2/ooffice-wrapper-1.3,
  +openoffice-bin-1.1.2.ebuild:
  New version, user install migration from 1.1.1 should work fine this time

  01 Jun 2004; Aron Griffis <agriffis@gentoo.org>
  openoffice-bin-1.0.3.1.ebuild, openoffice-bin-1.1.0.ebuild,
  openoffice-bin-1.1.1.ebuild:
  Fix use invocation

  11 May 2004; Travis Tilley <lv@gentoo.org> openoffice-bin-1.1.1.ebuild:
  added back in amd64 support and added ~amd64 keyword

  04 May 2004; Pieter Van den Abeele <pvdabeel@gentoo.org> openoffice-bin-1.1.1.ebuild:
  Made ebuild ppc compatible

  01 Apr 2004; suka@gentoo.org openoffice-bin-1.1.1.ebuild,
  files/1.1.1/ooffice-wrapper-1.3:
  User settings migration does not work as there have been some changes to the
  user install :-( Removing the migration stuff, you will have to redo your
  settings after upgrading

*openoffice-bin-1.1.1 (30 Mar 2004)

  30 Mar 2004; suka@gentoo.org openoffice-bin-1.1.1.ebuild,
  files/1.1.1/ooffice-wrapper-1.3:
  New version, masked for now to do some further testing

  24 Jan 2004; suka <suka@gentoo.org> openoffice-bin-1.1.0.ebuild:
  Just some cleanups to the ebuild

  24 Jan 2004; suka <suka@gentoo.org> openoffice-bin-1.0.3.ebuild,
  openoffice-bin-1.1_rc4.ebuild, files/ooffice-wrapper-1.3:
  Removing some old versions

  17 Jan 2004; <suka@gentoo.org> openoffice-bin-1.1.0.ebuild:
  Bug fixes for install and desktop entries (bug #32418)

  14 Nov 2003; Brad House <brad_mssw@gentoo.org> openoffice-bin-1.1.0.ebuild:
  let openoffice-bin install on amd64 using compat libs

  07 Nov 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-bin-1.1.0.ebuild:
  Add a predict for /root/.gconfd to the ebuild, just like in the from-source
  version

  04 Nov 2003; Brad Laue <brad@gentoo.org> openoffice-bin-1.1.0.ebuild:
  Stable on x86

*openoffice-bin-1.1.0 (05 Oct 2003)

  05 Oct 2003; Brad Laue <brad@gentoo.org> openoffice-bin-1.1.0.ebuild,
  files/1.1.0/ooffice-wrapper-1.3:
  Bump to 1.1.0 final release version.

*openoffice-bin-1.1_rc4 (15 Sep 2003)

  15 Sep 2003; Brandon Low <lostlogic@gentoo.org>
  openoffice-bin-1.1_rc4.ebuild, files/ooffice-wrapper-1.3:
  Bump to rc4, note ppc users, this is -ppc masked, and there is _no_ ppc src
  for this version.

*openoffice-bin-1.1_rc3 (17 Aug 2003)

  04 Aug 2003; Brad Laue <brad@gentoo.org> files/1.1_rc2/ooffice-wrapper-1.3:
  Copy ooffice-wrapper over from app-office/openoffice, as it will properly
  launch OpenOffice when only the minor or RC revision has changed.

*openoffice-bin-1.1_rc2 (02 Aug 2003)

  02 Aug 2003; Brad Laue <brad@gentoo.org> openoffice-bin-1.1_rc2.ebuild,
  files/1.1_rc2/ooffice-wrapper-1.3:
  Add 1.1_rc2

*openoffice-bin-1.1_rc1 (24 Jul 2003)

  31 Jul 2003; Todd Heim <heim@gentoo.org> Manifest openoffice-bin-1.1_beta2-r1.ebuild openoffice-bin-1.1_rc1.ebuild files/digest-openoffice-bin-1.1_beta2-r1 files/digest-openoffice-bin-1.1_rc1 :
  fixed URL's for ppc binaries; installer dies with glibc errors.

  24 Jul 2003; Brad Laue <brad@gentoo.org> openoffice-bin-1.1_rc1.ebuild,
  files/1.1_rc1/ooffice-wrapper-1.3:
  Add openoffice-bin 1.1_rc1; presently x86 only

  30 Jun 2003; Brad Laue <brad@gentoo.org> openoffice-bin-1.1_beta2-r1.ebuild:
  Add ooweb symlink

*openoffice-bin-1.1_beta2-r1 (30 Jun 2003)

  30 Jun 2003; Brad Laue <brad@gentoo.org> openoffice-bin-1.1_beta2-r1.ebuild:
  Correct an issue where KDE menu items show up twice - directory name changed
  on us.

  20 Jun 2003; Paul de Vrieze <pauldv@gentoo.org>
  openoffice-bin-1.1_beta2.ebuild, files/1.1_beta2/ooffice-wrapper-1.3:
  Fix some errors concerning the versions

  19 Jun 2003; Paul de Vrieze <pauldv@gentoo.org>
  openoffice-bin-1.1_beta-r1.ebuild, openoffice-bin-1.1_beta2.ebuild:
  Make sure that the timestamps of files are updated so the files are not
  removed when portage believes it are old files:#22593

*openoffice-bin-1.1_beta2 (19 Jun 2003)

  19 Jun 2003; Paul de Vrieze <pauldv@gentoo.org>
  openoffice-bin-1.1_beta2.ebuild:
  Add openoffice 1.1beta2 and fix the scripts (taken from the source version).
  This fixes a number of bugs: #19797 #22872

*openoffice-bin-1.0.3.1 (08 Jun 2003)

  08 Jun 2003; Paul de Vrieze <pauldv@gentoo.org>
  openoffice-bin-1.0.3.1.ebuild:
  Make a new ebuild with the printing fixed. It uses a patch as the difference
  is only in one file, and having users download oo anew would be overdoing.

*openoffice-bin-1.1_beta-r1 (08 Jun 2003)

  08 Jun 2003; Paul de Vrieze <pauldv@gentoo.org>
  openoffice-bin-1.1_beta-r1.ebuild:
  Fix installation of kde menu items. This fixes bug #20428.

*openoffice-bin-1.0.3 (Apr 07 2003)

  26 Jul 2003; Todd Heim <heim@gentoo.org> Manifest openoffice-bin-1.0.3.ebuild files/digest-openoffice-bin-1.0.3 :
  fixed url for ppc binary, changed to ~ppc
  07 Apr 2003; Seth Chandler <sethbc@gentoo.org>; openoffice-bin-1.0.3.ebuild:
  added 1.0.3 to portage, but printing is broken, there should be a fix out 
  shortly

*openoffice-bin-1.1_Beta (Apr 03 2003)
  03 Apr 2003; Seth Chandler <sethbc@gentoo.org>; openoffice-bin-1.1_beta.ebuild:
  added 1.1_beta to portage, there are still a LOT of issues with 1.1_beta
  some with the software itself, others with the ebuild, i'm working on them

*openoffice-bin-1.0.2 (Jan 29 2003)

  19 Mar 2003; Seth Chandler <sethbc@gentoo.org>; openoffice-bin-1.0.2.ebuild:
  some wrapper work plus a symlink fix

  27 Jan 2003; Mark Guertin <gerk@gentoo.org> openoffice-bin-1.0.2.ebuild :
  Fixed MY_PV for installation path issue on PPC and added ppc digest.  Tested
  and set to ~ppc.  Was no initial ChangeLog entry for this ebuild.

  06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
 
*openoffice-bin-1.0.1 (15 Sep 2002)
  05 Dec 2002; Seth Chandler <sethbc@gentoo.org> openoffice-bin-1.0.1.ebuild :
  Add "addpredict" 's to fix sandbox issues; closes bug 8063.

*openoffice-bin-1.0.1 (15 Sep 2002)
  1 Oct 2002; Martin Schlemmer <azarah@gentoo.org> openoffice-bin-1.0.1.ebuild :
  Add "addpredict" 's to fix sandbox issues; closes bug 8587.

  24 Sep 2002; Owen Stampflee <owen@gentoo.org> openoffice-bin-1.0.1.ebuild :
  Extend ebuild to include support for the PPC version of OpenOffice-bin.

  15 Sep 2002; Martin Schlemmer <azarah@gentoo.org> openoffice-bin-1.0.1.ebuild :
  New version.  Cleanups.  Install the Menu shortcuts.

*openoffice-bin-1.0.0-r3 (9 Sep 2002)

  9 Sep 2002; Martin Schlemmer <azarah@gentoo.org> openoffice-bin-1.0.0-r3.ebuild :
  Get a src_install() that actually should work properl (tm).

*openoffice-bin-1.0.0-r2 (15 Jul 2002)

  15 Jul 2002; Martin Schlemmer <azarah@gentoo.org> openoffice-bin-1.0.0-r2.ebuild :
  Fix the registry for 1.0.

  06 Aug 2002; Preston A. Elder <prez@gentoo.org> :
  Fixed read_ins.pl to be able make all DONT_DELETE directories
  explicitly, and to put quotes around most references, as some
  contain a directory name with spaces.

*openoffice-bin-1.0.0-r1 (12 May 2002)

  12 May 2002; Martin Schlemmer <azarah@gentoo.org> openoffice-bin-1.0.0-r1.ebuild :

  Move the registry to ibiblio again, as it is a bit too big.

*openoffice-bin-1.0.0 (10 May 2002)

  10 May 2002; Preston Elder <prez@gentoo.org> openoffice-bin-1.0.0.ebuild :

  Added v1.0, submitted by Michael M Nazaroff <naz@themoonsofjupiter.net>

*openoffice-bin-641d (20 Apr 2002)

  20 Apr 2002; M.Schlemmer <azarah@gentoo.org> openoffice-bin-641d.ebuild :

  Add initial version.

  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.