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
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
|
# ChangeLog for app-office/openoffice
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-office/openoffice/ChangeLog,v 1.511 2010/02/22 10:11:17 suka Exp $
22 Feb 2010; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.2.0.ebuild, +files/qt-use-native-backend.diff:
hardcode native Qt graphics backend, doesn't startup otherwise, bug
#306211
22 Feb 2010; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.2.0.ebuild:
Forgot to set QT4LIB, see bug #306135
21 Feb 2010; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.2.0.ebuild, files/gentoo-3.2.0.diff:
Silent bump to ooo-build 3.2.0.6 patchset, minor fixes
21 Feb 2010; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.2.0.ebuild:
Raise boost-dependency to prevent build breakage, see bug #306151
*openoffice-3.2.0 (20 Feb 2010)
20 Feb 2010; Andreas Proschofsky <suka@gentoo.org>
+openoffice-3.2.0.ebuild, +files/gentoo-3.2.0.diff:
Bump to OpenOffice.org 3.2.0, remove templates integration for now, breaks
the build for me
10 Feb 2010; Samuli Suominen <ssuominen@gentoo.org>
openoffice-3.1.1.ebuild:
Fix poppler depend from obsolete virtual/ to app-text/.
14 Jan 2010; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1.ebuild:
Remove seamonkey-1 support for bug #300409
28 Nov 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1.ebuild:
Automatically depend on myspell dictionaries according to
LINGUAS-settings, patch by Lars <lars.winterfeld@tu-ilmenau.de>
Closes bug #292813
28 Nov 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1.ebuild, files/gentoo-3.1.1.diff,
+files/nocairofonts.diff, -files/ooo-build-patchver.diff:
Do not use cairo-font patches for systems without gtk and gnome, otherwise
the build breaks, see bug #285084
28 Nov 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1.ebuild:
Bump ooo-build patchset to latest release (3.1.1.5), bunch of
bugfixes, see:
http://cgit.freedesktop.org/ooo-build/ooo-build/tree/NEWS?h=ooo-build-3-1-
1
for more information.
27 Nov 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1.ebuild:
Remove unnecessary dependencies
26 Nov 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1.ebuild, +files/Gentoo_ODK_install.patch:
Finally fix ODK installation, see bug #151798
25 Nov 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1.ebuild:
better pax check, see bug #258051
25 Nov 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1.ebuild:
Remove outdated mem- and disk-requirement info, also raise disk-usage
warning for debug builds
25 Nov 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1.ebuild, +files/ooo-build-patchver.diff:
Fix build with sys-devel/patch-2.6, thanks to Anthony Low
<shinji@pikopiko.org> for the fix. Closes bug #293385
29 Oct 2009; Andreas Proschofsky <suka@gentoo.org>
files/gentoo-3.1.1.diff:
Accidentaly dropped db-4.8 fix, re-introduce
28 Oct 2009; Jonathan Callen <abcd@gentoo.org> openoffice-3.1.1.ebuild:
CMAKE_REQUIRED changed to WANT_CMAKE in kde4-base.eclass
28 Oct 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1.ebuild, files/gentoo-3.1.1.diff:
Bump to ooo-build-3.1.1.4, also re-fix kde4/qt4-support
27 Oct 2009; Tomáš Chvátal <scarabeus@gentoo.org>
openoffice-3.1.1.ebuild:
Rename variable to correspond with kde eclass.
17 Oct 2009; Zac Medico <zmedico@gentoo.org> openoffice-3.1.1.ebuild:
Prefer newer xulrunner:1.9 over xulrunner:1.8.
04 Oct 2009; Andreas Proschofsky <suka@gentoo.org>
-files/buildfix-gcc44.diff, -openoffice-3.1.0-r1.ebuild,
-files/hunspell-one-dir-nocrash.diff,
-files/solenv.workaround-for-the-kde-mess.diff:
Further security related cleanup
04 Oct 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1.ebuild:
Re-add ~sparc as kde4 is masked now
04 Oct 2009; Andreas Proschofsky <suka@gentoo.org>
-openoffice-3.0.0.ebuild, -files/gentoo-3.0.0.diff,
-files/fixsandbox.diff, -files/nojavanostax.diff:
Clean out old, security vulnerable version
04 Oct 2009; Mounir Lamouri <volkmar@gentoo.org> openoffice-3.1.1.ebuild:
Stable for ppc, bug 283370
26 Sep 2009; Tobias Heinlein <keytoaster@gentoo.org>
openoffice-3.1.1.ebuild:
amd64 stable, security bug #283370
24 Sep 2009; Andreas Proschofsky <suka@gentoo.org>
-files/kde4-configure2.diff, -files/xulrunner-1.9.1.diff,
openoffice-3.1.1.ebuild:
Raise patchset to ooo-build 3.1.1.2, bunch of smaller fixes. Also remove
upstreamed patches
24 Sep 2009; Christian Faulhammer <fauli@gentoo.org>
openoffice-3.1.1.ebuild:
stable x86, security bug 283370
22 Sep 2009; Andreas Proschofsky <suka@gentoo.org>
files/gentoo-3.1.1.diff, -files/dbfix.diff, +files/kde4-configure2.diff,
openoffice-3.1.1.ebuild:
Trying to fix KDE4 build problems, once again, see bug #283618
20 Sep 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1.ebuild, files/gentoo-3.1.1.diff, +files/dbfix.diff:
Fix build with sys-libs/db-4.8, bug #285544
08 Sep 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1.ebuild, +files/boost-undefined-references.diff:
Fix build problem in relation to boost, thanks to Jory A. Pratt
<anarchy@gentoo.org> for hunting it down. Closes bug #270947
04 Sep 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1.ebuild:
Add hungarian template pack, bug #272159
04 Sep 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1.ebuild:
Try to fix one more KDE build problem, bug #283618
03 Sep 2009; Andreas Proschofsky <suka@gentoo.org>
files/gentoo-3.1.1.diff:
Fix qt4-detection, see bug #280344
02 Sep 2009; Andreas Proschofsky <suka@gentoo.org>
-files/buildfix-mono-2-2.diff, -openoffice-3.0.1.ebuild,
-files/gentoo-3.0.1.diff, -openoffice-3.1.0.ebuild,
openoffice-3.1.0-r1.ebuild, -files/gentoo-3.1.0.diff:
Some cleanup work
*openoffice-3.1.1 (02 Sep 2009)
02 Sep 2009; Andreas Proschofsky <suka@gentoo.org>
-openoffice-3.1.1_beta2.ebuild, +openoffice-3.1.1.ebuild,
-files/gentoo-3.1.1_beta2.diff, +files/gentoo-3.1.1.diff,
+files/gentoo-pythonpath.diff:
Bump to OpenOffice.org 3.1.1, mostly bugfixes, also adds KDE4 support
20 Aug 2009; Tomáš Chvátal <scarabeus@gentoo.org>
openoffice-3.1.1_beta2.ebuild:
Add new WANT_CMAKE check for kde4 stuff so we dont inherit cmake-utils
without purpose.
*openoffice-3.1.1_beta2 (05 Aug 2009)
05 Aug 2009; Andreas Proschofsky <suka@gentoo.org>
-openoffice-3.1.1_beta1.ebuild, +openoffice-3.1.1_beta2.ebuild,
-files/gentoo-3.1.1_beta1.diff, +files/gentoo-3.1.1_beta2.diff:
Newer beta release for OOo 3.1.1, some more KDE4 fixes thanks to Tomas
Chvatal <scarabeus@gentoo.org>
05 Aug 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.1_beta1.ebuild:
Fix the KDE dependency to also work with newer releases
*openoffice-3.1.1_beta1 (04 Aug 2009)
04 Aug 2009; Andreas Proschofsky <suka@gentoo.org>
+openoffice-3.1.1_beta1.ebuild, +files/gentoo-3.1.1_beta1.diff:
Beta Release for OpenOffice.org 3.1.1 with KDE4-support (untested). So
please test and give feedback.
27 Jul 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.0-r1.ebuild:
redland should be in RDEPEND, bug #278880
*openoffice-3.1.0-r1 (22 Jul 2009)
22 Jul 2009; Andreas Proschofsky <suka@gentoo.org>
+files/xulrunner-1.9.1.diff, +openoffice-3.1.0-r1.ebuild:
New revision for OOo 3.1.0 with a bunch of changes:
*) Supports xulrunner 1.9.1
*) Uses gio instead of gnome-vfs
*) uses more system libraries (lucene, redland, rhino)
22 Jul 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.0.ebuild, openoffice-3.0.1.ebuild, openoffice-3.1.0.ebuild:
Depend on xulrunner-1.9.0* for older releases
19 Jul 2009; Torsten Veller <tove@gentoo.org> openoffice-3.0.0.ebuild,
openoffice-3.0.1.ebuild, openoffice-3.1.0.ebuild:
IO-Compress provides Compress-Zlib and IO-Compress-Base
10 Jul 2009; Gordon Malm <gengor@gentoo.org> openoffice-3.0.0.ebuild,
openoffice-3.0.1.ebuild, openoffice-3.1.0.ebuild:
Filter SSP for <gcc-4 only, thanks to Magnus Granberg.
31 May 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.0.ebuild:
Update patchset to ooo-build 3.1.0.6, some smallish bug fixes
26 May 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.0.ebuild, -files/ooo_getline.diff:
Update to ooo-build-3.0.1.5 build set, some more build fixes
24 May 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.0.ebuild:
Trying to fix the KDE3 / KDE4 problem again, see bug #238539
24 May 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.1.0.ebuild:
Bump to ooo-build 3.0.1.4, bunch of smaller bugfixes
19 May 2009; Andreas Proschofsky <suka@gentoo.org>
+files/buildfix-gcc44.diff, openoffice-3.1.0.ebuild,
+files/ooo_getline.diff:
Fix build problems with gcc-4.4 (bug #269452) and glibc-2.10.1 (bug
#270263) and correct post-install message for bash completion (bug
#270185)
*openoffice-3.1.0 (17 May 2009)
17 May 2009; Andreas Proschofsky <suka@gentoo.org>
-openoffice-3.1.0_beta7.ebuild, +openoffice-3.1.0.ebuild,
-files/gentoo-3.1.0_beta7.diff, +files/gentoo-3.1.0.diff:
OpenOffice 3.1.0, in contrary to openoffice-bin this also adds OOXML
export
12 May 2009; Peter Alfredsen <loki_val@gentoo.org>
openoffice-3.0.0.ebuild, openoffice-3.0.1.ebuild,
openoffice-3.1.0_beta7.ebuild:
Bug 257313 is fixed. Update mono deps to match.
03 May 2009; Peter Alfredsen <loki_val@gentoo.org>
openoffice-3.0.0.ebuild, openoffice-3.0.1.ebuild,
openoffice-3.1.0_beta7.ebuild:
Update deps w.r.t. bug 257313. Novell seems disinclined to fix this bug in
a timely manner, so we'll just have to work-around it.
*openoffice-3.1.0_beta7 (01 May 2009)
01 May 2009; Andreas Proschofsky <suka@gentoo.org>
-openoffice-3.1.0_beta6.ebuild, +openoffice-3.1.0_beta7.ebuild,
-files/gentoo-3.1.0_beta6.diff, +files/gentoo-3.1.0_beta7.diff:
Newer beta-release for OOo 3.1
25 Apr 2009; Brent Baude <ranger@gentoo.org> openoffice-3.0.1.ebuild:
Marking openoffice-3.0.1 ~ppc64 for bug 244467
25 Apr 2009; Andreas Proschofsky <suka@gentoo.org> openoffice-3.0.0,
openoffice-3.0.1:
Also fix older releases...
25 Apr 2009; Andreas Proschofsky <suka@gentoo.org> openoffice-3.1.0_beta6:
Add missing dependency on libXrandr, bug #266331 and fix pax check, bug
#258051
*openoffice-3.1.0_beta6 (25 Apr 2009)
25 Apr 2009; Andreas Proschofsky <suka@gentoo.org>
-files/gentoo-3.1.0_beta5.diff, +files/gentoo-3.1.0_beta6.diff,
-openoffice-3.1.0_beta5.ebuild, +openoffice-3.1.0_beta6.ebuild:
Bump to newer beta release, this also fixes the gconf-check, see bug
#266099
*openoffice-3.1.0_beta5 (20 Apr 2009)
20 Apr 2009; Andreas Proschofsky <suka@gentoo.org>
-files/gentoo-3.1.0_beta4.diff, +files/gentoo-3.1.0_beta5.diff,
-openoffice-3.1.0_beta4.ebuild, +openoffice-3.1.0_beta5.ebuild:
Bump to newer beta release for OOo 3.1
*openoffice-3.1.0_beta4 (11 Apr 2009)
11 Apr 2009; Andreas Proschofsky <suka@gentoo.org>
+files/gentoo-3.1.0_beta4.diff, +files/base64.diff,
-files/gentoo-3.1.0_beta3.diff, -openoffice-3.1.0_beta3.ebuild,
+openoffice-3.1.0_beta4.ebuild:
Bump to newer beta version of OOo 3.1. Also raise icu dependency, fix java
class registration and bash completion.
*openoffice-3.1.0_beta3 (08 Apr 2009)
08 Apr 2009; Andreas Proschofsky <suka@gentoo.org>
+files/gentoo-3.1.0_beta3.diff, +openoffice-3.1.0_beta3.ebuild:
Beta3 release for upcoming OpenOffice 3.1.0
30 Mar 2009; Peter Alfredsen <loki_val@gentoo.org>
openoffice-3.0.0.ebuild, openoffice-3.0.1.ebuild:
Update dependencies w.r.t. bug 264230, fully-split-out poppler transition.
27 Mar 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.1.ebuild:
Bump patchset to ooo-build 3.0.1.3, bunch of bug fixes as always. Also
raise value for the required disk space
05 Mar 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.1.ebuild:
Some cleanups to the ebuild, also switching to EAPI=2, mostly the work of
Peter Volkov <pva@gentoo.org>
15 Feb 2009; Andreas Proschofsky <suka@gentoo.org> Manifest:
Update the manifest, seems like the upstream packages changed without
versioning, bug #258509
31 Jan 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.1.ebuild:
ooo-build 3.0.1.2, minor bugfixes
29 Jan 2009; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.1.ebuild:
Silent bump to ooo-build-3.0.1.1 patchset, some minor bugfixes, for
instance Bug #256700
*openoffice-3.0.1 (28 Jan 2009)
28 Jan 2009; Andreas Proschofsky <suka@gentoo.org>
-files/gentoo-3.0.1_rc2.diff, +files/gentoo-3.0.1.diff,
-openoffice-3.0.1_rc2.ebuild, +openoffice-3.0.1.ebuild:
Bump to final release for OpenOffice.org 3.0.1
27 Jan 2009; Andreas Proschofsky <suka@gentoo.org>
+files/buildfix-mono-2-2.diff, files/gentoo-3.0.1_rc2.diff,
openoffice-3.0.1_rc2.ebuild:
Fix build problems with Mono 2.2, see bug #255845
*openoffice-3.0.1_rc2 (18 Jan 2009)
18 Jan 2009; Andreas Proschofsky <suka@gentoo.org>
+files/gentoo-3.0.1_rc2.diff, +openoffice-3.0.1_rc2.ebuild:
Add release candidate for OpenOffice.org 3.0.1
12 Jan 2009; Andreas Proschofsky <suka@gentoo.org>
files/gentoo-3.0.0.diff, openoffice-3.0.0.ebuild:
Fix parallel build problems, bug #253386. Fix RDEPEND with nsplugin, bug
#243034. Remove blocker on dmake, bug #252827
09 Jan 2009; Andreas Proschofsky <suka@gentoo.org> files/gentoo-3.0.0.diff,
+files/solenv.workaround-for-the-kde-mess.diff, openoffice-3.0.0.ebuild:
Proper fix for the KDE3/KDE4 build problems, thanks to
<dtardon@redhat.com> for the patch. Closes bug #238539
28 Dec 2008; Andreas Proschofsky <suka@gentoo.org> -files/gentoo-2.4.1.diff,
-openoffice-2.4.1.ebuild, openoffice-3.0.0.ebuild:
Bunch of fixes:
*) Internal Bump to ooo-build 3.0.0.3.6, see
http://svn.gnome.org/viewvc/ooo-build/branches/ooo-build-3-0/NEWS?revision
=14682&view=markup for more information
*) Remove dependencies on startup-notification and imagemagick, not needed
anymore
*) Remove hardcoded fonts for some languages, closes bug #252199
*) Remove some build problems with more strict sandbox, bug #251932
*) Fix mono install
*) Remove outdated (and security vulnerable) version
18 Nov 2008; Torsten Veller <tove@gentoo.org> openoffice-2.4.1.ebuild,
openoffice-3.0.0.ebuild:
New virtuals: Compress-Raw-Zlib Compress-Zlib IO-Compress-Base
03 Nov 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.0.ebuild:
Re-enable binfilter use-flag, seems to work, bug #245261
02 Nov 2008; Tobias Scherbaum <dertobi123@gentoo.org>
openoffice-3.0.0.ebuild:
ppc stable, bug #235824
24 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
files/gentoo-3.0.0.diff, +files/hunspell-one-dir-nocrash.diff,
openoffice-3.0.0.ebuild:
Trying to fix freeze related to spell checking, see bug #242020
24 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.0.ebuild:
Improve CFLAGS filtering for gcc 3.4.x, thanks to Gordon Malm
<gengor@gentoo.org>
20 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
files/gentoo-3.0.0.diff, openoffice-3.0.0.ebuild:
Another fix for the templates install problem, see bug #242494. Also fix
the build with gcc-3.x / hardened, bugs #220026 and #242802
20 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.0.ebuild:
Fix templates support by providing config-option in the right place, see
bug #242494
19 Oct 2008; Andreas Proschofsky <suka@gentoo.org> ChangeLog:
Add dependency on x11-libs/libXtst, bug #242586
19 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.0.ebuild:
Add warning about the quickstarter only being built when 'gtk' or 'gnome'
use flag is specified
19 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.0.ebuild:
Remove useless check for l10n
18 Oct 2008; Markus Meier <maekke@gentoo.org> openoffice-3.0.0.ebuild:
amd64/x86 stable, bug #235824
18 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.0.ebuild:
Fix download of templates packages, see bug #242494
17 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.0.ebuild:
Moving config check for pam, to fix bug #241166
16 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.0.ebuild:
Die on KDE 4.1 problem instead of just warning, bug #238539
16 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
files/gentoo-3.0.0.diff, openoffice-3.0.0.ebuild:
Bump the patchset to ooo-build 3.0.0.3.5, this fixes a bunch of bugs. Most
notably the quickstarter is working again.
15 Oct 2008; Friedrich Oslage <bluebird@gentoo.org>
openoffice-3.0.0.ebuild:
Re-add ~sparc keyword, builds and runs again since bug #238642 has been fixed.
14 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
-files/gentoo-3.0.0_rc4.diff, files/gentoo-3.0.0.diff,
-openoffice-3.0.0_rc4.ebuild, openoffice-3.0.0.ebuild:
Further cleanups to deps and config-flags
14 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
-files/gentoo-3.0.0_rc4.diff, files/gentoo-3.0.0.diff,
-openoffice-3.0.0_rc4.ebuild, openoffice-3.0.0.ebuild:
Bunch of smaller fixes and improvements:
*) Build PDF import, Presentation Console and Presentation Minimizer
extensions, inform about the need to install them manually
*) Add "templates" use-flag, installs Sun templates for OOo (if you build
for english or german)
*) Warn about build problems when having KDE 4.1.x with kdeprefix
installed, see bug #238539
*) Remove some no longer needed dependencies, clean up others
*openoffice-3.0.0 (13 Oct 2008)
13 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
+files/gentoo-3.0.0.diff, +files/nojavanostax.diff,
+openoffice-3.0.0.ebuild:
openoffice-3.0.0, masked until build without-java fixes are tested (and
work)
*openoffice-3.0.0_rc4 (07 Oct 2008)
07 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
-files/gentoo-3.0.0_rc3.diff, +files/gentoo-3.0.0_rc4.diff,
-openoffice-3.0.0_rc3.ebuild, +openoffice-3.0.0_rc4.ebuild:
Bump to RC4, hopefully the last one
*openoffice-3.0.0_rc3 (03 Oct 2008)
03 Oct 2008; Andreas Proschofsky <suka@gentoo.org>
-files/gentoo-3.0.0_rc2.diff, +files/gentoo-3.0.0_rc3.diff,
-files/stax-saxon-no-java.diff, -openoffice-3.0.0_rc2.ebuild,
+openoffice-3.0.0_rc3.ebuild:
Bump to OOo 3.0 RC3, lots of bugfixes, now migrates user-settings from OOo
2.x
26 Sep 2008; Andreas Proschofsky <suka@gentoo.org>
files/gentoo-3.0.0_rc2.diff, +files/stax-saxon-no-java.diff,
openoffice-3.0.0_rc2.ebuild:
Another fix for building without java, closes bug #238642
23 Sep 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.0_rc2.ebuild:
Use splash screen without Sun logo
*openoffice-3.0.0_rc2 (23 Sep 2008)
23 Sep 2008; Andreas Proschofsky <suka@gentoo.org>
-files/gentoo-3.0.0_rc1.diff, +files/gentoo-3.0.0_rc2.diff,
-files/lucene-no-java.diff, -openoffice-3.0.0_rc1.ebuild,
+openoffice-3.0.0_rc2.ebuild:
Bump to RC2 of OpenOffice.org 3.0
22 Sep 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.0_rc1.ebuild:
Fix xulrunner deps, see bug #238280
20 Sep 2008; Andreas Proschofsky <suka@gentoo.org>
files/gentoo-3.0.0_rc1.diff, +files/lucene-no-java.diff,
openoffice-3.0.0_rc1.ebuild:
Further simplify browser plugin stuff, drop seamonkey use-flag as a
consequence. Disable binfilter stuff for now, no source package available
atm and add some more info messages. Also try to fix the build without
java.
19 Sep 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-3.0.0_rc1.ebuild:
Remove RDPENDS for nsplugin stuff. We really don't need to depend on any
specific browser at runtime.
13 Sep 2008; Friedrich Oslage <bluebird@gentoo.org>
openoffice-3.0.0_rc1.ebuild:
Marking it -sparc again because it needs java (which we don't have) even
with USE=-java. See bug #233465 for more information.
*openoffice-3.0.0_rc1 (11 Sep 2008)
11 Sep 2008; Andreas Proschofsky <suka@gentoo.org>
-files/gentoo-3.0.0_beta2.diff, +files/gentoo-3.0.0_rc1.diff,
-openoffice-3.0.0_beta2.ebuild, +openoffice-3.0.0_rc1.ebuild:
Release Candidate 1 for OOo 3.0. Also use nsplugin instead of
firefox|xulrunner use-flags.
22 Aug 2008; Andreas Proschofsky <suka@gentoo.org>
+files/gentoo-3.0.0_beta2.diff:
Add masked beta ebuild for OpenOffice 3.0. Builds but still got some
issues. This also introduces some other changes to the ebuild:
*) parallel building is now enabled by default as this is being tested by
upstream *) Dictionary-support doesn't need eselect oodict anymore *) java
1.4 is no longer support
and a bunch of smaller ebuild changes
11 Aug 2008; Friedrich Oslage <bluebird@gentoo.org>
openoffice-2.4.1.ebuild:
Re-add ~sparc keyword, 2.4.1 compiles and works again on this wonderful arch
03 Aug 2008; Ulrich Mueller <ulm@gentoo.org> metadata.xml:
Add USE flag description to metadata wrt GLEP 56.
25 Jul 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.1.ebuild:
Another silent patchset bump, bunch of bugfixes, nothing bigish
17 Jul 2008; Andreas Proschofsky <suka@gentoo.org>
-files/2.4.0/ooo-env_log.diff, -files/2.4.0/gentoo-2.4.0.diff,
-openoffice-2.4.0.ebuild:
Remove old version
07 Jul 2008; Markus Meier <maekke@gentoo.org> openoffice-2.4.1.ebuild:
amd64 stable, bug #225723
20 Jun 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.1.ebuild:
Check for python built with threads USE flag, closes bug #227287
20 Jun 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.1.ebuild:
ooo-build patchset bump to 2.4.1.6, should also fix the randr-related
crash on exit, see bug #225853
12 Jun 2008; Brent Baude <ranger@gentoo.org> openoffice-2.4.1.ebuild:
Marking openoffice-2.4.1 ppc for bug 225723
11 Jun 2008; Christian Faulhammer <opfer@gentoo.org>
openoffice-2.4.1.ebuild:
stable x86, security bug 225723
*openoffice-2.4.1 (10 Jun 2008)
10 Jun 2008; Andreas Proschofsky <suka@gentoo.org>
-files/gentoo-2.4.1_rc2.diff, +files/gentoo-2.4.1.diff,
-openoffice-2.4.1_rc2.ebuild, +openoffice-2.4.1.ebuild:
OpenOffice.org 2.4.1 final release
*openoffice-2.4.1_rc2 (01 Jun 2008)
01 Jun 2008; Andreas Proschofsky <suka@gentoo.org>
-files/2.4.1_rc1/gentoo-2.4.1_rc1.diff, +files/gentoo-2.4.1_rc2.diff,
-files/2.4.1_rc1/ooo-env_log.diff, +files/ooo-env_log.diff,
-openoffice-2.4.1_rc1.ebuild, +openoffice-2.4.1_rc2.ebuild:
Bump to second release candidate for OOo 2.4.1
29 May 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.0.ebuild, openoffice-2.4.1_rc1.ebuild:
bison and flex are only build time dependencies (bugs #221317 and
#221581), also remove javaldx hack, shouldn't be necessary anymore
29 May 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.1_rc1.ebuild:
Fixup download of l10n-package in OOo 2.4.1_rc1
*openoffice-2.4.1_rc1 (27 May 2008)
27 May 2008; Andreas Proschofsky <suka@gentoo.org>
+files/2.4.1_rc1/ooo-env_log.diff, +files/2.4.1_rc1/gentoo-2.4.1_rc1.diff,
+openoffice-2.4.1_rc1.ebuild:
First release candidate for OpenOffice.org 2.4.1, masked for testing
23 May 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.0.ebuild:
Silent bump to ooo-build-2.4.0.13, minor bugfixes again. For instance
should solve the problems with broken java configurations (not being able
to change them)
09 May 2008; Andreas Proschofsky <suka@gentoo.org>
-files/2.3.1/regcompapply.diff, -files/2.3.1/gentoo-2.3.1-r1.diff,
-files/2.3.1/disable-regcomp-java.diff, -files/2.3.1/ooo-env_log.diff,
-files/2.3.1/stlport-ppc-buildfix.diff,
-files/2.3.1/disable-regcomp-python.diff,
-files/2.3.1/stlport-ppc-buildfix-apply.diff, -openoffice-2.3.1-r1.ebuild,
openoffice-2.4.0.ebuild:
Silent bump to ooo-build-2.4.0.10, only some minor bugfixes
28 Apr 2008; Tobias Scherbaum <dertobi123@gentoo.org>
openoffice-2.4.0.ebuild:
ppc stable, bug #218080
25 Apr 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.0.ebuild:
Silent bump to ooo-build-2.4.0.8, only some minor bugfixes
22 Apr 2008; Andreas Proschofsky <suka@gentoo.org> ChangeLog:
Bunch of bugfixes:
*) Introduce opengl-use-flag, otherwise OOo does not build without OpenGL,
see bug #218736 *) Force our branding again, original one results in black
splash screens for some, bug #218835 *) Try to fix javaldx troubles *)
Some cleanups to the ebuild
21 Apr 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.0.ebuild:
filter CFLAGS to prevent high mem-usage during the build, see bug #215291
for more information
20 Apr 2008; Markus Meier <maekke@gentoo.org> openoffice-2.4.0.ebuild:
amd64/x86 stable, security bug #218080
18 Apr 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.0.ebuild:
Re-enable fix for nvidia-cards, closes bug #214953, again
18 Apr 2008; Andreas Proschofsky <suka@gentoo.org>
files/2.4.0/gentoo-2.4.0.diff, openoffice-2.4.0.ebuild:
Silent bump to ooo-build 2.4.0.7, muchos bugfixes. Also reintroduce
branding use-flag and remove some cruft
15 Apr 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.0.ebuild:
Missed the bump to ooo-build-2.4.0.6 in the recent round of bug fixes,
thanks to Ingmar Vanhassel <ingmar@gentoo.org> for pointing this out.
15 Apr 2008; Andreas Proschofsky <suka@gentoo.org>
files/2.4.0/gentoo-2.4.0.diff, openoffice-2.4.0.ebuild:
Update to ooo-build-2.4.0.6 and fix a few bugs on the way. Notably: Build
problems with gcc 4.3 (bug #216205) and hardened (bug #215447). Also
support xulrunner-1.9 and prefer it over firefox.
28 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.0.ebuild:
Raise curl dependency, closes bug #215194
28 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
files/2.4.0/gentoo-2.4.0.diff:
Fix up patch, closes bug #215215
28 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.0.ebuild:
Bump to ooo-build 2.4.0.5, also add dependency on imagemagick
28 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.0.ebuild:
Fix up supported LINGUAS
27 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.0.ebuild:
Only check for pam in sys-apps/shadow if pam-use-flag is set, see bug
#215055
27 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.0.ebuild:
firefox-support also works with mozilla-firefox-bin at runtime, closes bug
#210278
*openoffice-2.4.0 (27 Mar 2008)
27 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
-files/2.4.0_rc5/gentoo-2.4.0_rc5.diff, +files/2.4.0/gentoo-2.4.0.diff,
+files/2.4.0/ooo-env_log.diff, -files/2.4.0_rc5/ooo-env_log.diff,
-openoffice-2.4.0_rc5.ebuild, +openoffice-2.4.0.ebuild:
OpenOffice.org 2.4.0 is released
26 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.0_rc5.ebuild:
Add -DGL_GLEXT_PROTOTYPES flag to prevent build breakage, see bug #214953
24 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.0_rc5.ebuild:
Fix unquoted variable and check if sys-apps/shadow is built with
pam-support if the pam use-flag is set, see bug #210870
24 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.3.1-r1.ebuild:
Build breaks with neon-0.28, adjust dependency accordingly, see bug
#214476
24 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.4.0_rc5.ebuild:
Small fix for configure
*openoffice-2.4.0_rc5 (23 Mar 2008)
23 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
+files/2.4.0_rc5/ooo-env_log.diff, +files/2.4.0_rc5/gentoo-2.4.0_rc5.diff,
+openoffice-2.4.0_rc5.ebuild:
Add release candidate for OpenOffice.org 2.4.0
21 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.3.1-r1.ebuild:
Fix kde dependency, closes bug #212740
17 Mar 2008; Raúl Porcel <armin76@gentoo.org> openoffice-2.3.1-r1.ebuild:
Fix deps for net-libs/xulrunner and www-client/mozilla-firefox
07 Mar 2008; Andreas Proschofsky <suka@gentoo.org>
-files/2.3.1/gentoo-2.3.1.diff,
-files/2.3.1/config_office-fix-system-icu-check.diff,
-openoffice-2.3.1.ebuild:
Remove vulnerable version from the tree
05 Mar 2008; <pva@gentoo.org> openoffice-2.3.1-r1.ebuild:
amd64 stable, bug #206889.
14 Feb 2008; Chris Gianelloni <wolf31o2@gentoo.org>
openoffice-2.3.1.ebuild:
Fix up variable quoting on the older 2.3.1 ebuild so repoman will shut up.
04 Feb 2008; Tobias Scherbaum <dertobi123@gentoo.org>
openoffice-2.3.1-r1.ebuild:
ppc stable, bug #206889
04 Feb 2008; Christian Faulhammer <opfer@gentoo.org>
openoffice-2.3.1-r1.ebuild:
quote variable
04 Feb 2008; Christian Faulhammer <opfer@gentoo.org>
openoffice-2.3.1-r1.ebuild:
stable x86, bug 206889
03 Feb 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.3.1-r1.ebuild:
Raise icu dependency for bug #208699
*openoffice-2.3.1-r1 (02 Feb 2008)
02 Feb 2008; Andreas Proschofsky <suka@gentoo.org>
+files/2.3.1/gentoo-2.3.1-r1.diff, +openoffice-2.3.1-r1.ebuild:
Revision bump for bug #208001, uses external icu again.
19 Jan 2008; Mark Loeser <halcy0n@gentoo.org> openoffice-2.3.1.ebuild:
package.use.mask mono on ppc instead of disabling it in the ebuild (bug
#202361)
12 Jan 2008; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.3.1.ebuild:
Silent bump to ooo-build-2.3.1.2, fixing a gnome-vfs related problem
14 Dec 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.3.1.ebuild:
Silent Bump to ooo-build-2.3.1.1, just some small bugfixes
09 Dec 2007; Samuli Suominen <drac@gentoo.org> openoffice-2.3.1.ebuild:
amd64 stable wrt #201168
06 Dec 2007; Andreas Proschofsky <suka@gentoo.org>
-files/2.3.0/disable-regcomp-java.diff,
-files/2.3.0/disable-regcomp-python.diff, -files/2.3.0/ooo-env_log.diff,
-files/2.3.0/stlport-ppc-buildfix.diff, -files/2.3.0/gentoo-2.3.0.diff,
-files/2.3.0/system-check-db-4.6.patch, -files/2.3.0/regcompapply.diff,
-files/2.3.0/stlport-ppc-buildfix-apply.diff, -openoffice-2.3.0.ebuild:
remove openoffice 2.3.0 for security bug #200771
06 Dec 2007; Tobias Scherbaum <dertobi123@gentoo.org>
openoffice-2.3.1.ebuild:
ppc stable, bug #200771
06 Dec 2007; Christian Faulhammer <opfer@gentoo.org>
openoffice-2.3.1.ebuild:
stable x86, security bug 200771
04 Dec 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.3.1.ebuild:
Remove useless STLport dependency
*openoffice-2.3.1 (04 Dec 2007)
04 Dec 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.3.1/config_office-fix-system-icu-check.diff,
+files/2.3.1/disable-regcomp-python.diff, +files/2.3.1/ooo-env_log.diff,
-files/2.3.1_rc1/disable-regcomp-java.diff,
+files/2.3.1/regcompapply.diff, -files/2.3.1_rc1/regcompapply.diff,
-files/2.3.1_rc1/gentoo-2.3.1_rc1.diff, +files/2.3.1/gentoo-2.3.1.diff,
+files/2.3.1/disable-regcomp-java.diff,
+files/2.3.1/stlport-ppc-buildfix.diff,
+files/2.3.1/stlport-ppc-buildfix-apply.diff,
-files/2.3.1_rc1/disable-regcomp-python.diff,
-files/2.3.1_rc1/ooo-env_log.diff,
-files/2.3.1_rc1/stlport-ppc-buildfix.diff,
-files/2.3.1_rc1/stlport-ppc-buildfix-apply.diff,
-openoffice-2.3.1_rc1.ebuild, +openoffice-2.3.1.ebuild:
New release: OpenOffice.org 2.3.1. This also uses internal icu again, as the
support for the external one is broken atm.
*openoffice-2.3.1_rc1 (02 Dec 2007)
02 Dec 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.3.1_rc1/regcompapply.diff,
+files/2.3.1_rc1/gentoo-2.3.1_rc1.diff,
+files/2.3.1_rc1/disable-regcomp-java.diff,
+files/2.3.1_rc1/ooo-env_log.diff,
+files/2.3.1_rc1/stlport-ppc-buildfix.diff,
+files/2.3.1_rc1/disable-regcomp-python.diff,
+files/2.3.1_rc1/stlport-ppc-buildfix-apply.diff, openoffice-2.3.0.ebuild,
+openoffice-2.3.1_rc1.ebuild:
Add masked release candidate for openoffice 2.3.1
21 Oct 2007; Andreas Proschofsky <suka@gentoo.org>
-files/2.2.1/ooo-env_log.diff, -files/2.2.1/gentoo-2.2.1.diff,
-files/2.2.1/disable-regcomp-java.diff,
-files/2.2.1/disable-regcomp-python.diff, -files/2.2.1/itiff.diff,
-files/2.2.1/regcompapply.diff, -files/2.2.1/gentoo-2.2.1-r1.diff,
-files/2.2.1/swregion-gcc42.diff, -files/2.2.1/ucb-no-CURL_NO_OLDIES.diff,
-openoffice-2.2.1-r1.ebuild:
Cleanup for security bug #192818
20 Oct 2007; Tobias Scherbaum <dertobi123@gentoo.org>
openoffice-2.3.0.ebuild:
ppc stable, bug #192818
19 Oct 2007; Andreas Proschofsky <suka@gentoo.org>
files/2.3.0/gentoo-2.3.0.diff, openoffice-2.3.0.ebuild:
Silent bump to ooo-build-2.3.0.5, some good fixes. This also drops the glib
dependency for the quickstarter for more info see here:
http://svn.gnome.org/viewvc/ooo-build/trunk/NEWS?revision=10529&view=markup
Also add some CFLAG-magic to help the ppc-build
11 Oct 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.3.0.ebuild:
Disable Mono-support for ppc, it's broken
11 Oct 2007; Andreas Proschofsky <suka@gentoo.org>
files/2.3.0/regcompapply.diff:
Redo the regcompapply patch as it obviously has been applied wrong recently,
resulting in the return of the build problems on ppc
10 Oct 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.3.0.ebuild:
Raise icu-dependency, see bug #195294
08 Oct 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.3.0.ebuild:
Another patchset bump, ooo-build-2.3.0.4
08 Oct 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.3.0.ebuild:
Add missing dependency for dev-perl/IO-Compress-Base, see bug #193858
08 Oct 2007; Andreas Proschofsky <suka@gentoo.org>
files/2.3.0/gentoo-2.3.0.diff, openoffice-2.3.0.ebuild:
Silent bump to ooo-build-2.3.0.3 with lots of bugfixes, see:
http://svn.gnome.org/viewcvs/ooo-build/trunk/NEWS?revision=10364&view=markup
for more information
*openoffice-2.2.1-r1 (21 Sep 2007)
21 Sep 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.2.1/itiff.diff, +files/2.2.1/gentoo-2.2.1-r1.diff,
+files/2.2.1/ucb-no-CURL_NO_OLDIES.diff, +openoffice-2.2.1-r1.ebuild:
Revision bump for 2.2.1 as we still have build problems on ppc. This
incorporates the security fix which is in 2.3.0
20 Sep 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.3.0/system-check-db-4.6.patch:
Add missing patch, oops, closes bug #193162
20 Sep 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.3.0.ebuild:
Raising dependency for nspr, see bug #177731, also support db-4.6, bug #191672
20 Sep 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.3.0.ebuild:
Fix mozilla stuff, see bug #192917
20 Sep 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.3.0/stlport-ppc-buildfix.diff,
+files/2.3.0/stlport-ppc-buildfix-apply.diff, openoffice-2.3.0.ebuild:
Trying to fix internal STLport build on ppc, see bug #193056
19 Sep 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.3.0.ebuild:
Add missing dependency on dev-util/gperf, see bug #193079
18 Sep 2007; Andreas Proschofsky <suka@gentoo.org>
files/2.3.0/gentoo-2.3.0.diff, openoffice-2.3.0.ebuild:
Update to newer ooo-build-snapshot. This fixes the problem of the wrong
version number on the splash, but mostly brings a few patches upstream.
*openoffice-2.3.0 (18 Sep 2007)
18 Sep 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.3.0/disable-regcomp-java.diff,
+files/2.3.0/disable-regcomp-python.diff, +files/2.3.0/ooo-env_log.diff,
+files/2.3.0/gentoo-2.3.0.diff, +files/2.3.0/regcompapply.diff,
+files/2.3.0/ucb-no-CURL_NO_OLDIES.diff, +openoffice-2.3.0.ebuild:
Bump to OpenOffice.org 2.3.0. Two minor notes: This uses internal STLport
again for now, as there were some build problems with the external one, also
this release forces our own splash screen, as the upstream one is broken.
19 Aug 2007; Andreas Proschofsky <suka@gentoo.org> ChangeLog:
Raise fontconfig dependency, see bug #187646
02 Aug 2007; Michael Sterrett <mr_bones_@gentoo.org>
openoffice-2.2.1.ebuild:
correct dbus deps (bug #187369)
08 Jul 2007; Michael Sterrett <mr_bones_@gentoo.org>
openoffice-2.2.1.ebuild:
remove reference to old, removed dbus (bug #183696)
07 Jul 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.2.1/swregion-gcc42.diff, files/2.2.1/gentoo-2.2.1.diff,
openoffice-2.2.1.ebuild:
Add a patch to fix text visibility problems when built with gcc 4.2, see bug
#184054
22 Jun 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.2.1.ebuild:
Fix some dependencies, see bug #182832
21 Jun 2007; Andreas Proschofsky <suka@gentoo.org>
files/2.2.1/gentoo-2.2.1.diff, openoffice-2.2.1.ebuild:
Silent bump to ooo-build-2.2.1, bunch of bugfixes. Also fix java bug #171274
16 Jun 2007; Andreas Proschofsky <suka@gentoo.org>
-files/2.1.0/detect-db4.5.diff, -files/2.1.0/disable-regcomp-python.diff,
-files/2.1.0/ooo-wrapper.in, -files/2.1.0/gentoo-2.1.0.diff,
-files/2.1.0/regcompapply.diff,
-files/2.1.0/ooo-build-2.1.6-hyperlinks-quotes.diff,
-files/2.1.0/wrapper-readd.diff,
-files/2.1.0/ooo-build-2.1.6-starcalc-file-format-parser-2.2.diff,
-files/2.2.0/disable-regcomp-java.diff,
-files/2.1.0/disable-regcomp-java.diff,
-files/2.2.0/disable-regcomp-python.diff, -files/2.2.0/ooo-env_log.diff,
-files/2.2.0/gentoo-2.2.0.diff, -files/2.2.0/regcompapply.diff,
-openoffice-2.1.0-r1.ebuild, -openoffice-2.2.0.ebuild:
Remove vulnerable ebuilds for security bug #181921
16 Jun 2007; Tobias Scherbaum <dertobi123@gentoo.org>
openoffice-2.2.1.ebuild:
ppc stable, bug #181921
16 Jun 2007; Christian Faulhammer <opfer@gentoo.org>
openoffice-2.2.1.ebuild:
stable x86, security bug 181921
15 Jun 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.2.1.ebuild:
Fix classpath statement for other libdirs
15 Jun 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.2.1.ebuild:
Don't download the libwpd-tarball, we use the external package...
*openoffice-2.2.1 (12 Jun 2007)
12 Jun 2007; Andreas Proschofsky <suka@gentoo.org>
+files/2.2.1/disable-regcomp-java.diff,
+files/2.2.1/disable-regcomp-python.diff, +files/2.2.1/ooo-env_log.diff,
+files/2.2.1/gentoo-2.2.1.diff, +files/2.2.1/regcompapply.diff,
+openoffice-2.2.1.ebuild:
Update to OpenOffice.org 2.2.1, this is a bugfix release, so no new features
to see
07 Jun 2007; Andreas Proschofsky <suka@gentoo.org>
openoffice-2.2.0.ebuild:
Patchset update to ooo-build-2.2.0.2, this adds an WPG-Import filter and
fixes some bugs
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.
|