summaryrefslogtreecommitdiff
blob: 20931681ccd5a56203917105e7688f5199a03064 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
# ChangeLog for app-office/libreoffice
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice/ChangeLog,v 1.316 2012/05/23 00:22:24 dilfridge Exp $

*libreoffice-3.5.4.2 (23 May 2012)

  23 May 2012; Andreas K. Huettel <dilfridge@gentoo.org>
  +libreoffice-3.5.4.2.ebuild:
  Version bump

  13 May 2012; Andreas K. Huettel <dilfridge@gentoo.org>
  libreoffice-3.5.9999.ebuild, libreoffice-9999-r2.ebuild:
  Silence repoman

  13 May 2012; Andreas K. Huettel <dilfridge@gentoo.org>
  libreoffice-3.5.3.2.ebuild:
  Minor detail

  13 May 2012; Andreas K. Huettel <dilfridge@gentoo.org>
  libreoffice-3.5.9999.ebuild, libreoffice-9999-r2.ebuild, metadata.xml:
  Dont usually generate debug info for binfilter code; update branding a bit :)

  10 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  Update license.

  10 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.3.2.ebuild:
  Whoops this patch was not supposed to go away.

  10 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.3.2.ebuild,
  libreoffice-3.5.9999.ebuild:
  Fix typo in source file. Fixes bug#415343.

  09 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.3.2.ebuild,
  libreoffice-3.5.9999.ebuild, libreoffice-9999-r2.ebuild:
  Add elog information about -java, base will not be working

  09 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  Update comments about extensions.

  09 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  Introduce proper cups useflag. Thanks to Dave Flogeras.

  06 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  First attempt to use sytem rhino. Still needs code fixes wrt internal debug
  interface.

  05 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  Make the wiki-publisher actually work.

  05 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  First attempt for wiki-publisher building.

  05 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Distribute help images wrt offlinehelp. Thanks to geki and his work on this.

  05 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  Require beanshel/rhino only when building the specified extensions.

  05 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  Update comment about ct2n.

  04 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  Fix typo.

  04 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  Introduce libreoffice_extensions use expand.

  03 May 2012; Jeff Horelick <jdhore@gentoo.org> libreoffice-3.5.2.2.ebuild,
  libreoffice-3.5.3.2.ebuild, libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  dev-util/pkgconfig -> virtual/pkgconfig

  30 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/libreoffice-3.5.3-svtools-includes.patch, libreoffice-3.5.3.2.ebuild:
  Fix missing include. Fixes bug#413777.

  30 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.2.2.ebuild,
  libreoffice-3.5.3.2.ebuild, libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Fix missing dependency on libXt, it is used by nsplugin at least. Fixes
  bug#414089. Thanks to dev-zero for the bugreport.

  30 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild,
  metadata.xml:
  Add new variable to pass makeopts.

  29 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  -files/libreoffice-3.6-clucene-remove-wrong-check.patch,
  libreoffice-9999-r2.ebuild:
  Remove no longer needed clucene patching.

  26 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  Drop removed option.

  26 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.2.2.ebuild,
  libreoffice-3.5.3.2.ebuild, libreoffice-3.5.9999.ebuild:
  Restrict smoketest on 3.5 branch.

*libreoffice-3.5.3.2 (26 Apr 2012)

  26 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> +libreoffice-3.5.3.2.ebuild:
  Version bump to 3.5.3.

  26 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  -files/libreoffice-3.3.1-neon_remove_SSPI_support.diff,
  -files/libreoffice-3.4.1-salfix.diff, -files/libreoffice-3.5-junit.patch,
  -files/libreoffice-3.5.1-kde-4.8.1-namespace.patch,
  -files/libreoffice-32b-qt4-libdir.patch,
  -files/libreoffice-append-no-avx.patch,
  -files/libreoffice-as-needed-gtk.patch,
  -files/libreoffice-binfilter-as-needed.patch,
  -files/libreoffice-check-for-avx.patch,
  -files/libreoffice-gbuild-use-cxxflags.patch,
  -files/libreoffice-honor-strip.patch,
  -files/libreoffice-installed-files-permissions.patch,
  -files/libreoffice-java.patch, -files/libreoffice-kde48.patch,
  -files/libreoffice-kill-cppunit.patch,
  -files/libreoffice-libdb5-fix-check.diff,
  -files/libreoffice-poppler-0.18.0-2.patch,
  -files/libreoffice-poppler-0.18.0.patch,
  -files/libreoffice-solenv-build-crash.patch, -files/libreoffice-svx.patch,
  -files/libreoffice-translate-toolkit-parallel-solenv.patch,
  -files/libreoffice-vbaobj-visibility-fix.patch,
  -libreoffice-3.4.3.2-r1.ebuild, -libreoffice-3.4.5.2.ebuild,
  libreoffice-3.5.2.2.ebuild:
  Stable on ppc wrt bug#411449. Cleanup.

  24 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  Add back the cppunit to depend as it is configure.in unconditionaly checked
  and some test are still compiled at build.

  23 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  Actually delete cppunit from depend as it should be now properly separated.

  22 Apr 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  libreoffice-3.5.2.2.ebuild:
  x86 stable wrt bug #411449

  20 Apr 2012; Tony Vroon <chainsaw@gentoo.org> libreoffice-3.5.2.2.ebuild:
  Marked stable on AMD64 based on arch testing by Elijah "Armageddon" El
  Lazkani & Maurizio "k01" Camisaschi in bug #411449.

  19 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  Ensure new enough version of libcdr.

  18 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.2.2.ebuild,
  libreoffice-3.5.9999.ebuild, libreoffice-9999-r2.ebuild:
  Pax-mark also unopkg.bin, crashes on my machine without. Without revbump.

  18 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/libreoffice-3.6-clucene-remove-wrong-check.patch,
  libreoffice-3.5.2.2.ebuild, libreoffice-9999-r2.ebuild:
  Add patch that disables the header check for clucene, for some reason the
  check fails even if the header is around and working.

  17 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.2.2.ebuild,
  libreoffice-9999-r2.ebuild:
  Run relevant test phases only.

  17 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.2.2.ebuild,
  libreoffice-9999-r2.ebuild:
  Use the m4 dir so configure does not bail out.

  17 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.2.2.ebuild,
  libreoffice-9999-r2.ebuild:
  Tiny touchups for branding as the about was redesigned, we need new images.

  06 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.2.2.ebuild,
  libreoffice-3.5.9999.ebuild, libreoffice-9999-r2.ebuild:
  Disable quickstarter feature as it is broken yet again. Wrt bug#408685. If
  anyone wants this feature contact upstream about rewritting it properly.

  03 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  -files/libreoffice-3.5.2-icu-49-part2.patch,
  files/libreoffice-3.5.2-icu-49.patch:
  Deal with the icu49 for good now.

  03 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.2.2.ebuild:
  Do not apply icu49-patch2 for now as it fails on 3.5 now.

  03 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/libreoffice-3.5-doublebuild.patch, libreoffice-3.5.2.2.ebuild,
  libreoffice-3.5.9999.ebuild:
  Fix double running build, that was run once more on instakll phase.

  03 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/libreoffice-3.5.2-tests-headless.patch, libreoffice-3.5.2.2.ebuild:
  Pass headless to test runs. This should solve various dbus/assert crashes and
  bug#410317.

  03 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/libreoffice-3.5.2-icu-49-part2.patch, libreoffice-3.5.2.2.ebuild:
  Add one more patch for the icu issue so it does not pose any issues with older
  icu versions.

  02 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/libreoffice-3.5.2-icu-49.patch, libreoffice-3.5.2.2.ebuild:
  Add patch for icu49. Thanks to Arfrever for it. Fixes bug#410307.

  02 Apr 2012; Justin Lecher <jlec@gentoo.org> libreoffice-3.5.2.2.ebuild,
  libreoffice-3.5.9999.ebuild:
  Fix check-reqs usage

  02 Apr 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.2.2.ebuild,
  libreoffice-3.5.9999.ebuild, libreoffice-9999-r2.ebuild:
  Check for disk/ram constrains even in pkg_setup phase, pretend is there just
  for initial check. Thanks to Andreas Reichel for spotting the issue.

  30 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> metadata.xml:
  Fix the usedesc for webdav.

  30 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.2.2.ebuild,
  libreoffice-3.5.9999.ebuild, libreoffice-9999-r2.ebuild:
  Build with ppds as it is just 2 files anyway and debian does the same. Fixes
  bug#407833.

*libreoffice-3.5.2.2 (30 Mar 2012)

  30 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> +libreoffice-3.5.2.2.ebuild,
  -libreoffice-3.5.1.2.ebuild:
  Add the 3.5.2 release. (actually just 2 weeks after 3.5.1)

  30 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.4.5.2.ebuild:
  The patchname for the kde-4.8.1 compat is bit different.

  28 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.4.5.2.ebuild:
  Apply the 4.8.1 patch to 3.4.5 too. As requested by Robert Cabrera.

  28 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Curl actually is rdepend.

  28 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild, metadata.xml:
  Enable building of nlpsolver if requested. As it is build only in lo tree we
  cant make this separate package. Fixes bug#402469.

  27 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Copy the themes every time, it is just few images in the end.

  22 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2-r1.ebuild, libreoffice-3.4.5.2.ebuild,
  libreoffice-3.5.1.2.ebuild, libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Bump branding to fix typo in sofficerc. Thanks to livibetter for the report
  and way how to fix it.

  21 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  Depend on newer clucene that actually provides the contrib libs.

  19 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.9999.ebuild:
  Remove applied patch.

  18 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Once disable is enough. Thanks to iamnr3 on irc.

  18 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Disable crashdump as it is usefull on windows only anyway.

  18 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.1.2.ebuild,
  libreoffice-3.5.9999.ebuild, libreoffice-9999-r2.ebuild:
  Add qt-minimal with some sane value. Resolves bug#394767.

  18 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/libreoffice-3.5-junit.patch, libreoffice-3.5.1.2.ebuild,
  libreoffice-3.5.9999.ebuild:
  Add junit fix. Wrt bug#402205.

  18 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/libreoffice-3.5-propagate-gb_FULLDEPS.patch,
  -files/enable-startup-notification.diff, -files/env_log.diff,
  -files/fix-ooo-collision.diff, -files/gentoo-3.3.1.diff,
  -files/gentoo-3.3.2.diff, -files/gentoo-pythonpath.diff,
  -files/libreoffice-3.3-libpng-1.5.diff,
  -files/libreoffice-3.3.0_libxmlsec_fix_extern_c.diff,
  -files/libreoffice-3.3.2-bison25.diff,
  -files/libreoffice-3.3.4-poppler-0.18.0.diff, -files/scrap-pixmap-links.diff,
  -files/wrapper.in, libreoffice-3.5.1.2.ebuild, libreoffice-3.5.9999.ebuild:
  Add gb_FULLDEPS patch. Clear up other patches.

  17 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/libreoffice-3.6-system-pyuno.patch, libreoffice-3.5.1.2.ebuild,
  libreoffice-3.5.9999.ebuild, libreoffice-9999-r2.ebuild:
  Fix broken patch on live wrt bug#408059. Also fix offlinehelp wrt bug#404551.

  09 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/libreoffice-3.5.1-kde-4.8.1-namespace.patch,
  libreoffice-3.5.1.2.ebuild:
  Fix kde namespace clash. Wrt bug#403755.

*libreoffice-3.5.1.2 (09 Mar 2012)

  09 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> +libreoffice-3.5.1.2.ebuild,
  -libreoffice-3.5.0.3.ebuild, libreoffice-3.5.9999.ebuild:
  Version bump for 3.5.1.

  09 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  Add comment about lcms:2

  08 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.4.5.2.ebuild:
  Use internal vigra even on 3.4.

  07 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.9999.ebuild:
  Always disable gtk3 on 3.5 series as it is highly experimental.

  01 Mar 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/libreoffice-system-pyuno.patch, libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Try to make pyuno work with system python. (works here). Wrt bug#379227.

  29 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2-r1.ebuild, libreoffice-3.4.5.2.ebuild,
  libreoffice-3.5.0.3.ebuild, libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Add blocker on binary debug package and update live options a bit.

  29 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.4.5.2.ebuild,
  libreoffice-3.5.9999.ebuild, libreoffice-9999-r2.ebuild:
  Depend on urw-fonts which provide nimbus.

  28 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Update the cups info.

  27 Feb 2012; Andreas K. Huettel <dilfridge@gentoo.org>
  libreoffice-3.4.3.2-r1.ebuild, libreoffice-3.4.5.2.ebuild:
  Revert last commit on old versions to avoid unnecessary rebuilds

  27 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999-r2.ebuild:
  Reduce if condition to oneliner. Less code++

  27 Feb 2012; Andreas K. Huettel <dilfridge@gentoo.org>
  libreoffice-3.4.3.2-r1.ebuild, libreoffice-3.4.5.2.ebuild,
  libreoffice-3.5.0.3.ebuild, libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Introduce use-flag cups to allow for no-printing installation, bug 402987

  27 Feb 2012; Andreas K. Huettel <dilfridge@gentoo.org>
  libreoffice-3.5.0.3.ebuild, libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Require newer icu because of bug 396421

  26 Feb 2012; Andreas K. Huettel <dilfridge@gentoo.org>
  -libreoffice-3.3.4.ebuild:
  Remove old

  24 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.0.3.ebuild,
  libreoffice-3.5.9999.ebuild, libreoffice-9999-r2.ebuild:
  Build xmlhelp even if is not delivered yet. Partial fix for bug#404551.

  21 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-3.5.0.3.ebuild,
  libreoffice-3.5.9999.ebuild, libreoffice-9999-r2.ebuild:
  Do not force jemalloc by default as the speed benefit is not that huge.

  17 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r2.ebuild:
  Option no longer around.

  16 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.5.0.3.ebuild, libreoffice-3.5.9999.ebuild:
  Paralelism was not fixed so use more conservative behaviour.

  15 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org> metadata.xml:
  Not m-n package

  14 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2-r1.ebuild, libreoffice-3.4.5.2.ebuild,
  libreoffice-3.5.0.3.ebuild, libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Depend on cairo[X]. Wrt bug #401807.

  14 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.5.0.3.ebuild, libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Proper switch name for postgres.

*libreoffice-3.5.0.3 (14 Feb 2012)

  14 Feb 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  -libreoffice-3.5.0.1.ebuild, +libreoffice-3.5.0.3.ebuild:
  Bump to release version.

  03 Feb 2012; Andreas K. Huettel <dilfridge@gentoo.org> metadata.xml:
  Assign to maintainer-needed

*libreoffice-3.5.0.1 (18 Jan 2012)

  18 Jan 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  -libreoffice-3.4.99.3.ebuild, +libreoffice-3.5.0.1.ebuild:
  Version bump to 3.5.0 rc1

  16 Jan 2012; Agostino Sarubbo <ago@gentoo.org> libreoffice-3.4.5.2.ebuild:
  Stable for amd64, wrt bug #398521

  13 Jan 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.5.9999.ebuild, libreoffice-9999-r2.ebuild:
  Enable mergelibs.

  11 Jan 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.5.2.ebuild:
  Drop errornous templates useflag handling.

  11 Jan 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/generate_libreoffice_package.sh:
  Add the binary generator script.

*libreoffice-3.4.99.3 (11 Jan 2012)

  11 Jan 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  -libreoffice-3.4.99.2.ebuild, +libreoffice-3.4.99.3.ebuild:
  Bump to beta3.

  08 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org>
  +files/libreoffice-kde48.patch, libreoffice-3.4.5.2.ebuild,
  libreoffice-3.4.99.2.ebuild:
  Fix build with kde-4.8, bug 397775

*libreoffice-3.4.5.2 (03 Jan 2012)

  03 Jan 2012; Tomáš Chvátal <scarabeus@gentoo.org>
  -libreoffice-3.4.4.2-r1.ebuild, +libreoffice-3.4.5.2.ebuild,
  -libreoffice-3.4.9999-r2.ebuild:
  Version bump. Drop older and drop no-longer developed branch.

*libreoffice-3.4.99.2 (22 Dec 2011)

  22 Dec 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -libreoffice-3.4.99.1-r1.ebuild, +libreoffice-3.4.99.2.ebuild,
  libreoffice-9999-r2.ebuild:
  Add beta2, punt beta1 (most build fixes will be in beta3 so the same compile
  failures are present here).

  18 Dec 2011; Mark Loeser <halcy0n@gentoo.org> libreoffice-3.4.3.2-r1.ebuild:
  Stable for ppc; bug #387187

  15 Dec 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.99.1-r1.ebuild, libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Lower check-reqs constrains a bit.

  14 Dec 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.99.1-r1.ebuild, libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Disable internal handling of ccache, we manage it ourselves in gentoo.

  13 Dec 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.99.1-r1.ebuild, libreoffice-3.5.9999.ebuild,
  libreoffice-9999-r2.ebuild:
  Use proper tarball name. Thx to Poly-C

*libreoffice-3.4.99.1-r1 (13 Dec 2011)

  13 Dec 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -libreoffice-3.4.99.1.ebuild, +libreoffice-3.4.99.1-r1.ebuild,
  libreoffice-3.5.9999.ebuild, libreoffice-9999-r2.ebuild:
  Revision bump add repacked sources from correct branch.

  12 Dec 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  +libreoffice-3.4.99.1.ebuild, -libreoffice-3.5.0.0.ebuild:
  Remove miss-named beta0. Add beta1 with better name (presented as downgrade).

*libreoffice-3.4.99.1 (12 Dec 2011)

  12 Dec 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  +libreoffice-3.4.99.1.ebuild, -libreoffice-3.5.0.0.ebuild:
  Remove miss-named beta0. Add beta1 with better name (presented as downgrade).

  11 Dec 2011; Markus Meier <maekke@gentoo.org> libreoffice-3.4.3.2-r1.ebuild:
  x86 stable, bug #387187

  11 Dec 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r2.ebuild:
  Depend on system libcdr.

  06 Dec 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.5.9999.ebuild, libreoffice-9999-r2.ebuild:
  Fixup the l10n dependency to be just 3.5.0 and later for live stuff.

*libreoffice-3.5.9999 (06 Dec 2011)

  06 Dec 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  +libreoffice-3.5.9999.ebuild:
  Add 3.5 branch for the live ebuild.

  04 Dec 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.5.0.0.ebuild, libreoffice-9999-r2.ebuild:
  Solve the pgsql build issue by requiring 9.0 or later.

  04 Dec 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.5.0.0.ebuild, libreoffice-9999-r2.ebuild, metadata.xml:
  Introduce gtk3 useflag so we can disable gtk3 by default.

  30 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.5.0.0.ebuild, libreoffice-9999-r2.ebuild:
  Do not use system vigra, package is PITA.

*libreoffice-3.5.0.0 (30 Nov 2011)

  30 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  +libreoffice-3.5.0.0.ebuild, libreoffice-9999-r2.ebuild:
  Add beta0 for 3.5 into testing to get better testing coverage.

  23 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r2.ebuild:
  Use internal saxon.

  23 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r2.ebuild:
  Drop sampleicc from bundles.

  23 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r2.ebuild:
  Depend on sampleicc during build.

  19 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.9999-r2.ebuild:
  Drop already applied patch. Wrt bug #390873.

  18 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r2.ebuild:
  Add postgresql useflag.

  14 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r2.ebuild:
  Drop deprecated configure option and bump libexttextcat dep.

  13 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.4.2-r1.ebuild, libreoffice-3.4.9999-r2.ebuild,
  libreoffice-9999-r2.ebuild:
  Depend on cxx useflag on poppler. Fixes bug #390273.

  12 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r2.ebuild:
  Enable nsplugin and gtk by default to provide sane defaults for linux.

*libreoffice-9999-r2 (12 Nov 2011)
*libreoffice-3.4.9999-r2 (12 Nov 2011)

  12 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -libreoffice-3.4.9999-r1.ebuild, +libreoffice-3.4.9999-r2.ebuild,
  -libreoffice-9999-r1.ebuild, +libreoffice-9999-r2.ebuild:
  Revision bump for versions without templates. This sovles binpkgs for the
  sabayon.

  11 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Add back nsplugin switch as i introduced it again.

  10 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.3.4.ebuild:
  seems like it is not build with -java, stupid old build system...

  10 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.4.2-r1.ebuild, libreoffice-3.4.9999-r1.ebuild,
  libreoffice-9999-r1.ebuild:
  Update required use. drop the gtk/qt/gnome check and add eds requiring gnome.

*libreoffice-3.4.4.2-r1 (09 Nov 2011)

  09 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -libreoffice-3.4.4.2.ebuild, +libreoffice-3.4.4.2-r1.ebuild,
  libreoffice-3.4.9999-r1.ebuild, libreoffice-9999-r1.ebuild:
  Revision bump and add patchset, remove older. This one is unmasked so enjoy
  your compilations.

  09 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Dictionaries and help is not used in our ebuild so punt it.

  08 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Add depend on npapi sdk. Disable the mozilla build (does not affect
  nsplugin).

  07 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.4.2.ebuild, libreoffice-3.4.9999-r1.ebuild,
  libreoffice-9999-r1.ebuild:
  Punt ldap until fixed updstream, feature is nice but non-working with system
  libs.

*libreoffice-3.4.4.2 (02 Nov 2011)

  02 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -libreoffice-3.4.4.1.ebuild, +libreoffice-3.4.4.2.ebuild:
  RC2 for lo 3.4.4

  02 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Drop the switch for the ttoolkit too.

  02 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Translate toolkit is no longer required.

  02 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild, metadata.xml:
  Introduce xmlsec useflag.

  02 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2-r1.ebuild:
  Backport pdfimport useflag to 3.4.3 as the poppler abi changed again :/

  02 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2-r1.ebuild, libreoffice-3.4.4.1.ebuild,
  libreoffice-3.4.9999-r1.ebuild, libreoffice-9999-r1.ebuild:
  Bump the dependency over redland, and for newer versions also for openssl.
  Might fix bug #389049.

  01 Nov 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2-r1.ebuild, libreoffice-3.4.4.1.ebuild,
  libreoffice-3.4.9999-r1.ebuild, libreoffice-9999-r1.ebuild:
  Depend on orbit with gnome useflag.

  28 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  files/libreoffice-3.3.4-poppler-0.18.0.diff:
  Fixup patch as the 3.3 build system can't handle working with git stuff.
  Fixes bug #388697.

  27 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Fix missing backslash...

  26 Oct 2011; Tony Vroon <chainsaw@gentoo.org> libreoffice-3.4.3.2-r1.ebuild:
  Marked stable on AMD64 based on arch testing by Ian "idella4" Delaney &
  Agostino "ago" Sarubbo in bug #387187.

*libreoffice-3.4.4.1 (25 Oct 2011)

  25 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  +libreoffice-3.4.4.1.ebuild:
  Add first RC for 3.4.4

  25 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.3.4.ebuild, +files/libreoffice-3.3.4-poppler-0.18.0.diff:
  Fix build with poppler 0.18 also for 3.3 branch. Patch adjusted by Petr Pisar
  <petr.pisar [at] atlas.cz> all kudos to him.

  21 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Do not use linkoo if we don't run smoketest.

  20 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.3.4.ebuild:
  Restrict tests on 3.3 series.

  19 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.9999-r1.ebuild, libreoffice-9999-r1.ebuild:
  Move the checks to pkg pretend properly.

  18 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.9999-r1.ebuild, libreoffice-9999-r1.ebuild:
  Bump live versions to eapi4.

  16 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.9999-r1.ebuild, libreoffice-9999-r1.ebuild:
  Make the live build with +odk again. Fixes bug #387005.

  16 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2-r1.ebuild, libreoffice-3.4.9999-r1.ebuild,
  libreoffice-9999-r1.ebuild:
  Try to sanitize the deps to not pull so much testing tree.

  11 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Use proper default, crystal is for kde3, oops.

  08 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org> metadata.xml:
  Drop unused local desc.

  08 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2-r1.ebuild:
  Require also cairo useflag

  07 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -libreoffice-3.3.3.ebuild:
  Drop vulnerable version as 3.3.4 is stable.

  06 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  translate-toolkit is just builddep.

  06 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Cmis upgraded to be harddep.

  05 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Fix cims -> libcims.

  04 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  libtextcat -> libexttextcat

  04 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org> metadata.xml:
  Add missing description.

  04 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Still use with-system-cmis

  04 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild, metadata.xml:
  Add useflag for cmis, enabled by default.

  03 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Do not bother with binfilter if the useflag is not enabled.

  03 Oct 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Depend on cmis, enable webdav by default.

  30 Sep 2011; Mark Loeser <halcy0n@gentoo.org> libreoffice-3.3.4.ebuild:
  Stable for ppc; bug #381547

  30 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Update the l10n dependency in live ebuild.

  30 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Set also jobs to jbs, not to 1. It should now not parallelize insanely.

  30 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Remove neon patch to see if it will build, we will fix it upstream if it
  still fails.

  30 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/libreoffice-poppler-0.18.0-2.patch,
  files/libreoffice-poppler-0.18.0.patch, libreoffice-3.4.3.2-r1.ebuild:
  Add another patch to fix poppler for good.

  30 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Bump version dependency on libtextcat.

  29 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.9999-r1.ebuild, libreoffice-9999-r1.ebuild, metadata.xml:
  Add pdfimport useflag.

  29 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  files/libreoffice-poppler-0.18.0.patch:
  Cleanup the patch not to apply that much changes.

  29 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/libreoffice-poppler-0.18.0.patch, libreoffice-3.4.3.2-r1.ebuild:
  Add patch to make libreoffice build with poppler-0.18.

  29 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Also ignore check status on install

  26 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Bump required version of libtextcat to reflect reality.

  25 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Update ebuild to pass under both -java and +java cases.

  23 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Try to enable tests again.

  23 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Remove textcat as we move to libexttextcat.

  23 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Virga is just a build dependency.

  22 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Goodbye to custom-cflags, cleanup a bit.

  22 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Depend on liberation and libertine fonts to ensure some basic types.

  20 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Run only build when compiling, and exclude it on install.

  18 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Hack around the gdb printer install.

  17 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.9999-r1.ebuild, libreoffice-9999-r1.ebuild, metadata.xml:
  Add jemalloc useflag.

  17 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Hsqldb is actually required with +java.

  17 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Stop warning about -java as it is used just for few wizards and stuff.

  17 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Switch between jobs and cpus, it should be way smarter this way.

  17 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Remove no longer needed patches.

  17 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  More smple cleanups.

  17 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Cleanup the build a bit to reflect the changes in the buildsystem.

  16 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-9999-r1.ebuild:
  Drop patches that were merged upstream.

  08 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.9999-r1.ebuild, libreoffice-9999-r1.ebuild:
  Add missing die

  08 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.9999-r1.ebuild, libreoffice-9999-r1.ebuild:
  Use bashcomp-r1 eclass instead of old one.

  08 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2-r1.ebuild, libreoffice-3.4.9999-r1.ebuild,
  libreoffice-9999-r1.ebuild, +files/libreoffice-java.patch:
  Fix the case of passing without-system-libs when using -java.

  06 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2-r1.ebuild, libreoffice-3.4.9999-r1.ebuild,
  +files/libreoffice-honor-strip.patch:
  Apply patch to disable striping, we handle it by PM.

  05 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2-r1.ebuild, libreoffice-3.4.9999-r1.ebuild,
  libreoffice-9999-r1.ebuild:
  Depend on latest icu to ensure fixing of bug #381327.

  05 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.3.4.ebuild, libreoffice-3.4.3.2-r1.ebuild,
  libreoffice-3.4.9999-r1.ebuild, libreoffice-9999-r1.ebuild:
  Update the check-reqs eclass usage. Remove obsolete warning about jobs.

  04 Sep 2011; Tony Vroon <chainsaw@gentoo.org> libreoffice-3.3.4.ebuild:
  Marked stable on AMD64 based on arch testing by Elijah "Armageddon" El
  Lazkani & Tomáš "Mepho" Pružina in bug #381547 filed by Tomáš
  "scarabeus" Chvátal.

  04 Sep 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org>
  libreoffice-3.3.4.ebuild:
  x86 stable wrt bug #381547

  04 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2-r1.ebuild, libreoffice-3.4.9999-r1.ebuild,
  libreoffice-9999-r1.ebuild:
  Make cups harddep to solve build system issues. Also harddep for 3.5 and
  later anyway.

  04 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2-r1.ebuild, libreoffice-3.4.9999-r1.ebuild,
  libreoffice-9999-r1.ebuild:
  Ensure that helppack is not integrated.

*libreoffice-9999-r1 (03 Sep 2011)
*libreoffice-3.4.9999-r1 (03 Sep 2011)
*libreoffice-3.4.3.2-r1 (03 Sep 2011)

  03 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -libreoffice-3.4.3.2.ebuild, +libreoffice-3.4.3.2-r1.ebuild,
  -libreoffice-3.4.9999.ebuild, +libreoffice-3.4.9999-r1.ebuild,
  -libreoffice-9999.ebuild, +libreoffice-9999-r1.ebuild:
  Revision bump in order to REALLY avoid the collisions, the -l10n will block
  the non-revisioned versions.

  03 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2.ebuild, libreoffice-3.4.9999.ebuild,
  libreoffice-9999.ebuild:
  Fix l10n collision with the non-recompiled-yet libreoffice.

  03 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2.ebuild, libreoffice-3.4.9999.ebuild,
  libreoffice-9999.ebuild, metadata.xml:
  Use the split l10n package instead of compiling the translations.

  02 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.3.2.ebuild, libreoffice-3.4.9999.ebuild,
  libreoffice-9999.ebuild:
  Should not be required as we use system poppler.

  01 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -libreoffice-3.4.2.3.ebuild, -files/libreoffice-fix-sandbox-install.patch,
  -files/libreoffice-respect-destdir.patch:
  Remove libreoffice-3.4.2. 3.4.3 is stable candidate.

  31 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild, libreoffice-3.4.3.2.ebuild,
  libreoffice-3.4.9999.ebuild, libreoffice-9999.ebuild:
  Fix bash completion placement. Fixes bug #380977.

*libreoffice-3.4.3.2 (23 Aug 2011)

  23 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -libreoffice-3.4.3.1.ebuild, +libreoffice-3.4.3.2.ebuild:
  Bump to 3.4.3.2 and drop 3.4.3.1

  23 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999.ebuild:
  Cups is harddep starting from 3.5.

  19 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild, libreoffice-3.4.3.1.ebuild,
  +files/libreoffice-respect-destdir.patch:
  Add fix for bug #379817. Sent upstream and will hopefully be even in 3.4.3.

  19 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild, libreoffice-3.4.3.1.ebuild,
  libreoffice-3.4.9999.ebuild, libreoffice-9999.ebuild:
  Properly specify the docdir.

*libreoffice-3.3.4 (17 Aug 2011)

  17 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -libreoffice-3.3.1.ebuild, libreoffice-3.3.3.ebuild,
  +libreoffice-3.3.4.ebuild:
  Stable 3.3.3 on x86. Add testing 3.3.4. Remove 3.3.1.

*libreoffice-3.4.3.1 (17 Aug 2011)

  17 Aug 2011; Justin Lecher <jlec@gentoo.org> +libreoffice-3.4.3.1.ebuild,
  metadata.xml:
  Non-maintainer bump as proxy for scarabeus

  15 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999.ebuild:
  3.5 branch uses just system-sane without the header stuff

  14 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild, libreoffice-3.4.9999.ebuild,
  libreoffice-9999.ebuild:
  Update the versions to have something recent that the build tests are done
  against.

  14 Aug 2011; Markos Chandras <hwoarang@gentoo.org> libreoffice-3.3.3.ebuild:
  Stable on amd64 wrt bug #379067

  14 Aug 2011; Jonathan Callen <abcd@gentoo.org> libreoffice-3.4.2.3.ebuild,
  libreoffice-3.4.9999.ebuild, libreoffice-9999.ebuild:
  "--without-system-sane" is now "--without-system-sane-header" for 3.4+

  13 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  files/libreoffice-append-no-avx.patch:
  Fix bool check on AVX patch.

  12 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild, libreoffice-3.4.9999.ebuild,
  libreoffice-9999.ebuild:
  Really drop the cppunit dep and also get rid of sane-backends dependency to
  make people happy.

  11 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  files/libreoffice-kill-cppunit.patch:
  Bump the cppunit patch to actualy work. Smaller and smarter :)

  11 Aug 2011; Mark Loeser <halcy0n@gentoo.org> libreoffice-3.3.3.ebuild:
  Stable for ppc

  11 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild, libreoffice-3.4.9999.ebuild,
  libreoffice-9999.ebuild:
  Restrict the tests as whole, until someone fix them to work on most setups.

  11 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild, libreoffice-3.4.9999.ebuild,
  libreoffice-9999.ebuild, +files/libreoffice-kill-cppunit.patch:
  First attempt to kill cppunit execution during make phase.

  11 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild, libreoffice-3.4.9999.ebuild,
  libreoffice-9999.ebuild:
  liblayout is not needed for our builds at all, remove from bundled list.

  10 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999.ebuild:
  Depend on translate toolkit that is also external dependency.

  10 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999.ebuild:
  Fix version number in libvisio dep.

  09 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999.ebuild:
  Depend on system libvisio.

  09 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.9999.ebuild, libreoffice-9999.ebuild:
  Depend on added libtextcat and reorder deps.

  09 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999.ebuild:
  Drop packages that can be done externally (yes i know this thing won't
  compile now, which is no change from the previous state :)).

  09 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org> libreoffice-9999.ebuild:
  Disable the python useflag properly on live ebuild.

  08 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.9999.ebuild, libreoffice-9999.ebuild:
  Remove patches accepted in the master branch. declare kde-scm to git so we
  never depend on subversion.

  07 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.9999.ebuild:
  Actually 3.4 is still using old repos, only master is moved...

  07 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.9999.ebuild:
  Drop useless blank line

  07 Aug 2011; Fabio Erculiani <lxnay@gentoo.org> libreoffice-3.4.2.3.ebuild,
  libreoffice-3.4.9999.ebuild, libreoffice-9999.ebuild:
  force make-3.82 for 3.4.*, see:
  http://lists.freedesktop.org/archives/libreoffice/2011-May/012523.html

*libreoffice-9999 (07 Aug 2011)

  07 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.9999.ebuild, +libreoffice-9999.ebuild:
  Add live master branch ebuild (WON'T WORK, bugs only with attached patches),
  adapt the live branch ebuild for new repo layout.

  06 Aug 2011; Matt Turner <mattst88@gentoo.org> libreoffice-3.4.2.3.ebuild,
  libreoffice-3.4.9999.ebuild:
  Replace LINGUAS_OOO with LO_LANGUAGES, bug 378007.

  06 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild, libreoffice-3.4.9999.ebuild:
  Update branding to version 0.3. Fixes bug #377899. Sync the live and release
  ebuilds.

  05 Aug 2011; Michał Górny <mgorny@gentoo.org>
  files/libreoffice-check-for-avx.patch:
  Fix avx patch wrt bug #377845. Proxied for scarabeus.

  04 Aug 2011; Andreas K. Huettel <dilfridge@gentoo.org>
  libreoffice-3.4.2.3.ebuild, +files/libreoffice-binfilter-as-needed.patch:
  Add as-needed patch, on request from scarabeus; fixes bug 376985

  04 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild, libreoffice-3.4.9999.ebuild:
  media-libs/libwpg to app-text/libwpg

  04 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild, +files/libreoffice-check-for-avx.patch,
  files/libreoffice-append-no-avx.patch:
  Update avx patchset and fix the linguas detection.

  03 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  files/libreoffice-32b-qt4-libdir.patch:
  Update the qt patch as the 3.4 branch lacks quite few commits.

  03 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild, libreoffice-3.4.9999.ebuild,
  +files/libreoffice-32b-qt4-libdir.patch:
  Fix finding qt libraries on 32b platform. Fixes bug #377377.

  01 Aug 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild, +files/libreoffice-append-no-avx.patch:
  Append no-avx to fix segmentation fault.

  31 Jul 2011; Matt Turner <mattst88@gentoo.org> libreoffice-3.4.9999.ebuild:
  Remove seemingly unnecessary fonts from -3.4.9999 also.

  31 Jul 2011; Matt Turner <mattst88@gentoo.org> libreoffice-3.4.2.3.ebuild:
  Remove seemingly unnecessary fonts.

  30 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild, libreoffice-3.4.9999.ebuild:
  Drop one more place where wrapper.in was used.

*libreoffice-3.4.9999 (30 Jul 2011)

  30 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild, +libreoffice-3.4.9999.ebuild:
  Add support for live ebuilds. Add live ebuild from 3.4 branch. Master branch
  needs A LOT more work so it won't appear soon.

  29 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild,
  +files/libreoffice-installed-files-permissions.patch:
  Fix permissions of installed files to be more sane.

  28 Jul 2011; Mark Loeser <halcy0n@gentoo.org> libreoffice-3.4.2.3.ebuild:
  Set num_cpus to 1, and max_jobs to the jobs from MAKEOPTS, otherwise you end
  up with way more jobs running than intended

  28 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  files/libreoffice-as-needed-gtk.patch:
  Fix building with gtk by appending no-as-needed on quickstarter. Fixes bug
  #376609.

  28 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild:
  Respect the jobs more by not running emake in compile phase

  28 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild:
  Alter uri calculations to sattisfy even old tarballs. Fixes bug #376683 for
  future.

  28 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild:
  STLPort should not be used anywhere thus we don't need to fetch it sources.

  28 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  files/libreoffice-fix-sandbox-install.patch:
  Update sandbox violation patch to shut another one.

  27 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild:
  When building nsplugin symlink it to system location. Fixes bug #375299. Also
  put branding only into one location.

  27 Jul 2011; Matt Turner <mattst88@gentoo.org> libreoffice-3.4.2.3.ebuild:
  Update branding version.

  27 Jul 2011; Matt Turner <mattst88@gentoo.org> libreoffice-3.4.2.3.ebuild:
  Remove old comment about no graphite package in gentoo.

  27 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.3.ebuild:
  Bump branding as there was borked sofficerc in the 0.1.

  27 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  files/libreoffice-as-needed-gtk.patch:
  Use proper gb call to add GTK_LIBS, this should fix bug #376609.

*libreoffice-3.4.2.3 (27 Jul 2011)

  27 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -libreoffice-3.3.2.ebuild, -libreoffice-3.4.1.ebuild,
  -libreoffice-3.4.2.2.ebuild, +libreoffice-3.4.2.3.ebuild:
  Version bump to 3.4.2.3. Punt older versions that are overshadowed.

  26 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild:
  Enhance REQUIRED_USE comment as nsplugins needs gtk too, so we are ready in
  eapi4 future.

  26 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild:
  Printproto seriously should not be dependency. Fixes bug #321119.

  26 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild, +files/libreoffice-gbuild-use-cxxflags.patch:
  Force proper variable usage. Just saw this in gekis overlay so adding to main
  tree too.

  26 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild,
  +files/libreoffice-translate-toolkit-parallel-solenv.patch:
  Aparently it looks like translate-toolkit require solenv to not fail in
  parallel build. Fixes bug #376387.

  26 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild, metadata.xml:
  Enable optional support for graphite via graphite2 package.

  26 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild:
  Introduce branding useflag, yay gentoo screen and about, Thanx to Ian Whyman
  for this.

  26 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  files/libreoffice-fix-sandbox-install.patch:
  Update sandbox fix to honour TMPDIR variable instead of placing it to
  distdir.

  26 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  -files/libreoffice-as-needed-gtk-2.patch, libreoffice-3.4.2.2.ebuild,
  +files/libreoffice-fix-sandbox-install.patch,
  files/libreoffice-as-needed-gtk.patch:
  Fix the gtk patch, add patch for sandbox violation during install, enforce
  not-stripping of solver, portage handle it himself.

  26 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild:
  Set default theme to crystal, set jobs to 1 if the sed does not find any
  value, and rename the variable to not collide with bash jobs command.

  26 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  +files/libreoffice-as-needed-gtk-2.patch, libreoffice-3.4.2.2.ebuild,
  +files/libreoffice-as-needed-gtk.patch:
  Fix as-needed linking on the quickstarter. Patches backported from upstream
  trunk. Fixes gentoo bug #376469.

  25 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild, -files/libreoffice-unfigured-options.txt,
  metadata.xml:
  Make vba scripting optional. Punt undecided.txt file with unknown opts as we
  set all those that we require.

  25 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild:
  Disable pch (precompiled headers) support as it creates just build crashes.

  25 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild:
  Do not pre-strip the binaries, check for proper reqs, update install phase to
  use distro-pack-install (smaller yay).

  25 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  files/libreoffice-solenv-build-crash.patch:
  Fix solenv patch. Accidentally added html page instead of the patch.

  25 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild:
  Upgrade jobs parsing per bug 375761. Thx to Drake Wyrm for the sed.

  25 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild, +files/libreoffice-solenv-build-crash.patch,
  +files/libreoffice-vbaobj-visibility-fix.patch:
  Add build fixes for crash in solenv and vbahelper fix for gcc-4.6.

  25 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild:
  Split out junit check so it does not die without test enabled. Fixes bug
  #376293.

  24 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild, +files/libreoffice-svx.patch:
  Quick&Dirty hack to fix svx build crash i observed on my desktop (definitely
  not a solution for upstream).

  24 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild:
  Add missing inherits.

  24 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild:
  Enable junit only when building with tests and java enabled.

  24 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.2.2.ebuild:
  Silence repoman warnings.

*libreoffice-3.4.2.2 (24 Jul 2011)

  24 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  +libreoffice-3.4.2.2.ebuild, +files/libreoffice-unfigured-options.txt,
  metadata.xml:
  Add 3.4.2_rc2 to the main tree (from my dev overlay). This still contains A
  LOT rough edges.

  19 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.1.ebuild:
  Fix variable name in templates condition resulting it never being true.

  18 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.4.1.ebuild:
  Non-maintainer commit. Remove double environment calls, cleanup global
  variables by unsetting them where possible, add missing dies during install,
  run eautoreconf and econf instead of autogen.sh, sort the deps
  alphabetically, add base eclass and PATCHES array support (and epatch_user),
  run emake instead of make. Mostly fixed all issues i had during the time i
  compiled it. Still good idea would be to migrate most parts of this ebuild to
  elbits. PS: debuging something in package that builds for 3 hours is major
  pita.

  14 Jul 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.4.1.ebuild:
  Extensions now build fine again without java

  14 Jul 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.4.1.ebuild:
  Bring back templates support. The credit for this really goes to geki!

  14 Jul 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.4.1.ebuild:
  Fix env problem that messed up some peoples builds, see bug #374243

  06 Jul 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.4.1.ebuild,
  metadata.xml:
  Introduce "offlinehelp" use flag similar to libreoffice-bin. If not set the
  LibreOffice Wiki will 
  be used instead of the local help files. Also remove some useless downloads.

  06 Jul 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.4.1.ebuild:
  You should not listen to repoman in every case. Build fix.

*libreoffice-3.4.1 (06 Jul 2011)

  06 Jul 2011; Andreas Proschofsky <suka@gentoo.org> +libreoffice-3.4.1.ebuild,
  +files/libreoffice-3.4.1-salfix.diff, +files/wrapper.in:
  LibreOffice 3.4.1. New build system so took some time, but will (hopefully)
  make everything quite 
  a bit easier in the long run. Still masked for some further bugfixing and
  testing.

  20 Jun 2011; Jonathan Callen <abcd@gentoo.org> -files/gentoo-3.3.3.diff:
  Remove unused file

  17 Jun 2011; Tomáš Chvátal <scarabeus@gentoo.org>
  libreoffice-3.3.3.ebuild:
  It is dumb to copy files in filesdir 1:1. Rather use fixed version in the
  ebuild.

  17 Jun 2011; Lars Wendler <polynomial-c@gentoo.org> +files/gentoo-3.3.3.diff:
  Non-maintainer commit: Added missing patch file with kind permission from
  suka (bug #371969).

*libreoffice-3.3.3 (16 Jun 2011)

  16 Jun 2011; Andreas Proschofsky <suka@gentoo.org> +libreoffice-3.3.3.ebuild:
  Add LibreOffice 3.3.3, another bugfix release.

  22 May 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.3.2.ebuild,
  +files/libreoffice-3.3.2-bison25.diff:
  Fix build with bison 2.5, bug #367963

  07 Apr 2011; Joseph Jezak <josejx@gentoo.org> libreoffice-3.3.2.ebuild:
  Marked ~ppc for bug #359883.

  27 Mar 2011; Christian Faulhammer <fauli@gentoo.org>
  libreoffice-3.3.1.ebuild:
  stable x86, bug 358907

*libreoffice-3.3.2 (22 Mar 2011)

  22 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  -libreoffice-3.3.2_rc2.ebuild, +files/gentoo-3.3.2.diff,
  +files/libreoffice-libdb5-fix-check.diff, +libreoffice-3.3.2.ebuild,
  -files/gentoo-3.3.2_rc2.diff:
  Bump to LibreOffice 3.3.2, also fix db-5 support

  18 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  libreoffice-3.3.2_rc2.ebuild:
  Some more changes for custom-cflags

*libreoffice-3.3.2_rc2 (18 Mar 2011)

  18 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  -libreoffice-3.3.2_rc1.ebuild, +libreoffice-3.3.2_rc2.ebuild,
  -files/gentoo-3.3.2_rc1.diff, +files/gentoo-3.3.2_rc2.diff:
  New release candidate, also brings some further improvements to the ebuild
  *) Add custom-optimization flag, thanks mostly to geki <h.mth@web.de>
   bug #355981
  *) Fixed dependency on cairo, we really want that not to be optional
  *) Bunch of cleanups

  17 Mar 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.3.1.ebuild,
  libreoffice-3.3.2_rc1.ebuild:
  Fix Homepage entry

  16 Mar 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.3.1.ebuild,
  libreoffice-3.3.2_rc1.ebuild:
  Remove old style virtuals PROVIDE, bug #358895

  16 Mar 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.3.1.ebuild,
  libreoffice-3.3.2_rc1.ebuild:
  Update icon caches after installation

  16 Mar 2011; Markos Chandras <hwoarang@gentoo.org> libreoffice-3.3.1.ebuild:
  Stable on amd64 wrt bug #358907

*libreoffice-3.3.2_rc1 (13 Mar 2011)

  13 Mar 2011; Andreas Proschofsky <suka@gentoo.org>
  +libreoffice-3.3.2_rc1.ebuild, +files/gentoo-3.3.2_rc1.diff:
  Add first release candidate for LibreOffice 3.3.2, masked for now

  13 Mar 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.3.1.ebuild:
  Properly slot gtk+-2 dependencies, also move pre-compilation checks to right
  stage, bug #358491

  02 Mar 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.3.1.ebuild,
  +files/libreoffice-3.3.1-neon_remove_SSPI_support.diff:
  Fix build with neon supporting SSPI, bug #356581

  24 Feb 2011; Andreas Proschofsky <suka@gentoo.org> -libreoffice-3.3.0.ebuild,
  -files/gentoo-3.3.0.diff, libreoffice-3.3.1.ebuild,
  +files/libreoffice-3.3-libpng-1.5.diff, -files/libreoffice-3.3-prefix.patch:
  Fix build with libpng 1.5 #356281, also remove outdated ebuild 

*libreoffice-3.3.1 (23 Feb 2011)

  23 Feb 2011; Andreas Proschofsky <suka@gentoo.org>
  -libreoffice-3.3.1_rc1.ebuild, +libreoffice-3.3.1.ebuild,
  -files/gentoo-3.3.1_rc1.diff, +files/gentoo-3.3.1.diff:
  Bump to LibreOffice 3.3.1, bugfix release

  17 Feb 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.3.0.ebuild,
  +files/libreoffice-3.3.0_libxmlsec_fix_extern_c.diff,
  libreoffice-3.3.1_rc1.ebuild:
  Fix build problem with libxml2[+icu], thanks to Neil Cathey <cneil@yahoo.com>
  for the patch, bug #354911 

*libreoffice-3.3.1_rc1 (12 Feb 2011)

  12 Feb 2011; Andreas Proschofsky <suka@gentoo.org>
  +libreoffice-3.3.1_rc1.ebuild, +files/gentoo-3.3.1_rc1.diff:
  Release Candidate for LibreOffice 3.3.1

  08 Feb 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.3.0.ebuild:
  Until we have a better fix, disable extensions for -java build, preventing
  breakage, bug #352812

  05 Feb 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.3.0.ebuild,
  +files/libreoffice-3.3-prefix.patch:
  Another bunch of prefix fixes

  05 Feb 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.3.0.ebuild,
  files/gentoo-3.3.0.diff:
  Cleanup work: Prefix fixes, remove outated deps and config-flags, fix pax
  stuff

  02 Feb 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.3.0.ebuild:
  Fix desktop files, thanks to Sanders Sweers <Sander.Sweers@gmail.com>, see
  bug #352955

  25 Jan 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.3.0.ebuild:
  Fix jpeg-dep and some ebuild cleanups

  25 Jan 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.3.0.ebuild:
  Ooops, another little fix for bash-completion

  25 Jan 2011; Andreas Proschofsky <suka@gentoo.org> libreoffice-3.3.0.ebuild:
  Fix bash_completion installation, bug #352656

*libreoffice-3.3.0 (25 Jan 2011)

  25 Jan 2011; Andreas Proschofsky <suka@gentoo.org>
  -libreoffice-3.3.0_rc4.ebuild, +libreoffice-3.3.0.ebuild,
  -files/gentoo-3.3.0_rc4.diff, +files/gentoo-3.3.0.diff:
  Bump to final release of LibreOffice 3.3.0

  24 Jan 2011; Andreas Proschofsky <suka@gentoo.org>
  libreoffice-3.3.0_rc4.ebuild, +files/sdext-presenter.diff:
  Fix extensions stuff, patch from bug #339057

  24 Jan 2011; Andreas Proschofsky <suka@gentoo.org>
  libreoffice-3.3.0_rc4.ebuild:
  Fix the Homepage entry

*libreoffice-3.3.0_rc4 (24 Jan 2011)

  24 Jan 2011; Andreas Proschofsky <suka@gentoo.org>
  +libreoffice-3.3.0_rc4.ebuild, +files/gentoo-3.3.0_rc4.diff,
  +files/enable-startup-notification.diff, +files/env_log.diff,
  +files/fix-ooo-collision.diff, +files/gentoo-pythonpath.diff,
  +files/scrap-pixmap-links.diff, +metadata.xml:
  Initial ebuild for LibreOffice, masked for now as it needs some testing.
  Also:

  * Extensions are not built atm, otherwise this breaks the build
  * ebuild needs some cleanups

  Thanks especially to Hanno Meyer-Thurow (geki) which did a lot of the ground
  work in his overlay!