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
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
|
# ChangeLog for app-office/openoffice
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-office/openoffice/ChangeLog,v 1.323 2007/06/01 13:54:58 suka Exp $
01 Jun 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.1.0-r1.ebuild, openoffice-2.2.0.ebuild:
OOo need >=dev-perl/Compress-Raw-Zlib-2.002, see bug #180414
18 May 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.2.0.ebuild:
Silent bump to ooo-build-2.2.0.1, mostly some printing fixes
14 May 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.2.0.ebuild:
Update to official ooo-build-tarball, a few more bugfixes included
08 May 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.2.0.ebuild:
Update to newer ooo-build-2.2 snapshot, bunch of bugfixes
24 Apr 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.2.0/ooo-env_log.diff, openoffice-2.2.0.ebuild:
Fix for wrongly colored compile output, see bug #172380
24 Apr 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.2.0.ebuild:
Update patchset, this should also fix bug #175254
19 Apr 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.1.0-r1.ebuild, openoffice-2.2.0.ebuild:
We really need >=gtk-2.10, so raising dependency
17 Apr 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.2.0.ebuild:
Call eautoreconf for bug #174794 and add missing Mono dependency, bug #174851
*openoffice-2.2.0 (16 Apr 2007)
16 Apr 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.2.0/disable-regcomp-java.diff,
+files/2.2.0/disable-regcomp-python.diff, +files/2.2.0/regcompapply.diff,
+files/2.2.0/gentoo-2.2.0.diff, +openoffice-2.2.0.ebuild:
First release for OpenOffice.org 2.2, rolled our own tarball of
ooo-build as upstream didn't release an "official" one until now.
13 Apr 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.1.0-r1.ebuild:
openoffice doesn't currently build with potaudio-19, change dependency
accordingly
07 Apr 2007; Stephen Bennett <spb@gentoo.org> openoffice-2.1.0-r1.ebuild:
Update STLport dep to 5.1.2 per bug #172860.
03 Apr 2007; Andreas Proschofsky <suka@gentoo.org>
-files/2.0.4/disable-regcomp-java.diff,
-files/2.0.4/disable-regcomp-python.diff, -files/2.0.4/regcompapply.diff,
-files/2.0.4/gentoo-2.0.4.diff, -openoffice-2.0.4.ebuild:
Remove 2.0.4 for security bug #170828. This actually leaves us with no
keyworded version for sparc, but this in accordance with the sparc-devs
03 Apr 2007; Andreas Proschofsky <suka@gentoo.org>
files/2.1.0/gentoo-2.1.0.diff, openoffice-2.1.0-r1.ebuild:
Update to ooo-build-2.1.10, just some minor bug fixes
31 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
openoffice-2.1.0-r1.ebuild:
stable x86, security bug #170828
30 Mar 2007; Andreas Proschofsky <suka@gentoo.org>
files/2.1.0/wrapper-readd.diff, files/2.1.0/gentoo-2.1.0.diff,
openoffice-2.1.0-r1.ebuild:
Another update to the patchset, ooo-build-2.1.9. This introduces the Tango
Icon Set and a bunch of bugfixes
29 Mar 2007; Tobias Scherbaum <dertobi123@gentoo.org>
openoffice-2.1.0-r1.ebuild:
Stable on ppc wrt bug #170828.
*openoffice-2.1.0-r1 (16 Mar 2007)
16 Mar 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.1.0/ooo-build-2.1.6-hyperlinks-quotes.diff,
+files/2.1.0/ooo-build-2.1.6-starcalc-file-format-parser-2.2.diff,
+openoffice-2.1.0-r1.ebuild:
Bump for security bug #170828, also another update to the patchset
(ooo-build-2.1.8)
07 Mar 2007; Chris Gianelloni <wolf31o2@gentoo.org>
openoffice-2.0.4.ebuild, openoffice-2.1.0.ebuild:
Change all instances of [ to [[.
07 Mar 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.1.0/detect-db4.5.diff:
Add missing patch, oops.
06 Mar 2007; Andreas Proschofsky <suka@gentoo.org>
files/2.1.0/wrapper-readd.diff, files/2.1.0/gentoo-2.1.0.diff,
openoffice-2.1.0.ebuild:
Silent bump to ooo-build-2.1.7, also try to fix build with db-4.5, see bug
#169526
10 Feb 2007; Andreas Proschofsky <suka@gentoo.org>
files/2.1.0/gentoo-2.1.0.diff, openoffice-2.1.0.ebuild:
Silent bump too ooo-build-2.1.5, bunch of bugfixes as usual
31 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.1.0.ebuild:
Silent bump to ooo-build-2.1.2, this fixes a bunch of bugs and also
introduces a new MS Works import filter
25 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.1.0/disable-regcomp-java.diff,
+files/2.1.0/disable-regcomp-python.diff, +files/2.1.0/regcompapply.diff,
openoffice-2.1.0.ebuild:
Add fix for regcomp-crasher on PPC, see bug #162217
25 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.1.0.ebuild:
Obviously we still need the l10n-tarball for german users, otherwise
help does not get translated, see bug #162803
25 Jan 2007; Marius Mauch <genone@gentoo.org> openoffice-2.0.4.ebuild,
openoffice-2.1.0.ebuild:
Replacing einfo with elog
23 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
-files/2.1.0/config_with-seamonkey.diff,
-files/2.1.0/disable_cxxhelplinker.diff, files/2.1.0/gentoo-2.1.0.diff,
openoffice-2.1.0.ebuild:
Silent bump to ooo-build-2.1.1, obsoleting some of our patches
14 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
files/2.1.0/gentoo-2.1.0.diff, +files/2.1.0/config_with-seamonkey.diff,
openoffice-2.1.0.ebuild:
Readd seamonkey-support, thanks to Hanno Meyer-Thurow <h.mth@web.de> for
fixing this
14 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.1.0.ebuild:
Paths to system jars shouldn't be hardcoded, see
https://bugs.gentoo.org/show_bug.cgi?id=113954#c7
14 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.1.0.ebuild:
STLport is a runtime dependency, closes bug #161947
13 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.1.0.ebuild, openoffice-2.0.4.ebuild:
Fix java dependency to not accidentally force =jdk-1.4, closes bug #161871
12 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.1.0/ooo-wrapper.in, +files/2.1.0/wrapper-readd.diff,
openoffice-2.1.0.ebuild:
Re-add old-style wrapper support, which has been removed in the most recent
ooo-build release. We need this for builds without gtk, which don't have
ooqstart and were broken as a result of that. See bug #161811
12 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.1.0.ebuild:
Raise STLport dependency again, we really need 5.1.0, also remove sparc until
they keyword STLport-5.1.0
12 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.1.0.ebuild:
Raise dependency for STLport, version 4.x breaks the build
12 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.1.0.ebuild:
Removing seamonkey-support (doesn't work) for now, should come back with a
proper fix
12 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
files/2.1.0/disable_cxxhelplinker.diff:
Accidentally removed STLport5-patches from the build without java, re-adding
12 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.1.0.ebuild:
Fix build without firefox or seamonkey, closes bug #161702
*openoffice-2.1.0 (12 Jan 2007)
12 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.1.0/gentoo-2.1.0.diff, +files/2.1.0/disable_cxxhelplinker.diff,
+openoffice-2.1.0.ebuild:
Finaly add 2.1.0 to the tree. This release adds quite some changes, for
instance we use system-db at last. Also STLport and lot's of Java stuff is
used from the system instead of building it ourselves. Added to that en_US
and de users no longer have to download the l10n tarball, which spares
another 72 MByte. Also we support seamonkey now if you want to use that
instead of firefox.
09 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
-files/2.0.3/gentoo-2.0.3.diff, -openoffice-2.0.3.ebuild:
Remove vulnerable version for security bug #159951
09 Jan 2007; Tobias Scherbaum <dertobi123@gentoo.org>
openoffice-2.0.4.ebuild:
Stable on ppc wrt bug #159951.
08 Jan 2007; Gustavo Zacarias <gustavoz@gentoo.org>
openoffice-2.0.4.ebuild:
Stable on sparc wrt security #159951 and #159862
07 Jan 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.4/disable-regcomp-java.diff,
+files/2.0.4/disable-regcomp-python.diff, +files/2.0.4/regcompapply.diff,
openoffice-2.0.4.ebuild:
Disable regcomp on ppc in another try to fix bug #147542
05 Jan 2007; Christian Faulhammer <opfer@gentoo.org>
openoffice-2.0.4.ebuild:
stable x86, security bug #159862
05 Jan 2007; Alec Warner <antarus@gentoo.org> openoffice-2.0.3.ebuild,
openoffice-2.0.4.ebuild:
QA: Add proper autotools deps via autotools.eclass
QA: Remove usage of debug.eclass
24 Dec 2006; Andreas Proschofsky <suka@gentoo.org>
files/2.0.4/gentoo-2.0.4.diff, openoffice-2.0.4.ebuild:
Another release of the patchset - ooo-build.2.0.4.11. Also some minor fixes
so that we can get rid of the system -system-tarball. Which is: Yeah - some
27 MB of Download saved.
11 Dec 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4.ebuild:
Bump to ooo-build-2.0.4.10
04 Dec 2006; Michael Hanselmann <hansmi@gentoo.org>
openoffice-2.0.4.ebuild:
Added to ~ppc.
04 Dec 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4.ebuild:
Fix dbus-dependency for bug #154521
30 Nov 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4.ebuild:
Updates coming fast these days, ooo-build-2.0.4.9. Higlight of this
release: New tangoish Icons for the Menu-entries ;)
30 Nov 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4.ebuild:
Bump patchset to ooo-build-2.0.4.8
21 Nov 2006; Andreas Proschofsky <suka@gentoo.org>
files/2.0.4/gentoo-2.0.4.diff, openoffice-2.0.4.ebuild:
Update to ooo-build-2.0.4.7
16 Nov 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4.ebuild:
Add lv to the supported LINGUAS
16 Nov 2006; Andreas Proschofsky <suka@gentoo.org>
files/2.0.4/gentoo-2.0.4.diff, openoffice-2.0.4.ebuild:
Bump to ooo-build-2.0.4.6, also work around problem with chown in the
install phase
10 Nov 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4.ebuild:
ooo-build 2.0.4.4, just some small bugfixes this time
08 Nov 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4.ebuild:
Bump to ooo-build-2.0.4.3, fixes another bunch of bugs
06 Nov 2006; Andreas Proschofsky <suka@gentoo.org>
-files/2.0.4/libgcc3_uno_noexecstack.diff, files/2.0.4/gentoo-2.0.4.diff,
-files/2.0.4/pyuno-objects-allocation.diff, openoffice-2.0.4.ebuild:
(Silent) Update to ooo-build-2.0.4.2, bunch of bugfixes, also obsoleting
our owncurrent patches.
03 Nov 2006; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.4/pyuno-objects-allocation.diff, files/2.0.4/gentoo-2.0.4.diff,
openoffice-2.0.4.ebuild:
Add a patch from upstream to combat the common regcomp / pyuno segfaults
during install.
27 Oct 2006; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.4/libgcc3_uno_noexecstack.diff, files/2.0.4/gentoo-2.0.4.diff,
openoffice-2.0.4.ebuild:
Add a fix for the execstack problems in libgcc3_uno.so and remove the
corresponding workaround
23 Oct 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4.ebuild:
Force jdk-1.4 on AMD64 to prevent build breakages. Thanks to Jon
Severinsson <jon@severinsson.net> for the fix in bug #151225
21 Oct 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4.ebuild:
Add missing download of the odk-tarball
20 Oct 2006; Andreas Proschofsky <suka@gentoo.org>
-files/2.0.4/system-icu.diff, files/2.0.4/gentoo-2.0.4.diff,
openoffice-2.0.4.ebuild:
Silent bump to ooo-build-2.0.4.1, some bugfixes, also removes the need for
some of our fixes / workarounds.
16 Oct 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4.ebuild:
Fix missing cups-stuff, closes bug#151536
13 Oct 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4.ebuild:
Some more java dependency fixes, closes bug #147249 again
13 Oct 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4.ebuild:
Some fixes thankfully pointed out by Jon Severinsson <jon@severinsson.net>
13 Oct 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4.ebuild:
Remove ppc-keywording, as this arch still has some issues and we want to
unmask for the others
*openoffice-2.0.4 (13 Oct 2006)
13 Oct 2006; Andreas Proschofsky <suka@gentoo.org>
-files/2.0.4_rc2/gentoo-2.0.4_rc2.diff, +files/2.0.4/gentoo-2.0.4.diff,
+files/2.0.4/system-icu.diff, -openoffice-2.0.4_rc2.ebuild,
+openoffice-2.0.4.ebuild:
Final release of OOo 2.0.4, should be unmasked soonish.
12 Oct 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.3.ebuild, openoffice-2.0.4_rc2.ebuild:
Remove mono-support, didn't work recently anyway. Hopefully will be re-added
soonish
28 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.3.ebuild:
Fix copy statement for splash, see bug #149127
*openoffice-2.0.4_rc2 (22 Sep 2006)
22 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
-files/2.0.4_rc1/gentoo-2.0.4_rc1.diff,
+files/2.0.4_rc2/gentoo-2.0.4_rc2.diff,
-files/2.0.4_rc1/sfx2-docfile-newfilesave.diff,
-openoffice-2.0.4_rc1-r1.ebuild, +openoffice-2.0.4_rc2.ebuild:
Bump to 2.0.4_rc2, also add sound use-flag enable it if you need it ;)
20 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4_rc1-r1.ebuild:
Re-add call for java-pkg-opt-2_pkg_setup, following discussion on the
gentoo-dev mailing list. Thanks to Alon Bar-Lev <alon.barlev@gmail.com> for
pointing this out.
16 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4_rc1-r1.ebuild:
Actually use the user-defined LDFLAGS.
15 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.3.ebuild, openoffice-2.0.4_rc1-r1.ebuild:
Filter -fstack-protector-all to prevent build-breakage, see bug #144105
14 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.4_rc1/sfx2-docfile-newfilesave.diff,
files/2.0.4_rc1/gentoo-2.0.4_rc1.diff, openoffice-2.0.4_rc1-r1.ebuild:
Add a patch which solves a problem with saving documents, see bug #147493
14 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
files/2.0.4_rc1/gentoo-2.0.4_rc1.diff, openoffice-2.0.4_rc1-r1.ebuild:
Use xsltproc during the build even when java is available, this should
shorten the build time quite a bit. Also if you want to try to build OOo
with more than one process you'll now have to specify WANT_MP="true", the
old variable WANT_DISTCC was just misleading.
13 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4_rc1-r1.ebuild:
Forgot to not depend anymore on the xml-use-flag, see bug #147480. Fixed.
12 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4_rc1-r1.ebuild:
New use-flags and dependencies, mostly to reduce the number of internally
built libraries:
*) We depend on boost and icu now (both were built internaly before). This
should reduce build time a bit.
*) Make cups optional
*) Add dbus and webdav-use-flags, the second one adds a dep on neon (which
was also built internaly until now)
*) Break when people have -ffast-math in their CFLAGS, this causes all sorts
of trouble, for more information see bug #139412
12 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4_rc1-r1.ebuild:
Some more ebuild cleanups: Remove xml-use-flag, hard-depend on it instead
(it's needed anyway), remove support for monolithic X, no longer supported
on Gentoo, also clean up dependencies a bit.
12 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4_rc1-r1.ebuild:
Small fix for the java dependency
12 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4_rc1-r1.ebuild:
Some cleanups for the Java-stuff, see bug #147249. Also add line to prevent
build breakage with FEATURES="stricter", see bug #146265
*openoffice-2.0.4_rc1-r1 (01 Sep 2006)
01 Sep 2006; Andreas Proschofsky <suka@gentoo.org>
files/2.0.4_rc1/gentoo-2.0.4_rc1.diff, -openoffice-2.0.4_rc1.ebuild,
+openoffice-2.0.4_rc1-r1.ebuild:
New Milestone release. Bunch of bugfixes plus some nice reduction
to the memory consumption.
25 Aug 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4_rc1.ebuild:
Another round of small fixes and cleanups to the ebuild
24 Aug 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4_rc1.ebuild:
Some cleanups and fixes for AMD64, thanks to Jon Severinsson
<jon@severinsson.net> for pointing them out in Bug #140728
24 Aug 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.4_rc1.ebuild:
Add some AMD64-bits
*openoffice-2.0.4_rc1 (24 Aug 2006)
24 Aug 2006; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.4_rc1/gentoo-2.0.4_rc1.diff, +openoffice-2.0.4_rc1.ebuild:
First release candidate for OpenOffice.org 2.0.4. Some of the highlights of
this release: optional Gstreamer-support for the media-player, Gentoo-splash
only installed when using the branding use-flag, tcsh-dependency is gone.
28 Jul 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.3.ebuild:
Filter another CFLAG which breaks the build, closes bug #139550
16 Jul 2006; Andreas Proschofsky <suka@gentoo.org>
-files/2.0.2/gentoo-2.0.2.diff, -files/2.0.2/omit-fp-workaround.diff,
-openoffice-2.0.2-r1.ebuild, -openoffice-2.0.2-r2.ebuild:
Remove vulnerable versions from the tree, see bug #138545
15 Jul 2006; Joshua Jackson <tsunam@gentoo.org> openoffice-2.0.3.ebuild:
Stable x86; security #138545
15 Jul 2006; Andreas Proschofsky <suka@gentoo.org>
files/2.0.3/gentoo-2.0.3.diff, openoffice-2.0.3.ebuild:
Update to newer ooo-build-release containing a bunch of bugfixes. Also
updated to the final source tarballs, so unfortunately, if you want to
rebuild, you'll have to download the whole pack again...
12 Jul 2006; Gustavo Zacarias <gustavoz@gentoo.org>
openoffice-2.0.3.ebuild:
Stable on sparc wrt security #138545
10 Jul 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.3.ebuild:
Raise hunspell dependency to prevent build breakage
10 Jul 2006; Gustavo Zacarias <gustavoz@gentoo.org>
openoffice-2.0.3.ebuild:
Blessed with ~sparc
07 Jul 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.3.ebuild:
Raise dependency for freetype, also fix strip-linguas stuff
06 Jul 2006; Andreas Proschofsky <suka@gentoo.org>
files/2.0.3/gentoo-2.0.3.diff:
Remove broken patches to fix crasher bug #139368
05 Jul 2006; Lars Weiler <pylon@gentoo.org> openoffice-2.0.3.ebuild:
Stable on ppc; security bug #138545.
03 Jul 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.3.ebuild:
Fix building with -ldap, see bug #138959
*openoffice-2.0.3 (03 Jul 2006)
03 Jul 2006; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.3/gentoo-2.0.3.diff, +openoffice-2.0.3.ebuild:
version bump to 2.0.3, this also now uses the myspell-*-ebuilds for
spell-checking instead of the OOoDict-script, besides that it is now
possible to build a debug set, build the OOo SDK and do the compile without
pam.
23 Jun 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.1-r1.ebuild, openoffice-2.0.2-r1.ebuild,
openoffice-2.0.2-r2.ebuild:
Remove mozilla use-flag for bug #137665, please use the firefox use-flag
(where available) instead
20 Jun 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.2-r1.ebuild, openoffice-2.0.2-r2.ebuild:
Add dev-perl/Compress-Zlib to the dependencies, see bug #136961
12 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org>
openoffice-2.0.2-r2.ebuild:
Back to ~sparc, we've got a fox
09 Jun 2006; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.2/omit-fp-workaround.diff, files/2.0.2/gentoo-2.0.2.diff,
openoffice-2.0.2-r2.ebuild:
Add some fixes for the build on PPC, see bug #135249, thanks to Hanno and
Santiago for working this out.
06 Jun 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.2-r1.ebuild:
raise dependency for tcsh to battle DIRCOLORS problem, again, see bug #135624
30 May 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.2-r2.ebuild:
Replace -01 with -02 as the first one causes build problems, see bug #133627
30 May 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.2-r2.ebuild:
inherit java-pkg and call java-pkg_pkg_setup for bug #134131
24 May 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.2-r2.ebuild:
Raise dependency for freetype to >=2.1.10 to prevent build breakage, see bug
#117859
20 May 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.2-r2.ebuild:
Another silent ooo-build-update to 2.0.11, this time with a big performance
win for large pivot tables
19 May 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.2-r2.ebuild:
Bump ooo-build-version to 2.0.2.10
18 May 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.2-r2.ebuild:
Clean up supported LINGUAS variables
18 May 2006; Gustavo Zacarias <gustavoz@gentoo.org>
openoffice-2.0.2-r1.ebuild:
Stable on sparc
12 May 2006; Chris Gianelloni <wolf31o2@gentoo.org>
openoffice-2.0.2-r1.ebuild:
Marking stable wrt bug #124229.
10 May 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.2-r1.ebuild:
Fix for build breakage on systems without gtk+ see bug #132801, also sync
2.0.2-r1 to the latest patchset too
06 May 2006; Andreas Proschofsky <suka@gentoo.org>
files/2.0.2/gentoo-2.0.2.diff:
Patch vba-sc-handleautoshapemacro-import.diff to fix build breakage, see bug
#132412
06 May 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.2-r2.ebuild:
Update to ooo-build-2.0.2.9
03 May 2006; Gustavo Zacarias <gustavoz@gentoo.org>
openoffice-2.0.2-r1.ebuild:
Back to ~sparc
30 Apr 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.2-r1.ebuild, openoffice-2.0.2-r2.ebuild:
Check if we have enough diskspace an RAM before building, closes bug#127014
30 Apr 2006; Andreas Proschofsky <suka@gentoo.org>
-openoffice-2.0.2.ebuild, openoffice-2.0.2-r1.ebuild,
openoffice-2.0.2-r2.ebuild:
Update to ooo-build-2.0.2.8, another round of bug fixes and minor
enhancements, see
http://cvs.gnome.org/viewcvs/ooo-build/NEWS?rev=1.106.2.6&only_with_tag=ooo-
build-2-0-2&view=markup
for more infos.
27 Apr 2006; Marien Zwart <marienz@gentoo.org>
files/digest-openoffice-2.0.2, files/digest-openoffice-2.0.2-r1,
files/digest-openoffice-2.0.2-r2, Manifest:
Fixing SHA256 digest, pass four
*openoffice-2.0.2-r2 (20 Apr 2006)
*openoffice-2.0.2-r1 (20 Apr 2006)
20 Apr 2006; Andreas Proschofsky <suka@gentoo.org>
+openoffice-2.0.2-r1.ebuild, +openoffice-2.0.2-r2.ebuild:
Revision bumps, so that everyone gets the numerous fixes of the latest
patch-sets. Also provide an ebuild (-r1) without the firefox use-flag, so
that archs which don't already have firefox 1.5.x can mark this stable
19 Apr 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.2.ebuild:
Bump to ooo-build-2.0.2.7, bunch of fixes
07 Apr 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.2.ebuild:
Update to ooo-build-2.0.2.5, fixes crasher bug #127448
04 Apr 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.1-r1.ebuild, openoffice-2.0.2.ebuild:
fix xml-mess-up by stupid maintainer...
02 Apr 2006; Andreas Proschofsky <suka@gentoo.org>
-openoffice-2.0.1.ebuild, openoffice-2.0.1-r1.ebuild,
openoffice-2.0.2.ebuild:
Change xml2 use-flag to xml for bug #116346, also clean out old version
01 Apr 2006; Andreas Proschofsky <suka@gentoo.org>
-files/2.0.2/pythonfix.diff, +files/2.0.2/gentoo-2.0.2.diff,
openoffice-2.0.2.ebuild:
Update to new patch revision, fix some file permission and remove patch
which breaks gcc-4.1
01 Apr 2006; Simon Stelling <blubb@gentoo.org> openoffice-2.0.1.ebuild,
openoffice-2.0.1-r1.ebuild, openoffice-2.0.2.ebuild:
marking -amd64
25 Mar 2006; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.2/pythonfix.diff, -files/2.0.2/removecrystalcheck.diff,
-files/2.0.2/use-system-xt.diff, openoffice-2.0.2.ebuild:
Update to newer patchset, which contains some fixes. Also fix Python
scripting and add the mono-bridge
*openoffice-2.0.1-r1 (17 Mar 2006)
17 Mar 2006; Andreas Proschofsky <suka@gentoo.org>
+openoffice-2.0.1-r1.ebuild:
Revision bump the stable version for security problem with curl, see bug
#126433
16 Mar 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.1.ebuild, openoffice-2.0.2.ebuild:
Remove curl use flag, we really always want to use the external curl
15 Mar 2006; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.2/use-system-xt.diff, openoffice-2.0.2.ebuild:
Fix for building with java 1.5, close bug #125824
14 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org>
openoffice-2.0.2.ebuild:
Removing ~sparc until QA is sorted out
*openoffice-2.0.2 (10 Mar 2006)
10 Mar 2006; Andreas Proschofsky <suka@gentoo.org>
-files/2.0.2/gentoo-2.0.2.diff, -files/2.0.2/buildfix-no-java.diff,
-files/2.0.2/buildfix-without-mozilla.diff, -openoffice-2.0.2_rc4.ebuild,
+openoffice-2.0.2.ebuild:
final release of openoffice-2.0.2
09 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org>
openoffice-2.0.2_rc4.ebuild:
Keyworded ~sparc wrt #124229
07 Mar 2006; Andreas Proschofsky <suka@gentoo.org>
files/2.0.2/buildfix-no-java.diff:
Forgot to fix the Makefile for PPC (for the --without-java fix)
07 Mar 2006; Andreas Proschofsky <suka@gentoo.org>
files/2.0.2/gentoo-2.0.2.diff, +files/2.0.2/buildfix-no-java.diff,
openoffice-2.0.2_rc4.ebuild:
Buildfix for systems without java, see bug #125251
04 Mar 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.2_rc4.ebuild:
Bring supported languages up-to-date
04 Mar 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.2_rc4.ebuild:
Some reshuffling and a better LINGUAS-check, see bug #124997
*openoffice-2.0.2_rc4 (04 Mar 2006)
04 Mar 2006; Andreas Proschofsky <suka@gentoo.org>
files/2.0.2/gentoo-2.0.2.diff, -openoffice-2.0.2_rc3-r1.ebuild,
+openoffice-2.0.2_rc4.ebuild:
Another new release candidate
02 Mar 2006; Andreas Proschofsky <suka@gentoo.org>
files/2.0.2/gentoo-2.0.2.diff, +files/2.0.2/buildfix-without-mozilla.diff,
openoffice-2.0.2_rc3-r1.ebuild:
Add fix for building without mozilla, see bug #124540
*openoffice-2.0.2_rc3-r1 (01 Mar 2006)
01 Mar 2006; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.2/gentoo-2.0.2.diff, -openoffice-2.0.2_rc3.ebuild,
+openoffice-2.0.2_rc3-r1.ebuild:
Revision bump with a bunch of new stuff for the Gentoo-build, most notably
cairo-magic for your presentations.
*openoffice-2.0.2_rc3 (27 Feb 2006)
27 Feb 2006; Andreas Proschofsky <suka@gentoo.org>
+openoffice-2.0.2_rc3.ebuild:
New release candidate
*openoffice-2.0.2_rc1 (17 Feb 2006)
17 Feb 2006; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.2/removecrystalcheck.diff, +openoffice-2.0.2_rc1.ebuild:
First Release Candidate of OpenOffice.org 2.0.2, use at your own risk.
15 Feb 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.1.ebuild:
Fix zlib dependency, closes bug #122898
02 Feb 2006; Andreas Proschofsky <suka@gentoo.org>
-files/2.0.1/gentoo-pax.diff, -files/2.0.1/gentoo-2.0.1.diff,
openoffice-2.0.1.ebuild:
Update to ooo-build-2.0.1.3, just a little maintenance release, some small
bug fixes
29 Jan 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.1.ebuild:
Remove pt from the supported languages, results in broken behaviour, closes
bug #120574. Also I've removed the zlib use-flag, makes no sense, as
everyone has zlib anyway.
28 Jan 2006; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.1/gentoo-pax.diff, +files/2.0.1/gentoo-2.0.1.diff,
openoffice-2.0.1.ebuild:
Add some fixes for hardened, this also should remove the last TEXTRELS, see
bug #88588
28 Jan 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.1.ebuild:
Remove blocker on openoffice-ximian which is no longer in the tree
26 Jan 2006; Andreas Proschofsky <suka@gentoo.org>
-files/2.0.1/gentoo-gcc-version.diff, -files/2.0.1/gentoo-2.0.1.diff,
openoffice-2.0.1.ebuild:
Update to ooo-build-2.0.1.2, no big new stuff, just a bunch of bug fixes
25 Jan 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.1.ebuild:
Move distro-check up to pkg-setup
23 Jan 2006; Andreas Proschofsky <suka@gentoo.org>
files/2.0.1/gentoo-2.0.1.diff:
Remove cairo-smooth-curves.diff which causes severe drawing problems, this
closes bug #118006
22 Jan 2006; Andreas Proschofsky <suka@gentoo.org>
-files/2.0.1/ooo-build-gentoo-gcc-version.diff,
+files/2.0.1/gentoo-2.0.1.diff, openoffice-2.0.1.ebuild:
Fix for CJK problems, see bug #116473
22 Jan 2006; Andreas Proschofsky <suka@gentoo.org>
-files/1.1.4/gcc-instlib.patch, -files/1.1.4/getcompver.awk.patch,
-files/1.1.4/freetype-217.patch, -files/1.1.4/STLport-vector.patch,
-files/1.1.4/gcc34-nojava-fix.patch, -files/1.1.4/hardened-link.patch,
-files/1.1.4/gcc34-sal-link-to-libsupc++.diff, -files/1.1.4/javafix.patch,
-files/1.1.4/cws-heapbug_CAN-2005-0941.diff,
-files/1.1.4/build-new-xslt.diff, -files/1.1.4/gcc34.patch.bz2,
-files/1.1.4/newstlportfix.patch, -files/1.1.4/nptl.patch,
-files/1.1.4/openoffice-java.patch, -files/1.1.4/ooffice-wrapper-1.3,
-files/1.1.4/pthreadlink-fix.patch, -files/1.1.4/pyunolink-fix.patch,
-openoffice-1.1.4-r1.ebuild, -openoffice-2.0.0.ebuild:
Finally get rid of the old 1.1.x-versions, as all archs are now on 2.0.x
21 Jan 2006; Joseph Jezak <josejx@gentoo.org> openoffice-2.0.1.ebuild:
Marked ppc stable for bug #119587.
21 Jan 2006; Chris Gianelloni <wolf31o2@gentoo.org>
openoffice-2.0.1.ebuild:
Marking stable on x86 wrt bug #119587.
21 Jan 2006; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0.ebuild, openoffice-2.0.1.ebuild:
Remove blocker on openoffice-ximian-bin as this is dead now
20 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
openoffice-2.0.1.ebuild:
Stable on sparc, kinda because of #119587
18 Jan 2006; Andreas Proschofsky <suka@gentoo.org>
-files/2.0.1/noquickstarter.diff, openoffice-2.0.1.ebuild:
Update to new ooo-build-2.0.1.1 release, mostly containing bugfixes
17 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
openoffice-2.0.0.ebuild, openoffice-2.0.1.ebuild:
2.0.0 sparc stable, added big warning about java on sparc
16 Jan 2006; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.1/gentoo-gcc-version.diff,
+files/2.0.1/ooo-build-gentoo-gcc-version.diff, openoffice-2.0.1.ebuild:
Mulitple Updates:
*) Add support for legacy StarOffice 5.x file formats. If you want these add
"binfilter" to your use flags. Though be warned, this add considerably to
the build time. Closes bug #117566
*) Add patch for problems with gcc-4.1-snapshots, closes bug #117076
*) Play safe with the $JOBS-var
27 Dec 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.1.ebuild:
Modular X dependencies
23 Dec 2005; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.1/alwayscrystal.diff, openoffice-2.0.1.ebuild:
Another fix for the problem with missing crystal icons, seems the solution
wasn't that easy...
23 Dec 2005; Andreas Proschofsky <suka@gentoo.org> ChangeLog:
Maybe smarter to disable the quickstarter for everyone who is not using
gnome or gtk
23 Dec 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.1.ebuild:
Disable quickstarter building only on KDE-only systems
23 Dec 2005; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.1/noquickstarter.diff, openoffice-2.0.1.ebuild:
The new quickstarter seems to break the build for some people, backing out
the code after we find a better solution
23 Dec 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.1.ebuild:
We need to pull in crystal icons for everyone, closes bug #116432
*openoffice-2.0.1 (22 Dec 2005)
22 Dec 2005; Andreas Proschofsky <suka@gentoo.org>
+openoffice-2.0.1.ebuild:
New upstream release, lot's of bug fixes, most notably this should build
with java 1.5 now
03 Dec 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0.ebuild:
Some cleanups to the ebuild
03 Dec 2005; Andreas Proschofsky <suka@gentoo.org>
-files/2.0.0/gentoo-2.0.0.diff, -files/2.0.0/buildfix-new-xslt.diff,
-files/2.0.0/nojava-fix-stringparam.diff, openoffice-2.0.0.ebuild:
Silently update the ooo-build to 2.0.0.2, nothing new in there just all our
fixes have gone upstream :)
30 Nov 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0.ebuild:
Totally disable nas with -nas in USE-flags (instead of building the internal
one). Otherwise the build will break with modular X.org, see bug #113706
29 Nov 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0.ebuild:
Finally stabilize on x86 :)
22 Nov 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0.ebuild:
Postinstall fix for PaX
20 Nov 2005; Andreas Proschofsky <suka@gentoo.org>
+files/1.1.4/build-new-xslt.diff, openoffice-1.1.4-r1.ebuild:
Also add build fix for new libxslt to 1.1.4-r1
16 Nov 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0.ebuild:
Add -fno-strict-aliasing to CFLAGS to fix problems with Excel import, see
bug #112655
02 Nov 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0.ebuild:
Fix for people having en_US in their LINGUAS, closes bug #111265
01 Nov 2005; Andreas Proschofsky <suka@gentoo.org>
files/2.0.0/gentoo-2.0.0.diff:
Fix for build problem with not fully translated languages, closes bug #110340.
31 Oct 2005; Gustavo Zacarias <gustavoz@gentoo.org>
openoffice-2.0.0.ebuild:
Keyworded ~sparc, don't use java though, doesn't work
29 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
files/2.0.0/gentoo-2.0.0.diff:
Remove oohtml2 symlink, it doesn't do anything, ooweb2 is what you want
28 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
files/2.0.0/gentoo-2.0.0.diff, -files/2.0.0/Filter.xcu,
-files/2.0.0/build-beanshell-fix.diff,
+files/2.0.0/buildfix-new-xslt.diff,
+files/2.0.0/nojava-fix-stringparam.diff, openoffice-2.0.0.ebuild:
Implement a proper solution for the --without-java issue
26 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
files/2.0.0/gentoo-2.0.0.diff, openoffice-2.0.0.ebuild:
Desktop files are now handled correctly in package-ooo, so no need anymore
for shuffling them around, this also removes the non-harmful error message
at the end of the build
26 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0.ebuild:
Install man-file into the correct path, fixes bug #110510
26 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0.ebuild:
New ooo-build-release, 2.0.0.1 just adds some minor fixes, see:
http://cvs.gnome.org/viewcvs/ooo-build/NEWS?rev=1.87.2.3&only_with_tag=ooo-b
uild-2-0&view=markup
for the full list of changes
25 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.0/gentoo-2.0.0.diff, +files/2.0.0/build-beanshell-fix.diff,
openoffice-2.0.0.ebuild:
Minor build fix for beanshell-project (for a problem which normally does not
show up)
25 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0.ebuild:
Another shot at the quick fix for -java to make it also work for other
languages than en_US. The only downside remaining atm is that the
descriptions for the filters are not translated. Still a hack though.
25 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0.ebuild:
Build fix in regard to setting "en" in LINGUAS
25 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.0/Filter.xcu, openoffice-2.0.0.ebuild:
Temporary fix for the build without java, see bug #110131. Real solution
should replace this asap
23 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0.ebuild:
Disable the post-install-scripts of ooo-build which actually do nothing but
updating the mime database, which we do later anyway (and which results in
sandbox-problems when called from ooo-build), see bug #110209
22 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0.ebuild:
Add gtk use-flag for all the people wanting gtk-style (and the industrial
icons) but not all the other gnome-stuff (gnome-vfs, lockdown). If using the
gnome use-flag the gtk use-flag setting is overridden. Closes bug #110155
21 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0.ebuild:
Remove the python use-flag, we are now using system-python by default. Makes
no sense to have it anyway, as portage needs python, and
--without-system-python just grows the build and currently results in build
breakage, see bug #109996
21 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0.ebuild:
Add dependency to >=dev-java/java-config-1.2.11-r1 as some people seem to be
building OOo 2.0.0 on stable, and the build will fail without the newest
version of java-config
*openoffice-2.0.0 (20 Oct 2005)
20 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
+openoffice-2.0.0.ebuild:
OpenOffice.org 2.0 is ready! All patches moved to upstream, also ppc is
supported now.
19 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
files/2.0.0/stlport-vector-ppc-buildfix.diff:
remove -D_STLP_DEBUG also from gcc-3.0.mak for PPC
18 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.0/stlport-vector-ppc-buildfix.diff:
Add missing patch, ooops.
18 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
files/2.0.0/gentoo-2.0.0_rc3.diff, openoffice-2.0.0_rc3.ebuild:
Build fix for stlport on ppc
*openoffice-2.0.0_rc3 (18 Oct 2005)
18 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.0/gentoo-2.0.0_rc3.diff, +openoffice-2.0.0_rc3.ebuild:
New release candidate, also fix the distcc stuff
12 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0_rc2.ebuild:
Fix build problem with certain languages, see bug #108989
12 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
files/2.0.0/gentoo-2.0.0_rc2.diff, openoffice-2.0.0_rc2.ebuild:
Some more cleanups, also depend on libxml2 if building without java. Also
using an updated version of ooo-build-2.0.0_rc2 now.
12 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.0/no-ldap-mozilla.diff, files/2.0.0/gentoo-2.0.0_rc2.diff,
openoffice-2.0.0_rc2.ebuild:
Really fix the build with -ldap
11 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
files/2.0.0/gentoo-2.0.0_rc2.diff,
+files/2.0.0/config_office-openldap-fix.diff, openoffice-2.0.0_rc2.ebuild:
First shot at fixing bug #108898, added patch to fix broken OOo
configure-script
11 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.0.0_rc2.ebuild:
Fix SRC_URI for the crystal icons
*openoffice-2.0.0_rc2 (11 Oct 2005)
11 Oct 2005; Andreas Proschofsky <suka@gentoo.org>
+files/2.0.0/gentoo-2.0.0_rc2.diff, +openoffice-2.0.0_rc2.ebuild:
Release Candidate for OpenOffice.org 2.0, still masked, should work fine
though.
24 Sep 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-1.1.5.ebuild:
Getting rid of the old mimetype stuff which causes broken behaviour for kde,
see bug #92767
24 Sep 2005; Andreas Proschofsky <suka@gentoo.org>
+files/1.1.5/build-new-xslt.diff, openoffice-1.1.5.ebuild:
Fix building without java and libxslt >=1.1.5, closes bug #106174
19 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
openoffice-1.1.5.ebuild:
Back to ~ppc, sorry for the trouble. My script for listing ebuilds needing
stabelizing has a bug and I didn't check enough.
17 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
openoffice-1.1.5.ebuild:
Stable on ppc.
*openoffice-1.1.5 (14 Sep 2005)
14 Sep 2005; Andreas Proschofsky <suka@gentoo.org>
+files/1.1.5/gcc34-nojava-fix.patch, +files/1.1.5/hardened-link.patch,
+files/1.1.5/ooffice-wrapper-1.3, +files/1.1.5/freetype-217.patch,
+files/1.1.5/STLport-vector.patch, +files/1.1.5/gcc-instlib.patch,
+files/1.1.5/gcc34-sal-link-to-libsupc++.diff,
+files/1.1.5/gcc34.patch.bz2, +files/1.1.5/getcompver.awk.patch,
+files/1.1.5/javafix.patch, +files/1.1.5/newstlportfix.patch,
+files/1.1.5/nptl.patch, +files/1.1.5/openoffice-java.patch,
+files/1.1.5/pthreadlink-fix.patch, +files/1.1.5/pyunolink-fix.patch,
+openoffice-1.1.5.ebuild:
New upstream version of the 1.1.x-series. Most important change:
OpenOffice.org 1.1.5 now supports the reading of OpenDocument-Files (which
will be the default in 2.0)
23 Aug 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-1.1.4-r1.ebuild:
Correct cp -a to cp -pPR for bug #103487
03 May 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-1.1.4-r1.ebuild:
LIBC set in the environment breaks the build, so we manually unset it now,
see bug #91179
15 Apr 2005; Gustavo Zacarias <gustavoz@gentoo.org>
openoffice-1.1.4-r1.ebuild:
Into -sparc for the time being, use openoffice-ximian
13 Apr 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-1.1.4-r1.ebuild:
Marking stable on x86 for bug #88863
12 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
openoffice-1.1.4-r1.ebuild:
Stable on ppc.
*openoffice-1.1.4-r1 (12 Apr 2005)
12 Apr 2005; Andreas Proschofsky <suka@gentoo.org>
+files/1.1.4/crash-objstream.diff, +openoffice-1.1.4-r1.ebuild:
Revision bump for security fix, see bug #88863
09 Apr 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-1.1.4.ebuild:
Add note about localized helpcontent, closes bug #87199
30 Mar 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-1.1.4.ebuild:
Fix for bug #81835, gcc 3.4-patches need to be applied globally, hardened
also needs them
30 Mar 2005; Andreas Proschofsky <suka@gentoo.org>
files/1.1.4/ooffice-wrapper-1.3, openoffice-1.1.4.ebuild:
Simplify menu entry installation, see bug #81902, also fix problem with
newer findutils, bug#86974
28 Mar 2005; Andreas Proschofsky <suka@gentoo.org>
+files/1.1.4/getcompver.awk.patch, openoffice-1.1.4.ebuild:
Build fix for recent gcc-versions, closes bug #84548
04 Mar 2005; Gustavo Zacarias <gustavoz@gentoo.org> openoffice-1.1.4.ebuild:
Stable on sparc
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
22 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-1.1.4.ebuild:
The ebuild now uses the LINGUAS environment variable to determine for which
language to build, the first one in your LINGUAS-settings that is supported
is used for this. Please note, that the old LANGUAGE=ENUS|PORT... way does
NOT work anymore. While doing this added some more languages to the
supported list, see the ebuild for more infos. Also added some dependencies
for japanese and chinese builds.
This closes a number of bugs: #40896, #44209. #51331, #70302, #71216 and
#77128
18 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-1.1.4.ebuild, -files/1.1.4/gcc34-nptl-fix.patch,
files/1.1.4/nptl.patch:
Remove gcc34-nptl-fix as this is now incorporated in the regular nptl-patch
18 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-1.1.4.ebuild, +files/1.1.4/nptl.patch:
Some fixes for nptl-systems
17 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
+files/1.1.4/gcc34-sal-link-to-libsupc++.diff, openoffice-1.1.4.ebuild:
Cleanup and sync with openoffice-ximian, also add another patch for gcc 3.4
17 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-1.1.4.ebuild:
Add support for localized helpcontent. For it to work you will have to
download the correct helpcontent file from one of the OOo-mirrors (it's in
the contrib/helpcontent/ directory, for instance:
http://ftp.stardiv.de/pub/OpenOffice.org/contrib/helpcontent/) and put it in
you distfiles-directory. Closes bug #30668
17 Jan 2005; Gustavo Zacarias <gustavoz@gentoo.org> openoffice-1.1.4.ebuild:
Keyworded ~sparc
17 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-1.1.4.ebuild:
Add support for localized helpcontent. For it to work you will have to
download the correct helpcontent file from one of the OOo-mirrors (it's in
the contrib/helpcontent/ directory, for instance:
http://ftp.stardiv.de/pub/OpenOffice.org/contrib/helpcontent/) and put it in
you distfiles-directory. Closes bug #30668
17 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
+files/1.1.4/hardened-link.patch, +files/1.1.4/pthreadlink-fix.patch:
Try to fix build problems with hardened-gccs, patches provided by
Kevin F. Quinn <co@kevquinn.com> in bug #52642
16 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
openoffice-1.1.4.ebuild:
Prevent OOo from double installing menu entries, closes bug #53752
14 Jan 2005; Andreas Proschofsky <suka@gentoo.org>
+files/1.1.4/javafix.patch, openoffice-1.1.4.ebuild:
Another fix for a java related build problem, closes bug #77866
12 Jan 2005; Andreas Proschofsky <suka@gentoo.org> :
Mark 1.1.4 stable on x86
07 Jan 2005; Joseph Jezak <josejx@gentoo.org> openoffice-1.1.4.ebuild:
Fixed SRC_URI
07 Jan 2005; Joseph Jezak <josejx@gentoo.org>
+files/1.1.4/STLport-vector.patch, openoffice-1.1.4.ebuild:
Added a workaround for compiling openoffice on ppc with gcc 3.4.3. This
might break the debug use flag, but I'm not entirely sure. This fixes bug
#73940. Also, marked ppc stable for bug #71268.
01 Jan 2005; Joseph Jezak <josejx@gentoo.org> openoffice-1.1.4.ebuild:
Marked ~ppc. Still only compiles on ppc with gcc 3.4.1 (not 3.4.3).
*openoffice-1.1.4 (28 Dec 2004)
28 Dec 2004; Andreas Proschofsky <suka@gentoo.org>
+files/1.1.4/gcc-instlib.patch, +files/1.1.4/gcc34-nojava-fix.patch,
+files/1.1.4/gcc34-nptl-fix.patch, +files/1.1.4/gcc34.patch.bz2,
+files/1.1.4/newstlportfix-patch, +files/1.1.4/ooffice-wrapper-1.3,
+files/1.1.4/openoffice-java.patch, +openoffice-1.1.4.ebuild:
Revison bump, closes bug #75378 Also includes a fix for build problems
with recent freetype versions, taken from Mandrake.
04 Dec 2004; Sven Wegener <swegener@gentoo.org> :
Added missing digest entries for the ppc files.
04 Dec 2004; Joseph Jezak <josejx@gentoo.org> openoffice-1.1.3-r1.ebuild:
Added missing files for ppc build and marked ~ppc, see bug #71286.
17 Nov 2004; Jason Wever <weeve@gentoo.org> openoffice-1.1.3.ebuild:
Stable on sparc.
15 Nov 2004; Andreas Proschofsky <suka@gentoo.org>
openoffice-1.1.1-r1.ebuild, openoffice-1.1.3-r1.ebuild,
openoffice-1.1.3.ebuild:
Use toolchains-func.eclass instead of gcc.eclass
*openoffice-1.1.3-r1 (14 Nov 2004)
14 Nov 2004; suka@gentoo.org +files/1.1.3/gcc34-nojava-fix.patch,
+files/1.1.3/gcc34-nptl-fix.patch, +files/1.1.3/gcc34.patch.bz2,
+files/1.1.3/newstlportfix2.patch, +openoffice-1.1.3-r1.ebuild:
This should now compile fine with gcc 3.4.x, the credit for this goes mostly
to Hanno Meyer-Thurow (h.mth@web.de), thanks a lot. Java check is also gone
as this should now also work fine with other jdks than blackdown.
12 Nov 2004; suka@gentoo.org openoffice-1.0.3-r2.ebuild,
openoffice-1.1.0-r4.ebuild, openoffice-1.1.1-r1.ebuild,
openoffice-1.1.3.ebuild:
Fix ewarn messages, closes bug #70851
31 Oct 2004; Jason Wever <weeve@gentoo.org> openoffice-1.1.3.ebuild:
Added a fix for sparc and ~sparc keyword.
23 Oct 2004; suka@gentoo.org openoffice-1.1.3.ebuild:
Filter another CFLAG which breaks the build
15 Oct 2004; suka@gentoo.org openoffice-1.1.3.ebuild:
depend on curl only if the appropiate use flag is set
12 Oct 2004; suka@gentoo.org openoffice-1.1.3.ebuild:
mark stable on x86 for bug #63556
08 Oct 2004; suka@gentoo.org openoffice-1.1.3.ebuild:
Builds now also without java, use libart instead of gpc, system zlib and
freetype: Other than that: cleanups
*openoffice-1.1.3 (07 Oct 2004)
07 Oct 2004; suka@gentoo.org +files/1.1.3/gcc-instlib.patch,
+files/1.1.3/newstlportfix.patch, +files/1.1.3/ooffice-wrapper-1.3,
+files/1.1.3/openoffice-java.patch, +openoffice-1.1.3.ebuild:
Version bump, this closes bug #65987
27 Sep 2004; <pauldv@gentoo.org> +files/1.1.2/gcc-instlib.patch,
openoffice-1.1.2.ebuild:
Fix language issues (bug #65379) thanks to Mark Kusch
<foobar@init-0.org> for providing the patch.
21 Aug 2004; suka@gentoo.org openoffice-1.0.3-r2.ebuild,
openoffice-1.1.0-r4.ebuild, openoffice-1.1.0-r5.ebuild,
openoffice-1.1.1-r1.ebuild, openoffice-1.1.2.ebuild:
add pam to dependencies, close bug #57195
20 Aug 2004; suka@gentoo.org openoffice-1.1.2.ebuild:
fixing some sandbox issues and marking stable on x86, at last
29 Jun 2004; Aron Griffis <agriffis@gentoo.org> openoffice-1.0.3-r2.ebuild,
openoffice-1.1.0-r4.ebuild, openoffice-1.1.0-r5.ebuild,
openoffice-1.1.1-r1.ebuild, openoffice-1.1.2.ebuild:
kill sparc64 use flag
*openoffice-1.1.2 (18 Jun 2004)
18 Jun 2004; suka@gentoo.org +files/1.1.2/linux-sparc.patch,
+files/1.1.2/newstlportfix.patch, +files/1.1.2/ooffice-wrapper-1.3,
+files/1.1.2/openoffice-java.patch, +openoffice-1.1.2.ebuild:
New version, updating for 1.1.1 should work fine this time
02 Jun 2004; Aron Griffis <agriffis@gentoo.org> openoffice-1.0.3-r2.ebuild,
openoffice-1.1.0-r4.ebuild, openoffice-1.1.0-r5.ebuild,
openoffice-1.1.1-r1.ebuild:
Fix use invocation
25 May 2004; Jason Wever <weeve@gentoo.org> +files/1.1.1/linux-sparc.patch,
openoffice-1.1.1-r1.ebuild:
Added patches to fix bug #46089 and added ~sparc keyword to openoffice-1.1.1-r1
12 May 2004; Alexander Gabert <pappy@gentoo.org> openoffice-1.0.3-r2.ebuild:
removed hardened-gcc check and CC variable modification
05 May 2004; suka@gentoo.org openoffice-1.1.0-r4.ebuild,
openoffice-1.1.0-r5.ebuild, openoffice-1.1.1-r1.ebuild:
filter another evil CFLAG
05 May 2004; suka@gentoo.org -openoffice-1.0.3-r1.ebuild,
openoffice-1.0.3-r2.ebuild, openoffice-1.1.0-r4.ebuild,
openoffice-1.1.0-r5.ebuild, openoffice-1.1.1-r1.ebuild:
Dependency fix
*openoffice-1.0.3-r2 (05 May 2004)
05 May 2004; suka@gentoo.org +files/1.0.3/neon.patch,
+openoffice-1.0.3-r2.ebuild:
Ancient versions also like their share of security love...
*openoffice-1.1.0-r5 (25 Apr 2004)
*openoffice-1.1.0-r4 (25 Apr 2004)
*openoffice-1.1.1-r1 (25 Apr 2004)
25 Apr 2004; suka@gentoo.org -openoffice-1.1.0-r2.ebuild,
-openoffice-1.1.0-r3.ebuild, +openoffice-1.1.0-r4.ebuild,
+openoffice-1.1.0-r5.ebuild, +openoffice-1.1.1-r1.ebuild,
-openoffice-1.1.1.ebuild:
revision bump for security fix
24 Apr 2004; suka@gentoo.org +files/1.1.0/neon.patch,
+files/1.1.1/neon.patch, openoffice-1.1.0-r2.ebuild,
openoffice-1.1.0-r3.ebuild, openoffice-1.1.1.ebuild:
Security fix, see:
http://secunia.com/advisories/11364/
16 Apr 2004; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1.1.ebuild:
Filter out LC_ALL as it breaks things
11 Apr 2004; suka@gentoo.org openoffice-1.1.1.ebuild,
files/1.1.1/build.patch:
Add temporary patch provided by scout@scoutheeten.com on bug #46945 to work
around build breakage caused by recent sandbox problems in portage.
09 Apr 2004; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1.1.ebuild:
Change the source file. As the only change in the source file concerns
building under windows we will not bump the version
01 Apr 2004; suka@gentoo.org openoffice-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 upgrade
*openoffice-1.1.1 (31 Mar 2004)
31 Mar 2004; suka@gentoo.org openoffice-1.1.1.ebuild,
files/1.1.1/newstlportfix.patch, files/1.1.1/nptl.patch,
files/1.1.1/ooffice-wrapper-1.3, files/1.1.1/openoffice-java.patch:
New version masked for now, as we do some further testing
28 Mar 2004; suka@gentoo.org openoffice-1.1.1_rc1.ebuild:
Add some missing dependencies
28 Mar 2004; root <root@gentoo.org> openoffice-1.1.0-r2.ebuild:
Stable on sparc thanks to stable gcc-3.3.3 :)
*openoffice-1.1.1_rc1 (07 Mar 2004)
07 Mar 2004; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1.1_rc1.ebuild,
openoffice-1.1.1b.ebuild:
Add a new release candidate. Remove the old beta as the versioning was wrong
10 Feb 2004; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1.0-r3.ebuild,
openoffice-1.1.1b.ebuild, files/1.1.0/openoffice-java.patch,
files/1.1.1b/openoffice-java.patch:
A patch to fix compiling with sun-jdk. Thanks to jgonzalez@opentechnet.com in
bug #40942
*openoffice-1.1.1b (08 Feb 2004)
08 Feb 2004; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1.1b.ebuild,
files/1.1.1b/fixed-gcc.patch, files/1.1.1b/newstlportfix.patch,
files/1.1.1b/no-mozab.patch, files/1.1.1b/nptl.patch,
files/1.1.1b/ooffice-wrapper-1.3:
A new upstream prerelease. Hopefully it compiles correctly ;-)
05 Feb 2004; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1.0-r3.ebuild:
Change the installation database so that the desktop bindings will not get
installed for users. They are allready installed globally
03 Feb 2004; suka <suka@gentoo.org> openoffice-1.1.0-r3.ebuild:
This update further simplifies the ebuild and aims to fix the distcc problems.
Even better parallel build COULD now work for you, at least it does for me, as
it is not tested enough you will have to explicitely force the ebuild to build
in parallel / use more cpus. If you dare to try out emerge the ebuild like:
'ECPUS="n" emerge openoffice'
where n has to be exchanged with the number of processes / CPUs you want to
use. No guarantee whatsoever that it will work for you :-)
24 Jan 2004; <paul@gentoo.org> openoffice-1.1.0-r1.ebuild,
openoffice-1.1.0.ebuild:
Cleaning up old versions
*openoffice-1.1.0-r3 (24 Jan 2004)
24 Jan 2004; suka <suka@gentoo.org> openoffice-1.1.0-r2.ebuild,
openoffice-1.1.0-r3.ebuild:
Big rework of the ebuild:
*) Convert build system to bash
*) This also removes the blocker on app-arch/star
*) Corrected java check (we look now explecitely for blackdown-jdk,
see bug #38646)
*) CXXFLAGS are now actually applied
*) Dropped virtualmake
*) Lots of cleanups
This is all in openoffice-1.1.0-r3, -r2 only got the java check-fix
17 Jan 2004; <suka@gentoo.org> openoffice-1.1.0-r2.ebuild:
Compile fixes especially for Pentium4, also closes bug #32418 (broken menu
entry)
14 Nov 2003; Sven Blumenstein <bazik@gentoo.org> openoffice-1.1.0-r2.ebuild:
Removed -r3 and added the change to -r2 to make seemant happy
*openoffice-1.1.0-r3 (14 Nov 2003)
14 Nov 2003; Sven Blumenstein <bazik@gentoo.org> openoffice-1.1.0-r3.ebuild,
files/1.1.0/openoffice-1.1.0-sparc64-fix.patch:
New revision. Added a patch which lets it build on sparc64.
This is no offical patch but it works for me. Please test
and report back directly to me - thanks!
*openoffice-1.1.0-r2 (09 Nov 2003)
09 Nov 2003; <paul@gentoo.org> openoffice-1.1.0-r2.ebuild:
Add -fno-strict-aliasing to make excel import work
28 Oct 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1.0-r1.ebuild:
Add predict for stupid gconf sandbox error
25 Oct 2003; <paul@gentoo.org> openoffice-1.1.0-r1.ebuild,
openoffice-1.1.0.ebuild:
Fix error in the pentium4+gcc3.2 check
23 Oct 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1.0-r1.ebuild:
Depend on newest findutils so that the xargs problem is aleviated at least
temporarilly
23 Oct 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1.0-r1.ebuild:
Add kernel 2.6.0 patch
23 Oct 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1.0-r1.ebuild,
openoffice-1.1.0.ebuild:
Do some flag-o-matic to prevent -march=pentium4 from failing on 3.2 compilers
19 Oct 2003; Heinrich Wendel <lanius@gentoo.org> openoffice-1.1.0-r1.ebuild,
openoffice-1.1.0.ebuild, openoffice-1.1_rc3.ebuild:
fixed DUTCH 03 -> 31
19 Oct 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1.0-r1.ebuild,
openoffice-1.1.0.ebuild, openoffice-1.1_rc3.ebuild:
Fix jdk dependency to depend on 1.4.1 or greater
*openoffice-1.1.0-r1 (17 Oct 2003)
17 Oct 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1.0-r1.ebuild,
openoffice-1.1.0.ebuild, files/1.1.0/nptl.patch:
Add cretin@gentoo.org's nptl patch. This should fix compilation on nptl
systems and 2.6.0 kernel systems. Further mark 1.1.0 stable.
10 Oct 2003; Alexander Gabert <pappy@gentoo.org> openoffice-1.0.3-r1.ebuild:
changed hardened-gcc flags
09 Oct 2003; Alexander Gabert <pappy@gentoo.org> openoffice-1.0.3-r1.ebuild:
added new hppa dependent hardened-gcc flags
08 Oct 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1.0.ebuild:
Fix ccache test so that the old style ccache works again (if replaced by elif)
07 Oct 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1.0.ebuild:
Add a hack to make nationalised builds work
*openoffice-1.1.0 (03 Oct 2003)
03 Oct 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1.0.ebuild,
openoffice-1.1_beta2-r1.ebuild, openoffice-1.1_rc1.ebuild,
openoffice-1.1_rc2.ebuild, files/1.1_beta2/newstlportfix.patch,
files/1.1_beta2/no-mozab.patch, files/1.1_beta2/ooffice-wrapper-1.3,
files/1.1_beta2/openoffice-xrender.patch, files/1.1_rc1/newstlportfix.patch,
files/1.1_rc1/no-mozab.patch, files/1.1_rc1/ooffice-wrapper-1.3,
files/1.1_rc1/openoffice-xrender.patch, files/1.1_rc2/newstlportfix.patch,
files/1.1_rc2/no-crashrep.patch, files/1.1_rc2/no-mozab.patch,
files/1.1_rc2/ooffice-wrapper-1.3, files/1.1_rc2/openoffice-xrender.patch:
Add the openoffice release version. It should be stable very soon. Also remove
all but the latest release candidate. rc3 will be removed as 1.1.0 is marked
stable
19 Sep 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1_rc2.ebuild,
openoffice-1.1_rc3.ebuild:
Fix stupid mistake in the german language number
07 Sep 2003; Alexander Gabert <pappy@gentoo.org> openoffice-1.0.3-r1.ebuild:
added hardened-gcc exclude flags
03 Sep 2003; Jason Wever <weeve@gentoo.org> openoffice-1.0.3-r1.ebuild,
files/1.0.3/openoffice-1.0.1-sparc.patch.bz2,
files/1.0.3/openoffice-1.0.3-sparc-gentoo.patch:
Added ~sparc to keywords. This fixes bug #10381 and finally gets sparc going
on OO. Many thanks to "The Shrink" who's asm patch made this possible (see
case notes for more details).
*openoffice-1.1_rc3 (20 Aug 2003)
20 Aug 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1_rc3.ebuild,
files/1.1_rc3/fixed-gcc.patch, files/1.1_rc3/newstlportfix.patch,
files/1.1_rc3/no-crashrep.patch, files/1.1_rc3/no-mozab.patch,
files/1.1_rc3/ooffice-wrapper-1.3:
New upstream version
17 Aug 2003; <paul@gentoo.org> openoffice-1.1_rc1.ebuild:
Also fix mirrors in rc1
17 Aug 2003; <paul@gentoo.org> openoffice-1.1_rc2.ebuild:
Use the updated openoffice mirror list
*openoffice-1.1_rc2 (12 Aug 2003)
12 Aug 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.1_rc2.ebuild,
files/1.1_rc2/newstlportfix.patch, files/1.1_rc2/no-crashrep.patch,
files/1.1_rc2/no-mozab.patch, files/1.1_rc2/ooffice-wrapper-1.3,
files/1.1_rc2/openoffice-xrender.patch:
A new release candidate. This ebuild should be faster as it does now stop
building all languages and instead uses a large case statement to find out
which language needs to be built. For that reason it also should take less
diskspace. Further it does not built the crashreport application as it is
currenlty broken and would introduce a dependency on gtk so I don't want to go
and make it work.
07 Aug 2003; <paul@gentoo.org> openoffice-1.0.3-r1.ebuild,
openoffice-1.1_beta2-r1.ebuild, openoffice-1.1_rc1.ebuild:
Have the builds block on star as it is not compatible enough to gnutar
27 Jul 2003; <paul@gentoo.org> openoffice-1.1_rc1.ebuild:
Add dependency on gtk+ to rc1 (fixes bug #25297)
*openoffice-1.1_rc1 (20 Jul 2003)
20 Jul 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.0.2-r1.ebuild,
openoffice-1.0.2.ebuild, openoffice-1.1_beta2.ebuild,
openoffice-1.1_rc1.ebuild, files/1.1_rc1/newstlportfix.patch,
files/1.1_rc1/no-mozab.patch, files/1.1_rc1/ooffice-wrapper-1.3,
files/1.1_rc1/openoffice-xrender.patch:
Add the release candidate, and clean up some old versions
08 Jul 2003; <paul@gentoo.org> openoffice-1.1_beta2-r1.ebuild:
Block on glibc-2.3.1 as it won't work (bug #24085 and oo bug #10210)
30 Jun 2003; Brad Laue <brad@gentoo.org> openoffice-1.1_beta2-r1.ebuild:
Add ooweb symlink
*openoffice-1.1_beta2-r1 (30 Jun 2003)
30 Jun 2003; Brad Laue <brad@gentoo.org> openoffice-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-1.1_beta2.ebuild,
files/1.1_beta2/ooffice-wrapper-1.3:
Fix version problem that slipped through
*openoffice-1.1_beta (18 Jun 2003)
18 Jun 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.0.3-r1.ebuild,
openoffice-1.1_beta.ebuild, openoffice-1.1_beta2.ebuild:
Fix small problem in 1.0.3 ebuild concerning oopadmin not working. Also added
a new openoffice-1.1_beta2 ebuild. This obsoletes the never working beta1,
which is now removed. Note that beta2 does not build with gcc-3.3.
*openoffice-1.0.3-r1 (25 May 2003)
25 May 2003; Paul de Vrieze <pauldv@gentoo.org> openoffice-1.0.3-r1.ebuild,
files/1.0.3/vcl.printcxx.OOO_STABLE_1_PORTS.100102.patch:
Apply a patch found from openoffice bugzilla that should fix the printing
problem that caused an 1.0.3.1 release for the binary version.
*openoffice-1.0.3 (07 Apr 2003)
07 Apr 2003; Seth Chandler <sethbc@gentoo.org>;
added 1.0.3 to portage, but its not a good bet becuase printing doesn't work
*openoffice-1.1beta (03 Apr 2003)
03 Apr 2003; Seth Chandler <sethbc@gentoo.org>;
do not build this package, it doesn't yet work
*openoffice-1.0.2-r2 (09 Apr 2003)
02 Jul 2003; Daniel Ahlberg <aliz@gentoo.org> :
Added missing changelog entry.
*openoffice-1.0.2-r1 (31 Mar 2003)
31 Mar 2003; Seth Chandler <sethbc@gentoo.org>;
openoffice-1.0.2-r1.ebuild,
files/1.0.2/openoffice-1.0.2-default-fonts.patch,
files/1.0.2/openoffice-1.0.2-ft-antialias-advice.patch:
big openoffice cleanups, introduction of 1.0.2-r1 with better AA text support
=)
*openoffice-1.0.1-r3 (12 Dec 2002)
12 Jan 2003; Seth Chandler <sethbc@gentoo.org> openoffice-1.0.1-r3.ebuild
Fixed several java problems, as well as a generic fix for the libstdc++
stuff. Should fix most of the open compile error bugs in bugzilla.
23 Dec 2002; Seth Chandler<sethbc@gentoo.org> openoffice-1.0.1.ebuild-r3 :
Put in an addpredict to predict writes to /user and /share (same fix
applied to openoffice-bin ebuild). I'm looking for a permanent fix to this
(i.e. not one which uses addpredict) and will update again when its ready =)
12 Dec 2002; Martin Schlemmer <azarah@gentoo.org> openoffice-1.0.1.ebuild-r3 :
Fix to work with a gcc-config enabled gcc ...
*openoffice-1.0.1-r2 (02 Dec 2002)
02 Dec 2002; Seth Chandler <sethbc@gentoo.org> openoffice-1.0.1-r2.ebuild:
Add -r2 to portage. I'm requiring jdk 1.4.0 becuase i'm not yet sure if
it works with a 1.3 jdk (some fixes applied to make blackdown 1.4 beta build
may break 1.3.X jdk's). sun-jdk is still unsupported and will definately
break the compile. The wrapper script has been updated to do ld_preload
for fonts (ooffice-wrapper-1.1) and 2 other patches were added:
openoffice-1.0.1-use-libstdc++-5.0.1.patch: for people running ~arch and
openoffice-1.0.1-fix-jdk-1.4.0.patch: which fixes the aformentioned java
bugs. Please please please submit any bugs you find to me ASAP ;-)
02 Dec 2002; Seth Chandler <sethbc@gentoo.org> openoffice-1.0.1-r1.ebuild:
Fix Az's freetype change so it actually works :-)
01 Dec 2002; Martin Schlemmer <azarah@gentoo.org> openoffice-1.0.1.ebuild-r1 :
Change it to use freetype-2.1.2.tar.bz2, as I was braindead at the time
and used the .tar.gz. Also convert to use epatch().
*openoffice-1.0.1-r1 (22 Sep 2002)
05 Nov 2002; Mark Guertin <gerk@gentoo.org> openoffice-1.0.1-r1.ebuild :
added ppc to keywords, set it to require latest glibc (required for ppc)
and at least gcc 3.2
03 Nov 2002; Jon Nall <nall@gentoo.org> openoffice-1.0.1-r1.ebuild :
added ~ppc to KEYWORDS
17 Oct 2002; Daniel Ahlberg <aliz@gentoo.org> openoffice-1.0.1-r1.ebuild :
Added IUSE.
22 Sep 2002; Martin Schlemmer <azarah@gentoo.org> :
Enable bytecode interpreter, and build against freetype-2.1.2,
based on great work from Paul de Vrieze <gentoo-bugs@devrieze.net>.
This should close bug #8096.
17 Sep 2002; Martin Schlemmer <azarah@gentoo.org> :
Fix openoffice-1.0.1-parallel-build.patch, as stupid
cvs expanded the keywords in it.
*openoffice-1.0.1 (15 Sep 2002)
17 Oct 2002; Daniel Ahlberg <aliz@gentoo.org> openoffice-1.0.1.ebuild :
Added IUSE.
15 Sep 2002; Martin Schlemmer <azarah@gentoo.org> :
Update version. New install method. Install menu shortcuts.
Lots of cleanups and other stuff I forgot.
*openoffice-1.0.0-r2 (15 Jul 2002)
15 Jul 2002; Martin Schlemmer <azarah@gentoo.org> :
General updates to handle changes in our gcc ebuilds;
Support for gcc-3.1.1. Also updated the registry .. old
had version 641 in title, etc.
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-1.0.0-r1 (7 Jun 2002)
7 Jun 2002; Martin Schlemmer <azarah@gentoo.org> :
Update to build with gcc-3.1.
*openoffice-1.0.0 (21 May 2002)
*openoffice-641d (24 Apr 2002)
24 Apr 2002; M.Schlemmer <azarah@gentoo.org> openoffice-641d.ebuild :
Add initial *working* 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.
|