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
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
|
#!/usr/bin/make -f
################################################################################
# LibreOffice source package rules file
#
# Please see debian/README for detailed documentation about the build system, and
# how to build LibreOffice.
################################################################################
# Authors:
# Chris Halls <halls@debian.org>
# Rene Engelhard <rene@debian.org>
# Copyright 2002-2015 Software in the Public Interest, Inc.
# Portions Copyright 2010 Canonical Ltd. Author: Matthias Klose
# Portions Copyright 2011-2013 Canonical Ltd. Author: Bjoern Michaelsen
# Licensed under the GNU General Public License, version 2. See the file
# /usr/share/common-licenses/GPL or <http://www.gnu.org/copyleft/gpl.txt>.
################################################################################
vafilt = $(subst $(2)=,,$(filter $(2)=%,$(1)))
include /usr/share/dpkg/pkg-info.mk
CURDIR ?= $(realpath $(dir $(firstword $(MAKEFILE_LIST)))/..)
BASE_VERSION:=$(shell echo $(DEB_VERSION) | cut -d: -f1):$(DEB_VERSION_UPSTREAM)
BINARY_VERSION=$(DEB_VERSION)
#HELP_L10N_VIRTUAL_VERSION:=$(shell echo $(DEB_VERSION_UPSTREAM) | cut -d: -f2 | tr [~] [\\-])
HELP_L10N_VIRTUAL_VERSION:=5.3
OOVER:=5.3
NEXT_OOVER:=$(shell echo "$(OOVER) + 0.1" | bc)
ARCH_INDEP_PACKAGES := $(shell dh_listpackages -i)
ARCH_DEP_PACKAGES := $(shell dh_listpackages -a)
PACKAGES := $(ARCH_INDEP_PACKAGES) $(ARCH_DEP_PACKAGES)
include /usr/share/dpkg/architecture.mk
include /usr/share/dpkg/vendor.mk
SHELL:=/bin/bash
export gb_SHELL:=$(SHELL)
#SYSTEM_GCC_VERSION = $(shell gcc --version | sed -n '/^gcc/s/.*\(.\..\)\..$$/\1/p')
#FIXME
SYSTEM_GCC_VERSION = $(shell gcc --version | sed -n '/^gcc/s/.*\(.\..\)\../\1/p' | cut -d" " -f1)
SYSTEM_GCJ_VERSION = $(shell basename `readlink /usr/lib/jvm/java-gcj/bin/gcj` | sed -e s/gcj-// | sed -e s/$(DEB_HOST_MULTIARCH)-//)
PKGDIR:=debian/libreoffice
OODIRNAME=libreoffice
OODIR:=usr/lib/$(OODIRNAME)
OOSDKDIR:=$(OODIR)/sdk
# Figure out who's building this package.
OOO_VENDOR:=The Document Foundation/Debian
ifeq "$(DEB_VENDOR)" "Ubuntu"
OOO_VENDOR=The Document Foundation, Debian and Ubuntu
endif
export OOO_VENDOR
# debhelper
export DH_OPTIONS
export DH_ALWAYS_EXCLUDE=CVS:.svn:.bzr:.git
#export DH_VERBOSE=1
# quilt
export QUILT_PATCHES=debian/patches
export QUILT_OPTIONS="-p1 -F0"
SOURCE_TREE=.
STAMP_DIR=debian/stampdir
TARFILE_LOCATION=$(CURDIR)/src
export TARFILE_LOCATION
USE_SOURCE_TARBALLS=n
USE_GIT_TARBALLS=n
ifeq "$(USE_GIT_TARBALLS)" "y"
GIT_BASEURL:=git://anongit.freedesktop.org/libreoffice
# bootstraping this from the source tree is breaking get-orig-source
#lo_sources_ver=$(shell grep AC_INIT $(SOURCE_TREE)/configure.ac | grep documentfoundation | cut -d, -f2 | sed -e 's,\[,,' -e 's,\],,')
lo_sources_ver=5.3.0.1
# NOT in proper libreoffice-3-6 branch
# use ./g checkout -b tag-libreoffice-3.6.2.1 libreoffice-3.6.2.1
GIT_TAG=libreoffice-$(lo_sources_ver)
GIT_BRANCH=libreoffice-5-3-0
endif
ifeq "$(USE_SOURCE_TARBALLS)" "y"
lo_sources_ver=$(shell cat $(CURDIR)/sources.ver | cut -d= -f2)
endif
#########
# Default package configuration
#
OOO_ARCHS = alpha amd64 arm64 armel armhf hppa i386 ia64 kfreebsd-amd64 kfreebsd-i386 m68k mips mipsel mips64 mips64el powerpc powerpcspe ppc64 ppc64el s390 s390x sparc sparc64
PATCHSET=$(DEB_VENDOR)
BUILD_DEPS=\
autoconf,\
automake,\
bc,\
bison,\
bzip2,\
fastjar,\
flex (>= 2.3.35), \
gperf,\
libc0.1 (>= 2.10.2-7) [kfreebsd-any],\
libcups2-dev,\
libfontconfig1-dev,\
libfreetype6-dev (>= 2.2.0),\
libgl1-mesa-dev,\
libice-dev,\
libsm-dev,\
libx11-dev,\
libxaw7-dev,\
libxext-dev,\
libxinerama-dev,\
libxkbfile-dev,\
libxrender-dev,\
libxt-dev,\
libxtst-dev,\
pkg-config,\
unzip,\
x11proto-render-dev,\
xsltproc,\
zip,\
zlib1g-dev\
CHECKTARGET:=check
# These are components which can be built from internal copies, or used from the
# distribution. See configure --help for valid values (--with-system-<value>).
SYSTEM_STUFF = dicts
ENABLE_PYTHON=y
ifeq "$(ENABLE_PYTHON)" "y"
ENABLE_SCRIPT_PROVIDER_PYTHON=y
PACKAGE_LIBRELOGO=y
endif
# THIS IS ONLY FOR TESTING. When building against a specified pythonX.Y
# this will work inside OOo but *not* from outside OOo unless the user
# uses pythonX.Y directly (and the dh_pycentral-created dependencies allow
# also the non-working default python then) - see e.g. #587402. Also
# note we are NOT working with python < 2.6 anymore!
PYTHON_VERSION=current
ifeq "$(PYTHON_VERSION)" "current"
PYTHON=python3
export PYTHON=python3
else
PYTHON=python$(PYTHON_VERSION)
export PYTHON=python$(PYTHON_VERSION)
endif
PACKAGE_TTF_OPENSYMBOL=y
BUILD_ONLY_EN_US=n
ENABLE_JAVA=y
ifeq "$(ENABLE_JAVA)" "y"
JDK=default
include /usr/share/java/java_defaults.mk
ifneq "$(JDK)" "default"
JAVA_MAINVER=7
endif
endif
JAVAHELPER_MIN_VERSION= (>= 0.37~)
SYSTEM_STUFF += hunspell
HUNSPELL_MIN_VER= (>= 1.1.5-2)
SYSTEM_STUFF += altlinuxhyph
USE_LIBHYPHEN=y
LIBALTLINUXHYPH_MINVER= (>= 0.1.1-11)
LIBHYPHEN_MINVER= (>= 2.4)
SYSTEM_STUFF += boost
BOOST_VERSION=default
ifeq "$(BOOST_VERSION)" "default"
ifeq "$(shell dpkg --compare-versions $(SYSTEM_GCC_VERSION) ge 5 && echo true)" "true"
BOOST_MINVER= (>= 1.58)
else
BOOST_MINVER= (>= 1.55)
endif
endif
SYSTEM_STUFF += mdds
USE_EXTERNAL_CXXLIBS=y
SYSTEM_STUFF += mythes
SYSTEM_STUFF += icu
ICU_MINVER= (>= 52)
SYSTEM_STUFF += librevenge
SYSTEM_STUFF += libwpd libwpg libwps
SYSTEM_STUFF += libvisio
SYSTEM_STUFF += libcdr
SYSTEM_STUFF += libmspub
SYSTEM_STUFF += libmwaw
SYSTEM_STUFF += libodfgen
SYSTEM_STUFF += libetonyek
SYSTEM_STUFF += libfreehand
# this is libe-book, NOT evolutions libebook (which is
# dlopen()'ed anyway and whose headers we need from the
# system anyways if enabled
SYSTEM_STUFF += libebook
SYSTEM_STUFF += libabw
SYSTEM_STUFF += libpagemaker
SYSTEM_STUFF += libzmf
SYSTEM_STUFF += libstaroffice
BUILD_CAIROCANVAS=y
SYSTEM_STUFF += cairo
CAIRO_FONTS_PATCH=y
BUILD_KDE=y
# < 4.8 fails with gcc 4.7, see #667911
QT_MINVER= (>= 4:4.8)
KDELIBS_MINVER= (>= 4:4.3.4)
ifneq (noddebs,$(findstring noddebs,$(DEB_BUILD_OPTIONS)))
BUILD_DBGSYM_PACKAGES=y
endif
# this changes the packages' built/contents of packages (-subsequentcheckbase)
# This is not exactly allowed in policy but it doesn't have real practical difference,
# does it?
ifneq (nocheck,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
BUILD_TEST_PACKAGE=y
endif
ifeq "$(shell echo $(BUILD_DBGSYM_PACKAGES) | grep -q y && echo true)" "true"
ENABLE_SYMBOLS=y
SMALL_SYMBOLS=y
endif
ifeq "$(ENABLE_JAVA)" "y"
SYSTEM_STUFF += beanshell
SYSTEM_STUFF += hsqldb
HSQLDB_MINVER= (>> 1.8.0.10)
HSQLDB_TOONEWVER=1.8.1
HSQLDB_JAR=/usr/share/java/hsqldb1.8.0.jar
endif
SYSTEM_STUFF += lpsolve
USE_SHARED_LPSOLVE=y
LPSOLVE_MIN_VERSION= (>= 5.5.0.13-5+b1)
ENABLE_COINMP=y
SYSTEM_STUFF += coinmp
ifeq "$(shell dpkg --compare-versions $(SYSTEM_GCC_VERSION) ge 5 && echo true)" "true"
COINMP_MINVER=(>= 1.7.6+dfsg1-2)
COINUTILS_MINVER=(>= 2.9.15-3.1)
else
COINMP_MINVER=
COINUTILS_MINVER=
endif
USE_DBUS=y
ifeq "$(USE_DBUS)" "y"
ifeq (,$(findstring linux,$(DEB_HOST_ARCH_OS)))
ENABLE_BLUETOOTH=n
else
ENABLE_BLUETOOTH=y
SYSTEM_STUFF += bluez
endif
endif
ENABLE_AVAHI=n
USE_GSTREAMER=y
USE_VLC=y
ENABLE_WEBDAV=y
ifeq "$(ENABLE_WEBDAV)" "y"
WEBDAV_LIB=neon
ifeq "$(WEBDAV_LIB)" "neon"
SYSTEM_STUFF += neon
NEON_SECTYPE=gnutls
NEONSONR=27
else
SYSTEM_STUFF += apr
SYSTEM_STUFF += serf
endif
endif
SYSTEM_STUFF += redland
PACKAGE_SDK=y
ifneq ($(filter nodoc,$(DEB_BUILD_PROFILES)),)
PACKAGE_SDK_DOCS=n
else
PACKAGE_SDK_DOCS=y
endif
PACKAGE_LOKIT=y
ifeq "$(ENABLE_JAVA)" "y"
ifeq "$(JDK)" "default"
ifeq "$(shell LANG=C /usr/lib/jvm/default-java/bin/java -version 2>&1 | tail -n 1 | awk '{ print $$1 }')" "OpenJDK"
RUN_MAKE_CHECK=y
ifeq "$(DEB_HOST_ARCH)" "i386"
ENABLE_JUNIT4=y
endif
ifeq "$(DEB_HOST_ARCH)" "amd64"
ENABLE_JUNIT4=y
endif
ENABLE_EXPORT_VALIDATION_TESTS=n
endif
else
ifeq "$(JDK)" "openjdk"
RUN_MAKE_CHECK=y
ifeq "$(DEB_HOST_ARCH)" "i386"
ENABLE_JUNIT4=y
endif
ifeq "$(DEB_HOST_ARCH)" "amd64"
ENABLE_JUNIT4=y
endif
ENABLE_EXPORT_VALIDATION_TESTS=n
else
RUN_MAKE_CHECK=n
ENABLE_JUNIT4=n
RUN_PYTESTS=n
ENABLE_EXPORT_VALIDATION_TESTS=n
BUILD_TEST_PACKAGE=n
endif
endif
RUN_PYTESTS=y
# ifneq (,$(findstring arm,$(DEB_HOST_ARCH)))
# export DISABLE_CVE_TESTS=TRUE
# endif
# ifneq (,$(findstring powerpc,$(DEB_HOST_ARCH)))
# export DISABLE_CVE_TESTS=TRUE
# endif
# ifneq (,$(findstring ppc,$(DEB_HOST_ARCH)))
# export DISABLE_CVE_TESTS=TRUE
# endif
# ifneq (,$(findstring s390,$(DEB_HOST_ARCH)))
# export DISABLE_CVE_TESTS=TRUE
# endif
ifneq (,$(findstring kfreebsd-amd64,$(DEB_HOST_ARCH)))
export RUN_MAKE_CHECK=n
endif
ifneq (,$(findstring kfreebsd-i386,$(DEB_HOST_ARCH)))
export RUN_MAKE_CHECK=n
endif
ifneq (,$(findstring sparc64,$(DEB_HOST_ARCH)))
export RUN_MAKE_CHECK=n
endif
else
RUN_MAKE_CHECK=n
ENABLE_JUNIT4=n
ENABLE_EXPORT_VALIDATION_TESTS=n
BUILD_TEST_PACKAGE=n
endif
ifeq "$(ENABLE_JUNIT4)" "y"
JUNIT_MIN_VER= (>= 4.8.2-2)
endif
USE_LIBCURL4=y
CURL_SECTYPE=gnutls
USE_LIBSUITESPARSE=y
SUITESPARSE_MIN_VERSION= (>= 1:3.4.0)
PARALLEL_BUILD=y
ENABLE_LDAP=y
USE_OPENLDAP=y
SYSTEM_STUFF += epoxy
ENABLE_GLTF=y
SYSTEM_STUFF += libgltf
LIBGLTF_MINVER=0.1.0
# I think we should only enable it when we have BOTH system-opencollasa
# and system-collada2gltf working
ifeq "$(ENABLE_GLTF)" "y"
ENABLE_COLLADA=n
# enable COLLADA (if any) only on i386/amd64 for now, rapidjson does seem
# to have alignment problems on other archs (e.g. arm*)
ifeq "$(DEB_HOST_ARCH)" "amd64"
ENABLE_COLLADA=y
endif
ifeq "$(DEB_HOST_ARCH)" "i386"
ENABLE_COLLADA=y
endif
ifeq "$(ENABLE_COLLADA)" "y"
SYSTEM_STUFF += opencollada
OPENCOLLADA_CFLAGS="-I/usr/include/opencollada/COLLADABaseUtils -I/usr/include/opencollada/COLLADAFramework -I/usr/include/opencollada/COLLADASaxFrameworkLoader -I/usr/include/opencollada/GeneratedSaxParser -I/usr/include/opencollada"
OPENCOLLADA_LIBS="-L/usr/lib/opencollada -lUTF -lOpenCOLLADABaseUtils -lOpenCOLLADAFramework -lOpenCOLLADASaxFrameworkLoader -lGeneratedSaxParser -lMathMLSolver -lpcre"
SYSTEM_STUFF += collada2gltf
COLLADA2GLTF_CFLAGS="-I/usr/include/collada2gltf -I/usr/include/collada2gltf/JSON -I/usr/include/collada2gltf/GLTF -I/usr/include/collada2gltf/helpers -I/usr/include/collada2gltf/assetModifiers -I/usr/include/rapidjson"
COLLADA2GLTF_LIBS="-lcollada2gltfConvert -lo3dgc_common_lib -lo3dgc_dec_lib -lo3dgc_enc_lib"
endif
ifeq "$(shell dpkg --compare-versions $(SYSTEM_GCC_VERSION) ge 5 && echo true)" "true"
OPENCOLLADA_MINVER=(>= 0.1.0~20140703.ddf8f47+dfsg1-2)
else
OPENCOLLADA_MINVER=
endif
ifeq "$(shell dpkg --compare-versions $(SYSTEM_GCC_VERSION) ge 5 && echo true)" "true"
COLLADA2GLTF_MINVER=(>= 20140924-2)
else
COLLADA2GLTF_MINVER=
endif
endif
ifeq "$(ENABLE_JAVA)" "y"
ENABLE_REPORTDESIGN=y
SYSTEM_STUFF += jfreereport
ENABLE_MEDIAWIKI=y
SYSTEM_STUFF += apache-commons
ENABLE_SCRIPT_PROVIDER_BSH=y
ENABLE_SCRIPT_PROVIDER_JS=y
ENABLE_NLPSOLVER=y
else
ENABLE_REPORTDESIGN=n
ENABLE_MEDIAWIKI=n
ENABLE_SCRIPT_PROVIDER_BSH=n
ENABLE_SCRIPT_PROVIDER_JS=n
ENABLE_NLPSOLVER=n
endif
ENABLE_SDBC_POSTGRESQL=y
BUILD_GTK=y
ENABLE_SYSTRAY=y
#ifeq "$(DEB_DISTRIBUTION)" "experimental"
BUILD_GTK3=y
#endif
ifeq "$(BUILD_GTK3)" "y"
ENABLE_INTROSPECTION=y
endif
ENABLE_EVO2=y
ENABLE_GCONF=y
ENABLE_GIO=y
ENABLE_RANDR=y
PACKAGE_BASE=y
SYSTEM_STUFF += graphite
SYSTEM_STUFF += harfbuzz
ALLOC=system
SYSTEM_STUFF += libexttextcat
SYSTEM_STUFF += cppunit
ifeq "$(shell dpkg --compare-versions $(SYSTEM_GCC_VERSION) ge 5 && echo true)" "true"
CPPUNIT_MINVER=1.13.2-2.1
else
CPPUNIT_MINVER=0.12
endif
IMAGES:=galaxy hicontrast oxygen tango sifr breeze breeze_dark elementary
ENABLE_MYSQLNATIVE=y
MYSQL_FLAVOUR=default
# set this also to y for system-mysql..
SYSTEM_STUFF += mariadb
SYSTEM_STUFF += mysql-cppconn
ifeq "$(shell dpkg --compare-versions $(SYSTEM_GCC_VERSION) ge 5 && echo true)" "true"
MYSQLCPPCONN_MINVER= (>= 1.1.7-4)
else
MYSQLCPPCONN_MINVER= (>= 1.1.0~r791)
endif
SYSTEM_STUFF += postgresql
DICT_DIR=/usr/share/hunspell
HYPH_DIR=/usr/share/hyphen
THES_DIR=/usr/share/mythes
SYSTEM_STUFF += libcmis
ifeq "$(shell dpkg --compare-versions $(SYSTEM_GCC_VERSION) ge 5 && echo true)" "true"
LIBCMIS_MINVER=0.5.0-3ubuntu1
else
LIBCMIS_MINVER=0.5.0
endif
ifeq "$(DEB_VENDOR)" "Debian"
# chromium only available here.
ifeq "$(DEB_HOST_ARCH)" "amd64"
ENABLE_GDRIVE=y
endif
ifeq "$(DEB_HOST_ARCH)" "i386"
ENABLE_GDRIVE=y
endif
ifeq "$(DEB_HOST_ARCH)" "arm64"
ENABLE_GDRIVE=y
endif
ifeq "$(DEB_HOST_ARCH)" "armhf"
ENABLE_GDRIVE=y
endif
OOO_GDRIVE_ARCHS += i386 amd64 armhf arm64
endif
SYSTEM_STUFF += jpeg
SYSTEM_STUFF += libxml
SYSTEM_STUFF += expat
SYSTEM_STUFF += odbc
SYSTEM_STUFF += curl
SYSTEM_STUFF += sane
SYSTEM_STUFF += poppler
SYSTEM_STUFF += libpng
SYSTEM_STUFF += nss
ENABLE_HELP=y
ifeq "$(ENABLE_HELP)" "y"
SYSTEM_STUFF += clucene
ifeq "$(shell dpkg --compare-versions $(SYSTEM_GCC_VERSION) ge 5 && echo true)" "true"
CLUCENE_MINVER=2.3.3.4-4.1
else
CLUCENE_MINVER=2.3.3.4-2
endif
endif
SYSTEM_STUFF += lcms2
SYSTEM_STUFF += openldap
PACKAGE_UNOWINREG_DLL=y
ifeq "$(DEB_VENDOR)" "Debian"
BUILD_UNOWINREG_DLL=y
endif
FAKEROOT_LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH)/libfakeroot
# upstream says: "it's 'highly experimental'", I wouldn't enable it for
# distros"
ENABLE_TELEPATHY=n
ENABLE_LIBLANGTAG=y
SYSTEM_STUFF += liblangtag
ENABLE_ORCUS=y
SYSTEM_STUFF += orcus
LIBORCUS_MINVER=0.12
USE_UCPP=y
ifeq "$(USE_UCPP)" "y"
SYSTEM_STUFF += ucpp
endif
ifeq (,$(findstring kfreebsd,$(DEB_HOST_ARCH)))
ENABLE_MERGELIBS=y
endif
ENABLE_LTO=n
USE_OPENCL=y
#10:15 <@_rene_> ahunt: I remember you wanted to do some endian things? did it
# ever get done?
#10:15 -!- xrmx [~rm@2-228-255-178.ip194.fastwebnet.it] has joined
# #libreoffice-dev
#10:15 <@_rene_> ahunt: for firebird sdbc that is
#10:15 -!- xrmx [~rm@2-228-255-178.ip194.fastwebnet.it] has quit [Changing host]
#10:15 -!- xrmx [~rm@unaffiliated/xrmx] has joined #libreoffice-dev
#10:15 <@_rene_> because I just remember I still have
#https://buildd.debian.org/status/fetch.php?pkg=libreoffice&arch=powerpc&ver=1%3
#
#10:16 < ahunt> _rene_: Not yet -- I still need to get round to actually
# debugging within firebird itself to make it work.
#10:16 < ahunt> _rene_: Yup, basically we're not endian portable yet.
#10:16 <@_rene_> An uncaught exception of type com.sun.star.sdbc.SQLException
#10:16 <@_rene_> - firebird_sdbc error:
#10:16 <@_rene_> *unsupported on-disk structure for file
# /tmp/lu4va82l.tmp/firebird.fdb; found 2
#10:16 <@_rene_> 944.512, support 11.2
#10:16 < xrmx> morning
#10:16 <@_rene_> aha, so disable firebird on be?
#10:16 <@_rene_> (for now)
#10:16 < Safa_[A_boy]> Hello. About converting dialogs to .ui files, What about
# wizards?
#10:17 < ahunt> _rene_: yes, unfortunately.
ENABLE_FIREBIRD=y
ifeq "$(DEB_HOST_ARCH_ENDIAN)" "big"
ENABLE_FIREBIRD=n
endif
ifeq "$(ENABLE_FIREBIRD)" "y"
SYSTEM_STUFF += firebird
ifeq (,$(filter firebird, $(SYSTEM_STUFF)))
SYSTEM_STUFF += libatomic-ops
SYSTEM_STUFF += libtommath
endif
endif
ENABLE_EOT=y
ifeq "$(ENABLE_EOT)" "y"
SYSTEM_STUFF += libeot
endif
SYSTEM_STUFF += glm
BUILD_PPC64EL=y
BUILD_ARM64=y
# Default flags to pass to configure
CONFIGURE_FLAGS= \
--with-vendor='$(OOO_VENDOR)' \
--with-build-version='$(shell dpkg-parsechangelog |grep "^Version:" |cut -f2 -d\ )' \
--prefix=/usr --mandir=/usr/share/man \
--docdir=/usr/share/doc/libreoffice \
--libdir=/usr/lib \
--host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
--disable-online-update \
--disable-fetch-external \
--disable-gstreamer-0-10 \
--without-fonts \
--without-myspell-dicts \
--with-branding=$(CURDIR)/debian/branding
CONFIGURE_FLAGS_INDEP=
ifeq "$(ENABLE_HELP)" "y"
CONFIGURE_FLAGS_INDEP+= --with-help
endif
CONFIGURE_FLAGS_INDEP=
ifeq "$(shell echo $(DEB_VERSION_UPSTREAM) | grep -E '(alpha|beta)'; echo $$?)" "1"
CONFIGURE_FLAGS += --enable-release-build
RELEASE_BUILD := y
endif
ifeq "$(shell dpkg-parsechangelog | grep urgency | grep -q UNRELEASED && echo true)" "true"
CONFIGURE_FLAGS += --disable-dependency-tracking
endif
export verbose=t
CONFIGURE_FLAGS += --with-alloc=$(ALLOC)
#############
# Architecture-specific changes
# helper to generate no_archs macros (pass name of source macro)
define gen_no_archs
_no_arch_macro = $(subst OOO_,OOO_NO_,$1)
_no_arch_tmp_$1 = $$(foreach _a,$$(filter-out $$(call $1),$(OOO_ARCHS)),!$$(_a))
$$(_no_arch_macro) = $$(if $$(_no_arch_tmp_$1),$$(_empty) [$$(_no_arch_tmp_$1)])
endef
PLATFORMID := $(shell grep PLATFORMID debian/vars.$(DEB_HOST_ARCH) | cut -d"=" -f2)
ifeq "$(ENABLE_GLTF)" "y"
OOO_COLLADA_ARCHS=amd64 i386
$(eval $(call gen_no_archs,OOO_COLLADA_ARCHS))
endif
IGNORE_MAKE_CHECK_FAILURES=-
ifeq (i386,$(DEB_HOST_ARCH))
IGNORE_MAKE_CHECK_FAILURES:=
endif
ifeq (amd64,$(DEB_HOST_ARCH))
IGNORE_MAKE_CHECK_FAILURES:=
endif
OOO_64BIT_ARCHS = $(filter alpha amd64 arm64 ia64 kfreebsd-amd64 mips64 mips64el ppc64 ppc64el s390x sparc64, $(OOO_ARCHS))
$(eval $(call gen_no_archs,OOO_64BIT_ARCHS))
OOO_BE_ARCHS = $(filter hppa m68k mips mips64 powerpc powerpcspe ppc64 s390 s390x sparc sparc64,$(OOO_ARCHS))
OOO_LE_ARCHS = $(filter-out $(OOO_BE_ARCHS),$(OOO_ARCHS))
$(eval $(call gen_no_archs,OOO_LE_ARCHS))
# Java...
ifeq "$(JDK)" "default"
OOO_JAVA_ARCHS = $(filter $(OOO_ARCHS),$(java6_architectures))
else
OOO_JAVA_ARCHS = $(OOO_ARCHS)
endif
$(eval $(call gen_no_archs,OOO_JAVA_ARCHS))
OOO_ARCH_DEP_EXTENSIONS_ARCHS := $(OOO_ARCHS)
OOO_EXTENSIONS_ARCHS := $(OOO_ARCH_DEP_EXTENSIONS_ARCHS)
OOO_BASE_ARCHS := $(OOO_JAVA_ARCHS)
$(eval $(call gen_no_archs,OOO_BASE_ARCHS))
OOO_REPORTDESIGN_ARCHS := $(OOO_BASE_ARCHS)
$(eval $(call gen_no_archs,OOO_REPORTDESIGN_ARCHS))
OOO_CHECK_ARCHS := $(filter-out kfreebsd-i386 kfreebsd-amd64 sparc64,$(OOO_ARCHS))
$(eval $(call gen_no_archs,OOO_CHECK_ARCHS))
ifneq (,$(findstring $(DEB_HOST_ARCH),$(OOO_NO_BASE_ARCHS)))
ifneq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH),$(OOO_BASE_ARCHS)))
PACKAGE_BASE=n
ENABLE_SDBC_POSTGRESQL=n
ENABLE_MYSQLNATIVE=n
ENABLE_EVO2=n
ENABLE_REPORTDESIGN=n
DEBHELPER_OPTIONS += -Nlibreoffice-base libreoffice-base-core -Nlibreoffice-base-drivers
DEBHELPER_OPTIONS += -Nlibreoffice-evolution -Nlibreoffice-kab
DEBHELPER_OPTIONS += -Nlibreoffice-sdbc-postgresql -Nlibreoffice-mysql-connector
DEBHELPER_OPTIONS += -Nlibreoffice-sdbc-hsqldb -Nlibreoffice-sdbc-firebird
DEBHELPER_OPTIONS += -Nlibreoffice-report-builder-bin -Nlibreoffice-report-builder
CONFIGURE_FLAGS += --disable-database-connectivity
endif
endif
ifneq ($(ENABLE_FIREBIRD),y)
DEBHELPER_OPTIONS += -Nlibreoffice-sdbc-firebird
endif
ifeq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH),$(OOO_BE_ARCHS)))
ENABLE_FIREBIRD=n
DEBHELPER_OPTIONS += -Nlibreoffice-sdbc-firebird
endif
ifeq (,$(findstring $(DEB_HOST_ARCH),$(OOO_ARCH_DEP_EXTENSIONS_ARCHS)))
ENABLE_MYSQLNATIVE=n
DEBHELPER_OPTIONS += -Nlibreoffice-mysql-connector
DEBHELPER_OPTIONS += -Nlibreoffice-presentation-minimizer
endif
ifeq (,$(findstring $(DEB_HOST_ARCH),$(OOO_EXTENSIONS_ARCHS)))
ENABLE_MEDIAWIKI=n
ENABLE_REPORTDESIGN=n
ENABLE_NLPSOLVER=n
DEBHELPER_OPTIONS += -Nlibreoffice-wiki-publisher -Nlibreoffice-script-provider-python -Nlibreoffice-nlpsolver
CONFIGURE_FLAGS += --disable-extension-integration --disable-extensions
else
CONFIGURE_FLAGS += --enable-extension-integration
endif
ifeq (,$(filter $(DEB_HOST_ARCH),$(OOO_JAVA_ARCHS)))
ENABLE_JAVA=n
ENABLE_REPORTDESIGN=n
ENABLE_MEDIAWIKI=n
ENABLE_NLPSOLVER=n
DEBHELPER_OPTIONS += -Nlibreoffice-wiki-publisher
DEBHELPER_OPTIONS += -Nlibreoffice-report-builder-bin -Nlibreoffice-report-builder
DEBHELPER_OPTIONS += -Nlibreoffice-nlpsolver
endif
# disable SRB on ia64 when building with internal jfreereport.
# fails to build. ("The system is out of resources."). FIXME.
ifeq (ia64,$(findstring ia64,$(OOO_OPENJDK_ARCHS)))
ifeq (,$(findstring jfreereport,$(SYSTEM_STUFF)))
OOO_REPORTDESIGN_ARCHS := $(filter-out ia64,$(OOO_REPORTDESIGN_ARCHS))
ifeq "$(DEB_HOST_ARCH)" "ia64"
ENABLE_REPORTDESIGN=n
endif
endif
endif
ifeq "$(BUILD_TEST_PACKAGE)" "n"
DEBHELPER_OPTIONS += -Nlibreoffice-subsequentcheckbase
endif
ifneq (,$(findstring mips, $(OOO_ARCHS)))
BUILD_DEPS += , binutils (>= 2.23) [mips mipsel], libc6 (>= 2.17-6) [mips mipsel]
endif
#############
# Distro-specific overrides
# Debian Stretch
ifeq "$(shell dpkg-parsechangelog | grep Distribution | awk '{ print $$2 }')" "stretch-backports"
BUGS=mailto:debian-backports@lists.debian.org
SYSTEM_STUFF := $(filter-out libzmf libstaroffice orcus libgltf,$(SYSTEM_STUFF))
STRETCH_BACKPORT=y
endif
ifeq "$(shell dpkg-parsechangelog | grep Distribution | awk '{ print $$2 }')" "UNRELEASED"
BUGS=mailto:debian-openoffice@lists.debian.org
endif
ifeq "$(DEB_VENDOR)" "Ubuntu"
# Set up Google API keys, see http://www.chromium.org/developers/how-tos/api-keys .
# Note: these are for Ubuntu use ONLY. For your own distribution,
# please get your own set of keys.
# Permission to add API keys, from Paweł Hajdan, To chad.miller@canonical.com
# msgid: CAADNaOFSFoch68NM1SGpCTRXqmspyKQgUPUtsF7SGRsRXiHZcg@mail.gmail.com
# reused from chromium-browser 48.0.2564.82-0ubuntu1.1222
GOOGLEAPI_APIKEY_UBUNTU := AIzaSyDDiKg-iNf3zW2j16KDsnSDnJJAgh4TnCc
GOOGLEAPI_CLIENTID_UBUNTU := 424119844901-gee57209rkbo1rgula4i0arilvgv3lsf.apps.googleusercontent.com
GOOGLEAPI_CLIENTSECRET_UBUNTU := 3h1DknIrVsq2wEhIuADVxQ3E
CONFIGURE_FLAGS += --with-gdrive-client-id=$(GOOGLEAPI_CLIENTID_UBUNTU) --with-gdrive-client-secret=$(GOOGLEAPI_CLIENTSECRET_UBUNTU)
CONFIGURE_FLAGS_INDEP+= --with-theme="$(IMAGES)"
ENABLE_FIREBIRD=n
# lp#1034560: MIR troubles make it easier to use internal jfreereport
SYSTEM_STUFF := $(filter-out jfreereport npapi-headers, $(SYSTEM_STUFF))
SYSTEM_STUFF := $(filter-out libzmf libstaroffice, $(SYSTEM_STUFF))
SYSTEM_STUFF := $(filter-out orcus lpsolve, $(SYSTEM_STUFF))
ifeq ($(shell echo "$(DEB_VERSION)" | grep -c ppa),1)
BUGS=mailto:libreoffice@lists.launchpad.net
endif
# do not run checks on armel armhf powerpc for now as they fail with "debug output level 11 is too high"
# dont run unittests and slowtests at all for now, curiously they break on the buildds (and only there)
ifneq (,$(filter armhf armel powerpc,$(DEB_HOST_ARCH)))
RUN_MAKE_CHECK:=n
endif
RUN_PYTESTS:=n
PARALLEL_BUILD=y
ifeq (,$(filter kfreebsd,$(DEB_HOST_ARCH)))
ENABLE_MERGELIBS=y
endif
ON_BUILDD := $(shell if [ "`whoami`" = buildd -o -f /CurrentlyBuilding ] || echo $(CURDIR) | grep -q \/build\/buildd; then echo y; else echo n; fi)
ifeq ($(ON_BUILDD),y)
buildd_discspace_hack:=find workdir/ -type f -name '*.o' -exec mv {} {}_org \; -exec touch -r {}_org {} \; -exec rm {}_org \;
endif
USE_VLC:=n
#temp. hacks
ENABLE_EVO2:=n
ENABLE_COLLADA := n
ENABLE_GLTF := n
ENABLE_COINMP := n
ifneq (,$(filter armel armhf,$(DEB_HOST_ARCH)))
ENABLE_HELP=n
endif
# set SYSTEM_GCJ_VERSION to something nonempty
ifeq (,$(strip $(SYSTEM_GCJ_VERSION)))
$(warning SYSTEM_GCJ_VERSION empty, falling back to SYSTEM_GCC_VERSION)
SYSTEM_GCJ_VERSION = $(SYSTEM_GCC_VERSION)
ifeq (5.,$(shell echo "$(SYSTEM_GCJ_VERSION)"|cut -b1-2))
SYSTEM_GCJ_VERSION = 5
endif
endif
endif
ifeq "$(BUILD_DBGSYM_PACKAGES)" "y"
UNO_LIBS_DBG=uno-libs3-dbgsym
URE_DBG=ure-dbgsym
CORE_DBG=libreoffice-core-dbgsym
WRITER_DBG=libreoffice-writer-dbgsym
URE_DBG_ROOT=.debhelper/ure/dbgsym-root
CORE_DBG_ROOT=.debhelper/libreoffice-core/dbgsym-root
WRITER_DBG_ROOT=.debhelper/libreoffice-writer/dbgsym-root
DH_STRIP_DBG_OPTION_LO=--dbgsym-migration=libreoffice-dbg
DH_STRIP_DBG_OPTION_URE=--dbgsym-migration=ure-dbg
DH_STRIP_DBG_OPTION_UNO_LIBS=--dbgsym-migration=uno-libs3-dbg
else
DH_STRIP_DBG_OPTION_LO += --no-automatic-dbgsym
DH_STRIP_DBG_OPTION_URE += --no-automatic-dbgsym
DH_STRIP_DBG_OPTION_UNO_LIBS3 += --no-automatic-dbgsym
endif
CONFIGURE_FLAGS += $(foreach i, $(SYSTEM_STUFF),--with-system-$(i))
ifneq ($(ENABLE_FIREBIRD),y)
CONFIGURE_FLAGS += --disable-firebird-sdbc
endif
CC_PREFIX:=$(shell gcc -dumpmachine)-
#ifeq (,$(findstring i386,$(DEB_HOST_ARCH)))
# ifeq (,$(findstring amd64,$(DEB_HOST_ARCH)))
# ifneq "$(SYSTEM_GCC_VERSION)" "4.6"
# GCC_VERSION := 4.6
# endif
# endif
#endif
ifeq "$(DEB_HOST_ARCH)" "m68k"
GCC_VERSION := 7
endif
ifneq "$(GCC_VERSION)" ""
ifneq "$(SYSTEM_GCC_VERSION)" "$(GCC_VERSION)"
BUILD_DEPS += , gcc-$(GCC_VERSION), g++-$(GCC_VERSION)
CONFIGURE_FLAGS+= \
CC=$(CC_PREFIX)gcc-$(GCC_VERSION) \
CXX=$(CC_PREFIX)g++-$(GCC_VERSION)
endif
endif
ifneq "$(SYSTEM_GCC_VERSION)" "7"
BUILD_DEPS += , gcc-7 (>= 7-20170106) [m68k], g++-7 (>= 7-20170106) [m68k]
endif
BUILDDEB_OPTIONS ?= -- -Zxz
ifneq "$(ENABLE_GLTF)" "y"
CONFIGURE_FLAGS += --disable-gltf
else
ifneq (,$(findstring libgltf,$(SYSTEM_STUFF)))
BUILD_DEPS += , libgltf-dev (>= $(LIBGLTF_MINVER))
endif
ifneq "$(ENABLE_COLLADA)" "y"
CONFIGURE_FLAGS += --disable-collada
else
ifneq (,$(findstring opencollada,$(SYSTEM_STUFF)))
BUILD_DEPS += , opencollada-dev $(OPENCOLLADA_MINVER) [$(OOO_COLLADA_ARCHS)]
BUILD_DEPS += , libpcre3-dev [$(OOO_COLLADA_ARCHS)]
endif
ifneq (,$(findstring collada2gltf,$(SYSTEM_STUFF)))
BUILD_DEPS += , libcollada2gltfconvert-dev $(COLLADA2GLTF_MINVER)[$(OOO_COLLADA_ARCHS)]
BUILD_DEPS += , rapidjson-dev [$(OOO_COLLADA_ARCHS)]
BUILD_DEPS += , libo3dgc-dev (>= 0~20131011-2) [$(OOO_COLLADA_ARCHS)]
endif
endif
endif
ifneq "$(PACKAGE_SDK)" "y"
CONFIGURE_FLAGS += --disable-odk
ifneq "$(PACKAGE_SDK_DOCS)" "y"
CONFIGURE_FLAGS += --without-doxygen --without-javadoc
endif
else
ifeq "$(PACKAGE_SDK_DOCS)" "y"
BUILD_DEPS_INDEP += , doxygen (>= 1.8.4) <!nodoc>
else
CONFIGURE_FLAGS += --without-doxygen --without-javadoc
endif
endif
BUILD_DEPS += , libpoppler-dev (>= 0.12.0), libpoppler-private-dev, libpoppler-cpp-dev
ifneq (,$(filter graphite, $(SYSTEM_STUFF)))
BUILD_DEPS += , libgraphite2-dev (>= 0.9.3)
endif
ifneq (,$(filter harfbuzz, $(SYSTEM_STUFF)))
BUILD_DEPS += , libharfbuzz-dev (>= 0.9.42)
endif
ifneq (,$(filter libexttextcat, $(SYSTEM_STUFF)))
BUILD_DEPS += , libexttextcat-dev (>= 3.4.1)
TEXTCAT_DATA_RECOMMENDS := libexttextcat-data
endif
ifneq (,$(filter jpeg, $(SYSTEM_STUFF)))
BUILD_DEPS += , libjpeg-dev
endif
ifneq (,$(filter libxml, $(SYSTEM_STUFF)))
BUILD_DEPS += , libxml2-dev, libxml2-utils
BUILD_DEPS += , libxslt1-dev
else
CONFIGURE_FLAGS += --without-system-libxml
endif
ifneq (,$(filter expat, $(SYSTEM_STUFF)))
BUILD_DEPS += , libexpat1-dev
endif
ifneq (,$(filter odbc, $(SYSTEM_STUFF)))
BUILD_DEPS += , unixodbc-dev (>= 2.2.11)
endif
ifneq (,$(filter sane, $(SYSTEM_STUFF)))
BUILD_DEPS += , libsane-dev
endif
ifneq (,$(filter libpng, $(SYSTEM_STUFF)))
BUILD_DEPS += , libpng-dev
endif
ifneq (,$(filter curl, $(SYSTEM_STUFF)))
BUILD_DEPS += , libcurl4-$(CURL_SECTYPE)-dev
endif
ifneq ($(ENABLE_COINMP),y)
CONFIGURE_FLAGS += --disable-coinmp
else
BUILD_DEPS += , coinor-libcoinmp-dev $(COINMP_MINVER), coinor-libcoinutils-dev $(COINUTILS_MINVER), libbz2-dev
endif
OPENCL_SUGGESTS := ocl-icd-libopencl1
ifeq "$(BUILD_DBGSYM_PACKAGES)" "y"
ifneq (,$(findstring i386,$(DEB_HOST_ARCH)))
SMALL_SYMBOLS = n
else
ifneq (,$(findstring amd64,$(DEB_HOST_ARCH)))
SMALL_SYMBOLS = n
endif
endif
PYTHON_SIX_RECOMMENDS = python3-six
endif
export DPKG_EXPORT_BUILDFLAGS=y
include /usr/share/dpkg/buildflags.mk
ifeq "$(ENABLE_SYMBOLS)" "y"
# Small symbols?
ifeq "$(SMALL_SYMBOLS)" "y"
CONFIGURE_FLAGS += --enable-symbols=SMALL
CFLAGS := $(shell echo $(CFLAGS) | sed -e "s/-g/-g1/")
CXXFLAGS := $(shell echo $(CXXFLAGS) | sed -e "s/-g/-g1/")
export CFLAGS CXXFLAGS
else
CONFIGURE_FLAGS += --enable-symbols
endif
endif
ifeq (debug,$(findstring debug,$(DEB_BUILD_OPTIONS)))
CONFIGURE_FLAGS += --enable-debug
endif
PYMAJOR:=$(shell $(PYTHON) -c "import sys; print (sys.version_info[0])")
PYMINOR:=$(shell $(PYTHON) -c "import sys; print (sys.version_info[1])")
PYMINORPLUS1:=$(shell $(PYTHON) -c "import sys; print (sys.version_info[1]+1)")
PYTHON_SITE:=debian/python3-uno/$(shell $(PYTHON) -c 'from distutils import sysconfig; print(sysconfig.get_python_lib())')
BUILD_DEPS += , $(PYTHON)
ifeq "$(ENABLE_PYTHON)" "y"
BUILD_DEPS += , $(PYTHON)-dev (>= 3.3)
BUILD_DEPS += , dh-python
endif
ifeq "$(BUILD_DBGSYM_PACKAGES)" "y"
BUILD_DEPS += , debhelper (>= 9.20160114)
# from debhelper changelog
BUILD_DEPS += , dpkg-dev (>= 1.18.2~)
else
BUILD_DEPS += , debhelper (>= 7.2.3~)
BUILD_DEPS += , dpkg-dev (>= 1.17.14)
endif
ifeq "$(RUN_TESTTOOL)" "y"
CONFIGURE_FLAGS += --enable-hids
endif
ifneq (,$(filter cppunit, $(SYSTEM_STUFF)))
BUILD_DEPS += , libcppunit-dev (>= $(CPPUNIT_MINVER))
endif
BUILD_DEPS += , gdb$(OOO_NO_CHECK_ARCHS) <!nocheck>
BUILD_DEPS += , fontconfig$(OOO_NO_CHECK_ARCHS) <!nocheck>
BUILD_DEPS += , fonts-liberation$(OOO_NO_CHECK_ARCHS) <!nocheck>
BUILD_DEPS += , fonts-crosextra-carlito$(OOO_NO_CHECK_ARCHS) <!nocheck>
ifeq "$(ENABLE_JUNIT4)" "y"
BUILD_DEPS += , junit4 $(JUNIT_MIN_VER)$(OOO_NO_CHECK_ARCHS) <!nocheck>
else
CONFIGURE_FLAGS += --without-junit
endif
ifeq "$(ENABLE_EXPORT_VALIDATION_TESTS)" "y"
BUILD_DEPS += , libofficeotron-java, libodfvalidator-java
else
CONFIGURE_FLAGS += --without-export-validation
endif
ifneq "$(BUILD_ONLY_EN_US)" "y"
ifeq (lang=,$(findstring lang=,$(DEB_BUILD_OPTIONS)))
ISOS=$(shell echo "$(DEB_BUILD_OPTIONS) " | sed -n 's/^.*lang=\([^\s].*\)\s.*/\1/p' | awk '{ print $$1 }' | sed -e 's/,/ /g')
ifeq "$(ENABLE_HELP)" "n"
HELPISOS=
else
HELPISOS=$(shell echo "$(DEB_BUILD_OPTIONS) " | sed -n 's/^.*lang=\([^\s].*\)\s.*/\1/p' | awk '{ print $$1 }' | sed -e 's/,/ /g')
endif
LANGPACKISOS=$(shell echo "$(DEB_BUILD_OPTIONS) " | sed -n 's/^.*lang=\([^\s].*\)\s.*/\1/p' | awk '{ print $$1 }' | sed -e 's/,/ /g')
else
# Note that the first one here *has to be* en-US. the first one gets
# gid_Module_Root as filelist later and the rest gid_Module_Root.$iso
# but we can't/shouldn't do dynamic switching, so let en-US be the first
# one to that gid_Module_Root always is english and the other langpacks
# have gid_Module_Root.$iso
#ISOS=$(shell $(SOURCE_TREE)/bin/lo-xlate-lang -i all')
ISOS:=en-US af am ar as ast be bg bn br bs ca ca-valencia cs cy da de dz el \
en-GB en-ZA eo es et eu fa fi fr ga gd gl gu gug he hi hr hu id is it ja \
ka kk km ko kmr-Latn lt lv mk mn ml mr nb ne nl nn nr nso oc om or \
pa-IN pl pt pt-BR ro ru rw si sk sl sr ss st sv \
ta te tg th tn tr ts ug uk uz ve vi xh zh-CN zh-TW zu
ifeq "$(ENABLE_HELP)" "n"
HELPISOS:=
else
#HELPISOS:=$(shell $(SOURCE_TREE)/bin/lo-xlate-lang -i all')
HELPISOS:=en-US ca ca-valencia cs da de dz el en-GB es et eu fi fr gl hi hu it \
ja km ko nl om pl pt pt-BR ru sk sl sv tr vi zh-CN zh-TW
endif
#LANGPACKISOS:=$(shell $(SOURCE_TREE)/bin/lo-xlate-lang -i all')
LANGPACKISOS:=en-US af am ar as ast be bg bn br bs ca ca-valencia cs cy da de dz el \
en-GB en-ZA eo es et eu fa fi fr ga gd gl gu gug he hi hr hu id is it ja \
ka kk km ko kmr-Latn lt lv mk mn ml mr nb ne nl nn nr nso oc om or \
pa-IN pl pt pt-BR ro ru rw si sk sl sr ss st sv \
ta te tg th tn tr ts ug uk uz ve vi xh zh-CN zh-TW zu
endif
else
ISOS=en-US
ifeq "$(ENABLE_HELP)" "n"
HELPISOS=
else
HELPISOS=en-US
endif
LANGPACKISOS=en-US
endif
BUILD_ISOS = $(ISOS)
ifneq "$(BUILD_ONLY_EN_US)" "y"
ifneq "$(BUILD_ISOS)" "en-US"
CONFIGURE_FLAGS_LANG += --with-lang="$(BUILD_ISOS)"
endif
endif
ifeq "$(ENABLE_JAVA)" "y"
BUILD_DEPS += , maven-repo-helper
ifeq "$(JDK)" "default"
BUILD_DEPS += , java-common (>= 0.49)
JAVA_HOME=/usr/lib/jvm/default-java
BUILD_DEPS += , default-jdk (>= 1:1.6) $(filter-out !ia64,$(OOO_NO_JAVA_ARCHS))
ifneq (,$(findstring ia64,$(OOO_JAVA_ARCHS)))
BUILD_DEPS += , default-jdk (>= 1:1.7-48) [ia64]
endif
ifneq (,$(findstring kfreebsd,$(OOO_JAVA_ARCHS)))
BUILD_DEPS += , default-jdk (>= 2:1.7-52.1) [kfreebsd-any]
endif
ifneq (,$(findstring sparc64,$(OOO_JAVA_ARCHS)))
BUILD_DEPS += , default-jdk (>= 2:1.8-55) [sparc64]
endif
endif
ifeq "$(JDK)" "openjdk"
ifeq "$(JAVA_MAINVER)" "6"
BUILD_DEPS += , openjdk-$(JAVA_MAINVER)-jdk (>= 6b23~pre8-2) [$(filter-out ia64,$(OOO_JAVA_ARCHS)])
else
BUILD_DEPS += , openjdk-$(JAVA_MAINVER)-jdk [$(filter-out mips mipsel,$(OOO_JAVA_ARCHS))]
# no 7 on mips(el)
ifneq (,$(findstring mips,$(OOO_JAVA_ARCHS)))
BUILD_DEPS += , openjdk-6-jdk (>= 6b23~pre8-2) [mips mipsel]
ifneq (,$(findstring mips,$(DEB_HOST_ARCH)))
JAVA_MAINVER=6
endif
endif
endif
JAVA_HOME=/usr/lib/jvm/java-$(JAVA_MAINVER)-openjdk-$(DEB_HOST_ARCH)
endif
TEST_JAVA_HOME=$(JAVA_HOME)
ifeq "$(ENABLE_MEDIAWIKI)" "y"
BUILD_DEPS += , ant (>= 1.7.0)$(OOO_NO_JAVA_ARCHS), ant-optional (>= 1.7.0)$(OOO_NO_JAVA_ARCHS)
else
BUILD_DEPS += , ant (>= 1.6.5)$(OOO_NO_JAVA_ARCHS)
endif
GCJ_VERSION = $(shell basename `readlink /usr/lib/jvm/java-gcj/bin/gcj` | sed -e s/gcj-//)
ifneq "$(GCJ_VERSION)" ""
GCJ_JAWT_DEPENDS= $(shell dpkg -S /usr/lib/$(DEB_HOST_MULTIARCH)/gcj-$(GCJ_VERSION)-*/libgcj_bc.so.1 | cut -d: -f1 | sed -e s/$$/-awt/)
DBG_DBG_SUGGESTS+= , $(shell echo $(GCJ_AWT_DEPENDS) | sed -e s/awt/dbg/)
GCJ_JAWT_DIR=$(shell dirname `dpkg -L $(GCJ_JAWT_DEPENDS) | grep libjawt.so | head -n 1`)
endif
JAVA_RUNTIME_DEPENDS = default-jre
ifneq (,$(filter $(DEB_HOST_ARCH), $(OOO_OPENJDK_ARCHS)))
ifneq "$(DEB_HOST_ARCH)" "ia64"
JAVA_RUNTIME_DEPENDS += | openjdk-8-jre | openjdk-7-jre | openjdk-6-jre
else
JAVA_RUNTIME_DEPENDS += | openjdk-7-jre
endif
endif
ifneq (,$(filter $(DEB_HOST_ARCH), amd64 i386))
JAVA_RUNTIME_DEPENDS += | sun-java5-jre | sun-java6-jre
endif
JAVA_RUNTIME_DEPENDS += | java5-runtime
# Suns Java "packages"
JAVA_RUNTIME_DEPENDS += | jre
MEDIAWIKI_JAVA_RUNTIME_DEPENDS = $(shell echo $(JAVA_RUNTIME_DEPENDS) | sed -e "s/sun-java5-jre//" | sed -e "s/java5-runtime/java6-runtime/")
export JAVA_HOME
CONFIGURE_FLAGS += --with-jdk-home=$(JAVA_HOME)
JAVA_COMMON_DEPENDS= , libreoffice-java-common
JAVA_COMMON_DEPENDS_VERSION:= (>= $(BASE_VERSION)~)
ifeq "$(PACKAGE_SDK)" "y"
ifeq "$(PACKAGE_UNOWINREG_DLL)" "y"
ifeq "$(BUILD_UNOWINREG_DLL)" "y"
CONFIGURE_FLAGS_INDEP += --enable-build-unowinreg
BUILD_DEPS_INDEP += , g++-mingw-w64-i686
CONFIGURE_FLAGS_INDEP += --with-mingw-cross-compiler=i686-w64-mingw32-g++
endif
endif
endif
ifeq "$(ENABLE_MEDIAWIKI)" "y"
CONFIGURE_FLAGS_INDEP += --enable-ext-wiki-publisher
endif
ifeq "$(ENABLE_REPORTDESIGN)" "y"
# report-builder
ifneq (,$(filter jfreereport, $(SYSTEM_STUFF)))
REPORT_BUILDER_BUILD_DEPS += , libbase-java$(OOO_NO_REPORTDESIGN_ARCHS), libsac-java$(OOO_NO_REPORTDESIGN_ARCHS), libxml-java (>= 1.1.6)$(OOO_NO_REPORTDESIGN_ARCHS), libflute-java (>= 1.1.6)$(OOO_NO_REPORTDESIGN_ARCHS), libpentaho-reporting-flow-engine-java (>= 0.9.4)$(OOO_NO_REPORTDESIGN_ARCHS), liblayout-java (>= 0.2.10)$(OOO_NO_REPORTDESIGN_ARCHS), libloader-java (>= 1.1.6)$(OOO_NO_REPORTDESIGN_ARCHS), libformula-java (>= 1.1.7)$(OOO_NO_REPORTDESIGN_ARCHS), librepository-java (>= 1.1.6)$(OOO_NO_REPORTDESIGN_ARCHS), libfonts-java (>= 1.1.6)$(OOO_NO_REPORTDESIGN_ARCHS), libserializer-java (>= 1.1.6)$(OOO_NO_REPORTDESIGN_ARCHS)
REPORT_BUILDER_JAR_DEPENDS := , libbase-java, libsac-java, libxml-java (>= 1.1.6), libflute-java (>= 1.1.6), libpentaho-reporting-flow-engine-java (>= 0.9.4), liblayout-java (>= 0.2.10), libloader-java (>= 1.1.6), libformula-java (>= 1.1.7), librepository-java (>= 1.1.6), libfonts-java (>= 1.1.6), libserializer-java (>= 1.1.6)
CONFIGURE_FLAGS += --with-libbase-jar=/usr/share/java/libbase.jar --with-libxml-jar=/usr/share/java/libxml.jar --with-flute-jar=/usr/share/java/flute.jar --with-jfreereport-jar=/usr/share/java/flow-engine.jar --with-liblayout-jar=/usr/share/java/liblayout.jar --with-libloader-jar=/usr/share/java/libloader.jar --with-libformula-jar=/usr/share/java/libformula.jar --with-librepository-jar=/usr/share/java/librepository.jar --with-libfonts-jar=/usr/share/java/libfonts.jar --with-libserializer-jar=/usr/share/java/libserializer.jar
endif
ifneq (,$(filter apache-commons, $(SYSTEM_STUFF)))
REPORT_BUILDER_BUILD_DEPS += , libcommons-logging-java (>= 1.1.1-9)$(OOO_NO_JAVA_ARCHS)
REPORT_BUILDER_JAR_DEPENDS += , libcommons-logging-java (>=1.1.1-9)
CONFIGURE_FLAGS += --with-commons-logging-jar=/usr/share/java/commons-logging.jar
endif
BUILD_DEPS_INDEP += $(REPORT_BUILDER_BUILD_DEPS)
else
CONFIGURE_FLAGS += --disable-report-builder
endif
ifeq "$(ENABLE_NLPSOLVER)" "y"
CONFIGURE_FLAGS_INDEP += --enable-ext-nlpsolver
endif
OOO_OFFICEBEAN_DEP = libreoffice-officebean
BUILD_DEPS += , javahelper $(JAVAHELPER_MIN_VERSION)
else
CONFIGURE_FLAGS += --without-java
DEBHELPER_OPTIONS += -Nlibreoffice-officebean -Nlibreoffice-java-common -Nlibreoffice-script-provider-bsh -Nlibreoffice-script-provider-js
endif
ifneq (,$(filter nss, $(SYSTEM_STUFF)))
BUILD_DEPS+= , libnss3-dev (>= 3.12.3)
BUILD_DEPS+= , libnspr4-dev
endif
ifeq "$(USE_UCPP)" "y"
ifneq (,$(filter ucpp, $(SYSTEM_STUFF)))
IDLC_CPP_DEPENDS := ucpp
endif
else
# hardcode 4.7 as 4.8 fails:
# 14:17 <@caolan> ah, "build fails with cpp 4.8.0, this is fixable by passing
# -P, but then idlc produces empty urd files"
# trying to use cpp-4.9 instead now
IDLC_CPP_DEPENDS := cpp-5
CONFIGURE_FLAGS += --with-idlc-cpp=cpp-5
endif
BUILD_DEPS += , $(IDLC_CPP_DEPENDS)
ifneq (,$(filter hunspell, $(SYSTEM_STUFF)))
BUILD_DEPS += , libhunspell-dev $(HUNSPELL_MIN_VER)
endif
CONFIGURE_FLAGS += --with-external-dict-dir=$(DICT_DIR)
ifneq (,$(filter altlinuxhyph, $(SYSTEM_STUFF)))
ifeq "$(USE_LIBHYPHEN)" "y"
BUILD_DEPS += , libhyphen-dev $(LIBHYPHEN_MINVER)
else
BUILD_DEPS += , libaltlinuxhyph-dev $(LIBALTLINUXHYPH_MINVER)
endif
endif
CONFIGURE_FLAGS += --with-external-hyph-dir=$(HYPH_DIR)
ifneq (,$(filter boost, $(SYSTEM_STUFF)))
ifneq "$(BOOST_VERSION)" "default"
BUILD_DEPS += , libboost$(BOOST_VERSION)-dev $(BOOST_MINVER), libboost-date-time$(BOOST_VERSION)-dev $(BOOST_MINVER), libboost-iostreams$(BOOST_VERSION)-dev, libboost$(BOOST_VERSION)-filesystem-dev
#BUILD_DEPS += , libboost-thread$(BOOST_VERSION)-dev, libboost-program-options$(BOOST_VERSION)-dev
ifeq "$(ENABLE_ORCUS)" "y"
ifeq (,$(filter orcus, $(SYSTEM_STUFF)))
BUILD_DEPS += , libboost-system$(BOOST_VERSION)-dev $(BOOST_MINVER), libboost-iostreams$(BOOST_VERSION)-dev $(BOOST_MINVER), libboost-program-options$(BOOST_VERSION)-dev $(BOOST_MINVER), libboost-filesystem$(BOOST_VERSION)-dev $(BOOST_MINVER)
endif
endif
ifeq ($(USE_VLC),y)
BUILD_DEPS += , libboost-system$(BOOST_VERSION)-dev $(BOOST_MINVER)
endif
else
BUILD_DEPS += , libboost-dev $(BOOST_MINVER), libboost-date-time-dev $(BOOST_MINVER), libboost-iostreams-dev $(BOOST_MINVER), libboost-filesystem-dev $(BOOST_MINVER)
#BUILD_DEPS += , libboost-thread-dev, libboost-program-options-dev
ifeq (,$(filter orcus, $(SYSTEM_STUFF)))
BUILD_DEPS += , libboost-system-dev $(BOOST_MINVER), libboost-iostreams-dev $(BOOST_MINVER), libboost-program-options-dev $(BOOST_MINVER), libboost-filesystem-dev $(BOOST_MINVER)
endif
ifeq ($(USE_VLC),y)
BUILD_DEPS += , libboost-system-dev $(BOOST_MINVER)
endif
endif
ifeq "$(shell if [ -e /usr/lib/$(DEB_HOST_MULTIARCH)/libboost_date_time.so ]; then echo true; fi)" "true"
CONFIGURE_FLAGS += --with-boost-libdir=/usr/lib/$(DEB_HOST_MULTIARCH)
endif
endif
ifneq (,$(filter mdds, $(SYSTEM_STUFF)))
BUILD_DEPS += , libmdds-dev (>= 1.2)
endif
ifeq "$(ENABLE_ORCUS)" "y"
ifneq (,$(filter orcus, $(SYSTEM_STUFF)))
BUILD_DEPS += , liborcus-dev (>= $(LIBORCUS_MINVER))
endif
else
CONFIGURE_FLAGS += --disable-orcus
endif
ifneq (,$(filter clucene, $(SYSTEM_STUFF)))
BUILD_DEPS += , libclucene-dev (>= $(CLUCENE_MINVER))
endif
ifeq "$(USE_EXTERNAL_CXXLIBS)" "y"
ifneq (,$(filter librevenge, $(SYSTEM_STUFF)))
BUILD_DEPS += , librevenge-dev
endif
ifneq (,$(filter libwpd, $(SYSTEM_STUFF)))
BUILD_DEPS += , libwpd-dev (>= 0.10)
endif
ifneq (,$(filter mythes, $(SYSTEM_STUFF)))
BUILD_DEPS += , libmythes-dev (>= 2:1.2)
endif
ifneq (,$(filter libwps, $(SYSTEM_STUFF)))
BUILD_DEPS += , libwps-dev (>= 0.4)
endif
ifneq (,$(filter libwpg, $(SYSTEM_STUFF)))
BUILD_DEPS += , libwpg-dev (>= 0.3)
endif
ifneq (,$(filter libvisio, $(SYSTEM_STUFF)))
BUILD_DEPS += , libvisio-dev (>= 0.1)
endif
ifneq (,$(filter libcdr, $(SYSTEM_STUFF)))
BUILD_DEPS += , libcdr-dev (>= 0.1)
endif
ifneq (,$(filter libmspub, $(SYSTEM_STUFF)))
BUILD_DEPS += , libmspub-dev (>= 0.1)
endif
ifneq (,$(filter libmwaw, $(SYSTEM_STUFF)))
BUILD_DEPS += , libmwaw-dev (>= 0.3.1)
endif
ifneq (,$(filter libodfgen, $(SYSTEM_STUFF)))
BUILD_DEPS += , libodfgen-dev (>= 0.1)
endif
ifneq (,$(filter libetonyek, $(SYSTEM_STUFF)))
BUILD_DEPS += , libetonyek-dev
endif
ifneq (,$(filter libfreehand, $(SYSTEM_STUFF)))
BUILD_DEPS += , libfreehand-dev (>= 0.1)
endif
ifneq (,$(filter libabw, $(SYSTEM_STUFF)))
BUILD_DEPS += , libabw-dev (>= 0.1)
endif
ifneq (,$(filter libpagemaker, $(SYSTEM_STUFF)))
BUILD_DEPS += , libpagemaker-dev
endif
ifneq (,$(filter libzmf, $(SYSTEM_STUFF)))
BUILD_DEPS += , libzmf-dev
endif
ifneq (,$(filter libstaroffice, $(SYSTEM_STUFF)))
BUILD_DEPS += , libstaroffice-dev
endif
ifneq (,$(filter libebook, $(SYSTEM_STUFF)))
BUILD_DEPS += , libe-book-dev
endif
ifneq (,$(filter libcmis, $(SYSTEM_STUFF)))
BUILD_DEPS += , libcmis-dev (>= $(LIBCMIS_MINVER))
endif
endif
CONFIGURE_FLAGS += --with-external-thes-dir=$(THES_DIR)
ifeq "$(ENABLE_GDRIVE)" "y"
# Google API stuff for GDrive access
BUILD_DEPS += , chromium (>= 39.0.2171.71-1) [$(OOO_GDRIVE_ARCHS)]
include /etc/chromium.d/apikeys
CONFIGURE_FLAGS += --with-gdrive-client-id=$(GOOGLE_DEFAULT_CLIENT_ID) --with-gdrive-client-secret=$(GOOGLE_DEFAULT_CLIENT_SECRET)
endif
ifeq "$(ENABLE_EOT)" "y"
CONFIGURE_FLAGS += --enable-eot
ifneq (,$(filter libeot, $(SYSTEM_STUFF)))
BUILD_DEPS += , libeot-dev
endif
endif
ifneq (,$(filter lcms2, $(SYSTEM_STUFF)))
BUILD_DEPS += , liblcms2-dev
endif
ifneq (,$(filter openldap, $(SYSTEM_STUFF)))
BUILD_DEPS += , libldap2-dev
endif
ifeq ($(ENABLE_TELEPATHY),y)
BUILD_DEPS += , libtelepathy-glib-dev (>= 0.18)
CONFIGURE_FLAGS += --enable-telepathy
endif
ifeq ($(ENABLE_LIBLANGTAG),y)
ifneq (,$(filter liblangtag, $(SYSTEM_STUFF)))
BUILD_DEPS += , liblangtag-dev (>= 0.4)
endif
else
CONFIGURE_FLAGS += --disable-liblangtag
endif
ifneq (,$(filter icu, $(SYSTEM_STUFF)))
BUILD_DEPS += , libicu-dev $(ICU_MINVER)
endif
ifeq "$(BUILD_CAIROCANVAS)" "y"
ifneq (,$(filter cairo, $(SYSTEM_STUFF)))
BUILD_DEPS+= , libcairo2-dev
endif
else
CONFIGURE_FLAGS+= --disable-cairo
endif
ifeq "$(BUILD_KDE)" "n"
CONFIGURE_FLAGS += --disable-kde4
else
CONFIGURE_FLAGS += --enable-kde4
KDE_ICONSET_DEP=libreoffice-style-breeze
BUILD_DEPS += , kdelibs5-dev $(KDELIBS_MINVER)
BUILD_DEPS += , libqt4-dev $(QT_MINVER)
endif
ifeq "$(ENABLE_MYSQLNATIVE)" "y"
CONFIGURE_FLAGS += --enable-ext-mariadb-connector
ifeq "$(MYSQL_FLAVOUR)" "default"
BUILD_DEPS += , default-libmysqlclient-dev
else
ifeq "$(MYSQL_FLAVOUR)" "mysql"
ifneq (,$(filter mysql-cppconn, $(SYSTEM_STUFF)))
BUILD_DEPS += , libmysqlclient-dev
endif
MARIADBCONFIG=/usr/bin/mysql_config
endif
ifeq "$(MYSQL_FLAVOUR)" "mariadb"
ifneq (,$(filter mariadb, $(SYSTEM_STUFF)))
# deducted from default-libmysqlclient-dev Depends
BUILD_DEPS += , libmariadbclient-dev-compat
endif
MARIADBCONFIG=/usr/bin/mariadb_config
endif
endif
ifneq (,$(filter mysql-cppconn, $(SYSTEM_STUFF)))
BUILD_DEPS += , libmysqlcppconn-dev $(MYSQLCPPCONN_MINVER)
endif
endif
ifeq "$(ENABLE_FIREBIRD)" "y"
ifneq (,$(filter libatomic-ops, $(SYSTEM_STUFF)))
BUILD_DEPS += , libatomic-ops-dev (>= 7.3~alpha1+git20110913-1)$(OOO_NO_BE_ARCHS)
endif
ifneq (,$(filter libtommath, $(SYSTEM_STUFF)))
BUILD_DEPS += , libtommath-dev$(OOO_NO_BE_ARCHS)
endif
ifneq (,$(filter firebird, $(SYSTEM_STUFF)))
BUILD_DEPS += , firebird-dev (>= 3.0.0.32483.ds4-4)$(OOO_NO_LE_ARCHS)
# we need libEngine12.so
BUILD_DEPS += , firebird3.0-server-core $(OOO_NO_LE_ARCHS) <!nocheck>
FIREBIRD_ENGINE_DEPENDS += firebird3.0-server-core
endif
else
CONFIGURE_FLAGS += --disable-firebird-sdbc
endif
ifeq "$(BUILD_GTK)" "n"
CONFIGURE_FLAGS+= --disable-gtk
DEBHELPER_OPTIONS+= -Nlibreoffice-gtk2 -Nlibreoffice-gnome
else
BUILD_DEPS += , libgtk2.0-dev (>= 2.10)
endif
ifeq "$(BUILD_GTK3)" "y"
GTK3_MINVER=3.8~
BUILD_DEPS += , libgtk-3-dev (>= $(GTK3_MINVER))
ifneq (cairo,$(findstring cairo,$(SYSTEM_STUFF)))
$(error GTK3 build fails without system-cairo!!)
endif
ifeq (,$(filter epoxy, $(SYSTEM_STUFF)))
BUILD_DEPS += , libegl1-mesa-dev
endif
GNOME_GTK_RECOMMENDS += libreoffice-gtk3
ifeq "$(ENABLE_INTROSPECTION)" "y"
BUILD_DEPS += , gobject-introspection (>= 1.32.0), libgirepository1.0-dev (>= 1.32)
else
CONFIGURE_FLAGS += --enable-introspection=no
DEBHELPER_OPTIONS+= -Ngir1.2-lokdocview-0.1
endif
else
CONFIGURE_FLAGS+= --disable-gtk3
GNOME_GTK_DEPENDS += libreoffice-gtk2
endif
ifeq "$(ENABLE_SYSTRAY)" "n"
CONFIGURE_FLAGS += --disable-systray
endif
ifeq "$(ENABLE_EVO2)" "n"
CONFIGURE_FLAGS += --disable-evolution2
DEBHELPER_OPTIONS += -Nlibreoffice-evolution
else
CONFIGURE_FLAGS += --enable-evolution2
BUILD_DEPS += , libebook1.2-dev
endif
ifeq "$(ENABLE_SDBC_POSTGRESQL)" "y"
ifneq (,$(filter postgresql, $(SYSTEM_STUFF)))
BUILD_DEPS += , libpq-dev (>= 9.0~)
else
BUILD_DEPS += , libkrb5-dev
endif
else
CONFIGURE_FLAGS += --disable-postgresql-sdbc
endif
ifeq "$(ENABLE_RANDR)" "y"
BUILD_DEPS += , libxrandr-dev
else
CONFIGURE_FLAGS += --disable-randr
endif
ifneq "$(ENABLE_PYTHON)" "y"
DEBHELPER_OPTIONS+= -Npython3-uno -Nlibreoffice-script-provider-python
ifeq "$(BUILD_ISOS)" "en-US"
CONFIGURE_FLAGS += --disable-python
else
$(error you can not disable python when building with translations)
endif
else
PYUNO_DEPENDS = python3-uno (>= 4.4.0~beta2)
CONFIGURE_FLAGS += --enable-python=system
endif
ifeq "$(ENABLE_JAVA)" "y"
ifneq (,$(filter hsqldb, $(SYSTEM_STUFF)))
BUILD_DEPS += , libhsqldb1.8.0-java $(HSQLDB_MINVER)$(OOO_NO_JAVA_ARCHS), libarchive-zip-perl$(OOO_NO_JAVA_ARCHS)
BASE_HSQLDB_DEPENDS = libhsqldb1.8.0-java $(HSQLDB_MINVER)
CONFIGURE_FLAGS += --with-hsqldb-jar=$(HSQLDB_JAR)
else
BUILD_DEPS += , libservlet3.1-java
endif
ifeq "$(ENABLE_SCRIPT_PROVIDER_BSH)" "y"
ifneq (,$(filter beanshell, $(SYSTEM_STUFF)))
BUILD_DEPS_INDEP += , libbsh-java
endif
CONFIGURE_FLAGS += --enable-scripting-beanshell
else
DEBHELPER_OPTIONS += -Nlibreoffice-script-provider-bsh
endif
ifeq "$(ENABLE_SCRIPT_PROVIDER_JS)" "y"
CONFIGURE_FLAGS += --enable-scripting-javascript
else
DEBHELPER_OPTIONS += -Nlibreoffice-script-provider-js
endif
endif
ifneq (,$(filter lpsolve, $(SYSTEM_STUFF)))
ifeq "$(USE_SHARED_LPSOLVE)" "y"
BUILD_DEPS += , liblpsolve55-dev $(LPSOLVE_MIN_VERSION), lp-solve $(LPSOLVE_MIN_VERSION)
LPSOLVE_DEP = lp-solve $(LPSOLVE_MIN_VERSION)
else
BUILD_DEPS += , liblpsolve55-dev $(LPSOLVE_MIN_VERSION)
endif
ifeq "$(USE_LIBSUITESPARSE)" "y"
BUILD_DEPS += , libsuitesparse-dev $(SUITESPARSE_MIN_VERSION)
else
BUILD_DEPS += , libufsparse-dev
endif
endif
ifeq "$(USE_DBUS)" "y"
BUILD_DEPS += , libdbus-glib-1-dev (>= 0.70)
CONFIGURE_FLAGS += --enable-dbus
ifeq "$(ENABLE_BLUETOOTH)" "y"
ifneq (,$(filter bluez, $(SYSTEM_STUFF)))
BUILD_DEPS += , libbluetooth-dev [linux-any]
endif
else
CONFIGURE_FLAGS += --disable-sdremote-bluetooth
endif
endif
ifeq "$(ENABLE_AVAHI)" "y"
BUILD_DEPS += , libavahi-client-dev
CONFIGURE_FLAGS += --enable-avahi
endif
ifeq "$(USE_GSTREAMER)" "y"
BUILD_DEPS += , libgstreamer1.0-dev
CONFIGURE_FLAGS += --enable-gstreamer-1-0
BUILD_DEPS += , libgstreamer-plugins-base1.0-dev
GSTREAMER_PLUGINS_SUGGESTS += , gstreamer1.0-plugins-base, gstreamer1.0-plugins-good, gstreamer1.0-plugins-ugly, gstreamer1.0-plugins-bad, gstreamer1.0-libav
AVMEDIA_BE_DEPENDS += , libreoffice-avmedia-backend-gstreamer
else
CONFIGURE_FLAGS += --disable-gstreamer-1-0
DEBHELPER_OPTIONS += -Nlibreoffice-avmedia-backend-gstreamer
endif
ifeq "$(USE_VLC)" "y"
CONFIGURE_FLAGS += --enable-vlc
BUILD_DEPS += , $(shell debian/scripts/get_libvlc_dep.sh)
ifeq "$(AVMEDIA_BE_DEPENDS)" ""
AVMEDIA_BE_DEPENDS += , libreoffice-avmedia-backend-vlc
else
AVMEDIA_BE_DEPENDS += | libreoffice-avmedia-backend-vlc
endif
else
DEBHELPER_OPTIONS += -Nlibreoffice-avmedia-backend-vlc
endif
ifeq "$(ENABLE_WEBDAV)" "y"
ifeq "$(WEBDAV_LIB)" "neon"
ifneq (,$(filter neon, $(SYSTEM_STUFF)))
ifneq "$(NEON_SECTYPE)" "openssl"
BUILD_DEPS += , libneon$(NEONSONR)-$(NEON_SECTYPE)-dev
else
BUILD_DEPS += , libneon$(NEONSONR)-dev
endif
endif
else
ifneq (,$(filter apr, $(SYSTEM_STUFF)))
BUILD_DEPS += , libaprutil1-dev
endif
ifneq (,$(filter serf, $(SYSTEM_STUFF)))
BUILD_DEPS += , libserf-dev
endif
endif
CONFIGURE_FLAGS += --with-webdav=$(WEBDAV_LIB)
else
CONFIGURE_FLAGS += --with-webdav=no
endif
ifeq "$(ENABLE_HELP)" "n"
CONFIGURE_FLAGS += --without-helppack-integration --without-help
endif
ifneq (,$(filter redland, $(SYSTEM_STUFF)))
BUILD_DEPS += , librdf0-dev (>= 1.0.16-2)
SHLIBS_OVERRIDE += -Xunordf
endif
ifneq (,$(filter epoxy, $(SYSTEM_STUFF)))
BUILD_DEPS += , libepoxy-dev (>= 1.2)
else
BUILD_DEPS += , libegl1-mesa-dev
endif
ifneq (,$(filter glm, $(SYSTEM_STUFF)))
BUILD_DEPS += , libglm-dev (>= 0.9.6.3)
endif
ifeq "$(ENABLE_GIO)" "y"
BUILD_DEPS += , libglib2.0-dev (>= 2.15.0)
else
CONFIGURE_FLAGS += --disable-gio
endif
BUILD_DEPS += , gettext
ifeq "$(ENABLE_DCONF)" "y"
BUILD_DEPS += , libdconf-dev
else
CONFIGURE_FLAGS += --disable-dconf
endif
ifeq ($(ENABLE_MERGELIBS),y)
CONFIGURE_FLAGS += --enable-mergelibs
endif
ifeq ($(ENABLE_LTO),y)
CONFIGURE_FLAGS += --enable-lto
endif
DEJAVU_DEPENDS=fonts-dejavu
# Use compiler cache? Include ccache in DEB_BUILD_OPTIONS for much faster rebuild times
# A complete build uses about 9G of compiler cache.
ifneq (ccache,$(findstring ccache,$(DEB_BUILD_OPTIONS)))
CONFIGURE_FLAGS += --disable-ccache
endif
## Build n projects in parallel?
## DEB_BUILD_OPTIONS=parallel=<n>
## if not specified LibreOffices configure tries to find it out itself
NUM_CPUS=$(shell echo "$(DEB_BUILD_OPTIONS) " | sed -n 's/^\(.* \)\?parallel=\([0-9]\+\).*$$/\2/p')
AVAIL_CPUS := $(shell getconf _NPROCESSORS_ONLN 2>/dev/null || echo 1)
ifeq "$(PARALLEL_BUILD)" "y"
# http://bugs.debian.org/622644
BUILD_DEPS += , make (>= 3.81-8.2)
# we need to specify it only if it differs, otherwise configure autodetects
# it.
ifneq "$(NUM_CPUS)" "$(AVAIL_CPUS)"
CONFIGURE_FLAGS += --with-parallelism=$(NUM_CPUS)
endif
else
CONFIGURE_FLAGS += --without-parallelism
endif
ifeq ($(GCC_VERSION),snapshot)
BUILD_PATH = /usr/lib/gcc-snapshot/bin:$$PATH
BUILD_LD_LIBRARY_PATH = /usr/lib/gcc-snapshot/lib:$$LD_LIBRARY_PATH
BUILD_DEPS += , gcc-snapshot
else
BUILD_PATH = $(CURDIR)/debian/usr/bin:$$PATH
endif
BUILD_PATH := $(CURDIR)/debian/usr/bin:$(BUILD_PATH)
# Because of the stampdir magic, when you actually want to run a rule
# over, you would have to remove the stamp manually. Now, just do
# 'debian/rules <target> <target> ... FORCE=1', and the stamp files
# that match the given targets will be removed automagically.
stampdir_targets+=prepare
stampdir_targets+=build build-arch build-indep maintscripts
stampdir_targets+=install-common install-arch install-indep
stampdir_targets+=binary-arch binary-indep
ifdef FORCE
DUMMY:=$(shell rm -f $(patsubst %,$(STAMP_DIR)/%,$(filter $(stampdir_targets),$(MAKECMDGOALS))))
endif
# If this is defined, then none of the 'long' commands will be run. Useful
# for testing.
# test_rules=1
# Since the final stages use up a large amount of diskspace, provide targets to
# remove them without needing a full rebuild
# Clean up the package directories (about 830M)
clean-debdir:
dh_testdir
# remove generated symlinks / java wrappers
rm -rf debian/usr
find debian -name "*.links" ! -name "libreoffice-dev-doc.links" \
! -name "libreoffice-java-common.links" \
! -name "liblibreofficekitgtk.links" -exec rm {} \;
if [ -d "$(STAMP_DIR)" ]; then rm -rf "$(STAMP_DIR)"; fi
rm -f debian/*.bug-script
rm -f debian/scripts/aotcompile.py*
rm -f l10n.fdupes
rm -f debian/shlibs.local
rm -f debian/*.templates
rm -f debian/libreoffice-dev-doc.doc-base.*
rm -f debian/*.install debian/*.dirs debian/*.changelog
rm -f debian/*.postinst debian/*.postrm debian/*.preinst debian/*.prerm debian/*.triggers
rm -f debian/pom*.xml
mh_clean
dh_clean
clean:
dh_testroot
dh_testdir
if [ -f config.status ]; then \
$(MAKE) distclean; \
rm -f config.status; \
fi
find $(SOURCE_TREE) -name "*.pyc" -exec rm {} \;
rm -rf */*.pro.obsolete
rm -rf $(SOURCE_TREE)/file-lists
rm -rf $(SOURCE_TREE)/pyuno-for*
rm -f autogen.lastrun
rm -f build_error.log
rm -f config/config_version.h
ifeq "$(HELPISOS)" ""
rm -rf images*
endif
rm -f download.list
# obsolete lock file not cleaned up....
rm -f dbaccess/qa/extras/testdocuments/fdo84315.odb.lck
# Files created in debian directory
$(MAKE) -f debian/rules clean-debdir
$(MAKE) -f debian/rules control
# Generate control file, because we have so many different languages
# Based on script by Martin Quinson <Martin.Quinson@tuxfamily.org>
ifeq "$(BUILD_TEST_PACKAGE)" "y"
control: debian/control debian/tests/control
else
control: debian/control
endif
debian/control: $(wildcard debian/control*in) $(SOURCE_TREE)/bin/lo-xlate-lang debian/rules
chmod 755 $(SOURCE_TREE)/bin/lo-xlate-lang
sed -e "s#%$(DEB_VENDOR)=\([^%]*\)%#, \1#g#" \
-e "s#%[A-Za-z]*=[^%]*%##g#" \
-e "s#%BUILD_DEPS_INDEP%#$(strip $(BUILD_DEPS_INDEP))#g" \
-e "s#@BUGS@#$(BUGS)#g" \
< debian/control.in > debian/control
cat debian/control.transitionals.in >> debian/control
cat debian/control.ure.in >> debian/control
cat debian/control.ogltrans.in >> debian/control
ifeq "$(ENABLE_JAVA)" "y"
ifeq "$(ENABLE_MEDIAWIKI)" "y"
cat debian/control.mediawiki.in >> debian/control
endif
ifeq "$(ENABLE_REPORTDESIGN)" "y"
cat debian/control.reportdesign.in >> debian/control
endif
ifeq "$(ENABLE_NLPSOLVER)" "y"
cat debian/control.nlpsolver.in >> debian/control
endif
endif
ifeq "$(PACKAGE_TTF_OPENSYMBOL)" "y"
cat debian/control.fonts.in >> debian/control
endif
ifeq "$(PACKAGE_SDK)" "y"
cat debian/control.sdk.in >> debian/control
endif
ifeq "$(PACKAGE_LOKIT)" "y"
cat debian/control.lokit.in >> debian/control
endif
ifeq "$(BUILD_GTK)" "y"
cat debian/control.gtk2.in >> debian/control
endif
ifeq "$(ENABLE_SYSTRAY)" "y"
cat debian/control.systray.in >> debian/control
endif
ifeq "$(BUILD_GTK3)" "y"
cat debian/control.gtk3.in >> debian/control
endif
ifeq "$(BUILD_KDE)" "y"
cat debian/control.kde.in >> debian/control
endif
ifeq "$(ENABLE_SDBC_POSTGRESQL)" "y"
cat debian/control.postgresql.in >> debian/control
endif
ifeq "$(ENABLE_MYSQLNATIVE)" "y"
cat debian/control.mysql.in >> debian/control
endif
ifeq "$(ENABLE_EVO2)" "y"
cat debian/control.evolution.in >> debian/control
endif
ifeq "$(BUILD_TEST_PACKAGE)" "y"
ifneq "$(OOO_JAVA_ARCHS)" ""
cat debian/control.subsequentcheckbase.in >> debian/control
endif
endif
ifeq "$(PACKAGE_LIBRELOGO)" "y"
cat debian/control.librelogo.in >> debian/control
endif
ifeq "$(ENABLE_FIREBIRD)" "y"
cat debian/control.firebird.in >> debian/control
endif
perl -pi -e "s,%OOO_ARCHS%,$(OOO_ARCHS),g" debian/control
perl -pi -e "s,%OOO_BE_ARCHS%,$(OOO_BE_ARCHS),g" debian/control
perl -pi -e "s,%OOO_LE_ARCHS%,$(OOO_LE_ARCHS),g" debian/control
perl -pi -e "s,%OOO_BASE_ARCHS%,$(OOO_BASE_ARCHS),g" debian/control
perl -pi -e "s,%OOO_NO_BASE_ARCHS%,$(OOO_NO_BASE_ARCHS),"g debian/control
perl -pi -e "s,%OOO_JAVA_ARCHS%,$(OOO_JAVA_ARCHS),g" debian/control
perl -pi -e "s,%OOO_ARCH_DEP_EXTENSIONS_ARCHS%,$(OOO_ARCH_DEP_EXTENSIONS_ARCHS),g" debian/control
perl -pi -e "s,%OOO_REPORTDESIGN_ARCHS%,$(OOO_REPORTDESIGN_ARCHS),g" debian/control
perl -pi -e "s,%OOO_NO_REPORTDESIGN_ARCHS%,$(OOO_NO_REPORTDESIGN_ARCHS),g" debian/control
perl -pi -e "s#%BUILD_DEPS%#$(strip $(BUILD_DEPS))#g" debian/control
ifeq "$(BUILD_TEST_PACKAGE)" "y"
# we want the build deps as dep on subsequentcheckbase, but strip the arch
# specifics as we are arch-all
# for now we filter out the arch-specific libc* and ia64, which is ugly,
# but better than manual bookkeeping. Also filter out the mips(el)-only
# binutils build-dep...
perl -pi -e "s#%BUILD_DEPS_ARCH_ALL%#$(strip $(shell echo '$(BUILD_DEPS), $(BUILD_DEPS_INDEP)'|sed -e 's/,/,\n /g'|grep -v libc0.1| grep -v libc6| grep -v ia64|grep -v binutils|grep -v gcj-jdk|grep -v gcj-native-helper|grep -v libgcj-common|grep -v openjdk-6-jdk|grep -v g++-|grep -v gcc-|sed -e 's/\[[^]]*\]//g'))#g" debian/control
endif
perl -pi -e "s#%JUNIT_MIN_VER%#$(JUNIT_MIN_VER)#g" debian/control
ifeq "$(BUILD_KDE)" "y"
perl -pi -e 's/%LO-DESKTOP-INTEGRATION%/libreoffice-gnome | libreoffice-kde/' debian/control
else
perl -pi -e 's/%LO-DESKTOP-INTEGRATION%/libreoffice-gnome/' debian/control
endif
ifeq (sk,$(findstring sk,$(HELPISOS)))
perl -pi -e 's/(Depends:.*)libreoffice-l10n-sk(.*)$$/\1libreoffice-l10n-sk, libreoffice-help-cs\2/' debian/control
endif
ifeq (pt-BR,$(findstring pt-BR,$(LANGPACKISOS)))
perl -pi -e 's/libreoffice2-l10n-pt-br$$/libreoffice2-l10n-pt-br, broffice/' debian/control
perl -pi -e 's/libreoffice2-l10n-pt-br$$/libreoffice2-l10n-pt-br, broffice/' debian/control
perl -pi -e 's/libreoffice2-l10n-pt-br$$/libreoffice2-l10n-pt-br, broffice/' debian/control
endif
perl -pi -e 's/Package: libreoffice-help-en-us/Package: libreoffice-help-en-us\nReplaces: libreoffice-common (<< 1:3.0.0~dev300m28)/' debian/control
ifeq "$(MYSQL_FLAVOUR)" "mysql"
perl -pi -e "s/(Build-Conflicts: .*)/\1,libmariadbclient-dev,/" debian/control
endif
ifeq (4.4,$(SYSTEM_GCC_VERSION))
perl -pi -e 's/flex \|/flex (>= 2.5.25-7) |/' debian/control
endif
python3 debian/scripts/joinctrl.py < debian/control > debian/control.tmp
mv debian/control.tmp debian/control
# make -l10n-fi suggest libreoffice-spellcheck-fi to
# match myspell-fi and libreoffice-soikko/-voikko
perl -pi -e 's/myspell-dictionary-fi/myspell-dictionary-fi | libreoffice-spellcheck-fi/' debian/control
perl -pi -e 's/hyphen-fi/hyphen-fi | libreoffice-hyphenation-fi/' debian/control
# similar for tr (libreoffice-zemberek)
perl -pi -e 's/myspell-dictionary-tr/myspell-dictionary-tr | libreoffice-spellcheck-tr/' debian/control
ifeq "$(BUILD_KDE)" "y"
perl -pi -e 's/GConf backend$$/GConf backend\n * libreoffice-kde: KDE UI Plugin and KDE File Picker support/' debian/control
endif
ifeq "$(USE_DBUS)" "y"
ifeq "$(ENABLE_BLUETOOTH)" "y"
perl -pi -e 's/paperconf$$/paperconf\n * bluez: Bluetooth support for Impress (slideshow remote control)/' debian/control
endif
perl -pi -e 's/Description: office productivity suite -- presentation/Suggests: bluez\nDescription: office productivity suite -- presentation/' debian/control
endif
ifneq "$(DICT_DIR)" "/usr/share/hunspell"
perl -pi -e 's/^Breaks:.*myspell.*\n//' debian/control
endif
ifeq "$(BUILD_TEST_PACKAGE)" "y"
debian/tests/control: debian/tests/control.in debian/control
# we want the build deps as dep on subsequentcheckbase, but strip the arch
# specifics as we are arch-all
# for now we filter out the arch-specific libc* and ia64, which is ugly,
# but better than manual bookkeeping. Also filter out the mips(el)-only
# binutils build-dep...
sed -e "s#%BUILD_DEPS_ARCH_ALL%#$(strip $(shell echo '$(BUILD_DEPS), $(BUILD_DEPS_INDEP)'|sed -e 's/,/,\n /g'|grep -v libc0.1| grep -v libc6| grep -v ia64|grep -v binutils|grep -v openjdk-6-jdk| grep -v gcc-7 | grep -v g++-7 | sed -e 's/\[[^]]*\]//g'|sed -e s,\<.*\>,,g))#g" < debian/tests/control.in > debian/tests/control
endif
.DELETE_ON_ERROR: debian/control debian/tests/control
# All 'important' targets have 2 lines. The one that is run by
# dpkg-buildpackage or the user, and the one that does the actual work. This
# indirection is needed so that the 'stamp' files that signify when a rule is
# done can be located in a separate 'stampdir'. Recall that make has no way to
# know when a goal has been met for a phony target (like "build" or "install").
#
# At the end of each stampdir target, be sure to run the command 'touch $@'
# so that the target will not be run again. Removing the file will make
# make run the target over.
prepare: $(STAMP_DIR)/prepare
$(STAMP_DIR)/prepare:
dh_testdir
# Make sure needed scripts are executable
set -e;\
for FILE in debian/scripts/move-if-change \
debian/scripts/cleandupes \
debian/scripts/get_libebook_dep.sh \
debian/scripts/get_libvlc_dep.sh \
debian/scripts/get_ttf_version.pl \
autogen.sh; \
do \
chmod 755 $$FILE ;\
done
mkdir -p $(STAMP_DIR)
# Make sure we have /proc mounted - otherwise idlc will fail later.
test -r /proc/version
# create fake file if file not there; we don't use it anyways.
if [ ! -f $(TARFILE_LOCATION)/185d60944ea767075d27247c3162b3bc-unowinreg.dll ]; then \
touch $(TARFILE_LOCATION)/185d60944ea767075d27247c3162b3bc-unowinreg.dll; \
fi
rm -f vcl/qa/cppunit/graphicfilter/data/wmf/fail/seek-1.wmf
touch $@
.PHONY: config_host.mk
config_host.mk:
rm -f config.status autogen.lastrun
PATH=$(BUILD_PATH) LD_LIBRARY_PATH=$(BUILD_LD_LIBRARY_PATH) \
MARIADBCONFIG=$(MARIADBCONFIG) \
FIREBIRD_CFLAGS=$(FIREBIRD_CFLAGS) FIREBIRD_LIBS=$(FIREBIRD_LIBS) \
OPENCOLLADA_CFLAGS=$(OPENCOLLADA_CFLAGS) OPENCOLLADA_LIBS=$(OPENCOLLADA_LIBS) \
COLLADA2GLTF_CFLAGS=$(COLLADA2GLTF_CFLAGS) COLLADA2GLTF_LIBS=$(COLLADA2GLTF_LIBS) \
./autogen.sh $(CONFIGURE_FLAGS)
echo "export gb_TRANS_LANGS_INTEGRAL=$(filter-out en-US,$(BUILD_ISOS))" >> config_host.mk
build:
$(CURDIR)/debian/rules build-arch
$(CURDIR)/debian/rules build-indep
touch $(STAMP_DIR)/$@
build-arch: $(STAMP_DIR)/prepare $(STAMP_DIR)/build-arch
$(STAMP_DIR)/build-arch:
#build-arch: ENABLE_HELP = n PACKAGE_SDK_DOCS = n ENABLE_MEDIAWIKI = n ENABLE_REPORTDESIGN = n ENABLE_SCRIPT_PROVIDER_BSH = n ENABLE_SCRIPT_PROVIDER_JS = n
dh_testdir
# FIXME: Theoretically this should call ./configure instead of
# it exists but that causes the configure flags NOT to be hnoured
# somehow...
PATH=$(BUILD_PATH) LD_LIBRARY_PATH=$(BUILD_LD_LIBRARY_PATH) \
MARIADBCONFIG=$(MARIADBCONFIG) \
FIREBIRD_CFLAGS=$(FIREBIRD_CFLAGS) FIREBIRD_LIBS=$(FIREBIRD_LIBS) \
OPENCOLLADA_CFLAGS=$(OPENCOLLADA_CFLAGS) OPENCOLLADA_LIBS=$(OPENCOLLADA_LIBS) \
COLLADA2GLTF_CFLAGS=$(COLLADA2GLTF_CFLAGS) COLLADA2GLTF_LIBS=$(COLLADA2GLTF_LIBS) \
./autogen.sh $(CONFIGURE_FLAGS) \
--without-doxygen --without-javadoc --disable-ext-wiki-publisher \
--disable-report-builder --disable-scripting-javascript \
--disable-scripting-beanshell \
--with-galleries=no
echo "export gb_TRANS_LANGS_INTEGRAL=$(filter-out en-US,$(BUILD_ISOS))" >> config_host.mk
PATH=$(BUILD_PATH) LD_LIBRARY_PATH=$(BUILD_LD_LIBRARY_PATH) ARCH_FLAGS=$(ARCH_FLAGS) TMP=`mktemp -q -d` $(MAKE) build-non-l10n-only
ifneq (nocheck,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
$(CURDIR)/debian/rules check
endif
ifneq "$(BUILD_ISOS)" "en-US"
# build sysui and some extensions again with all languages; as it contains language-specific help
# and/or descriptions...
$(MAKE) sysui.clean
$(MAKE) mysqlc.clean
make cmd cmd="cd sysui; export WITH_LANG='$(LANGPACKISOS)'; export WITH_LANG_LIST='$(LANGPACKISOS)'; $(MAKE)"
make cmd cmd="cd mysqlc; export WITH_LANG='$(LANGPACKISOS)'; export WITH_LANG_LIST='$(LANGPACKISOS)'; $(MAKE)"
endif
touch $@
build-indep: $(STAMP_DIR)/prepare $(STAMP_DIR)/build-arch $(STAMP_DIR)/build-indep
$(STAMP_DIR)/build-indep:
dh_testdir
$(MAKE) odk.clean
$(MAKE) scp2.clean
rm -f config.status autogen.lastrun
PATH=$(BUILD_PATH) LD_LIBRARY_PATH=$(BUILD_LD_LIBRARY_PATH) \
MARIADBCONFIG=$(MARIADBCONFIG) \
FIREBIRD_CFLAGS=$(FIREBIRD_CFLAGS) FIREBIRD_LIBS=$(FIREBIRD_LIBS) \
OPENCOLLADA_CFLAGS=$(OPENCOLLADA_CFLAGS) OPENCOLLADA_LIBS=$(OPENCOLLADA_LIBS) \
COLLADA2GLTF_CFLAGS=$(COLLADA2GLTF_CFLAGS) COLLADA2GLTF_LIBS=$(COLLADA2GLTF_LIBS) \
./autogen.sh $(CONFIGURE_FLAGS) $(CONFIGURE_FLAGS_INDEP)
PATH=$(BUILD_PATH) LD_LIBRARY_PATH=$(BUILD_LD_LIBRARY_PATH) ARCH_FLAGS=$(ARCH_FLAGS) TMP=`mktemp -q -d` $(MAKE) build-nocheck
ifeq "$(BUILD_TEST_PACKAGE)" "y"
ifeq "$(ENABLE_JUNIT4)" "y"
PATH=$(BUILD_PATH) LD_LIBRARY_PATH=$(BUILD_LD_LIBRARY_PATH) ARCH_FLAGS=$(ARCH_FLAGS) TMP=`mktemp -q -d` $(MAKE) Jar_{OOoRunner,test,ConnectivityTools}
endif
endif
touch $@
check:
ifeq "$(RUN_MAKE_CHECK)" "y"
ifneq (,$(findstring $(DEB_HOST_ARCH),$(OOO_NO_BASE_ARCHS)))
patch -p1 < $(CURDIR)/debian/patches/disable-db-tests.diff
endif
ifeq (,$(findstring $(DEB_HOST_ARCH),$(OOO_EXTENSIONS_ARCHS)))
cd $(SOURCE_TREE)/smoketest && \
patch -p1 < $(CURDIR)/debian/patches/smoketest-disable-extension-tests.diff
endif
$(IGNORE_MAKE_CHECK_FAILURES)t=`mktemp -q -d`; \
cd $(SOURCE_TREE) && \
export PATH=$(BUILD_PATH); \
export TMPDIR=$$t; \
export HOME=$$t; \
export SAL_USE_VCLPLUGIN="svp"; \
export SAL_DISABLE_CUPS="true"; \
unset DISPLAY; \
if [ -x /usr/bin/gdb ]; then ulimit -c unlimited; fi && \
$(MAKE) -k $(CHECKTARGET) || PARALLELISM=1 $(MAKE) $(CHECKTARGET) && \
rm -rf $$t
ifneq (,$(findstring $(DEB_HOST_ARCH),$(OOO_NO_BASE_ARCHS)))
patch -p1 -R < $(CURDIR)/debian/patches/disable-db-tests.diff
endif
ifeq (,$(findstring $(DEB_HOST_ARCH),$(OOO_EXTENSIONS_ARCHS)))
cd $(SOURCE_TREE)/smoketest && \
patch -p1 -R < $(CURDIR)/debian/patches/smoketest-disable-extension-tests.diff
endif
endif
ifeq "$(RUN_PYTESTS)" "y"
cd $(SOURCE_TREE)/pyuno && $(MAKE) PythonTest_pytests
endif
install: $(STAMP_DIR)/install-common $(STAMP_DIR)/install-arch $(STAMP_DIR)/install-indep
install-common: $(STAMP_DIR)/install-common
$(STAMP_DIR)/install-common:
dh_testdir
dh_testroot
$(buildd_discspace_hack)
dh_prep
rm -f debian/*.install debian/*.dirs
# remove those for safety in case the languages might change on
# testbuilds. then the /*/ in dh_installdocs in binary-* won't work
# anymore (different dirs)
rm -rf $(SOURCE_TREE)/instsetoo_native/util/LibreOffice
rm -rf $(SOURCE_TREE)/file-lists
# install LibreOffice.
cd $(SOURCE_TREE)/; \
PATH=$(BUILD_PATH) \
DESTDIR=$(CURDIR)/debian/tmp \
$(MAKE) distro-pack-install
export DESTDIR=$(CURDIR)/debian/tmp ;\
export VERSION=$(OOVER); \
export OOINSTBASE=$(OODIR); \
export OOO_LANGS_LIST="$(ISOS)"; \
$(CURDIR)/debian/scripts/gid2pkgdirs.sh
ifeq "$(BUILD_DBGSYM_PACKAGES)" "y"
make cmd cmd="export DESTDIR=$(CURDIR)/debian/tmp; $(CURDIR)/solenv/bin/install-gdb-printers -a /usr/share/gdb/auto-load/$(OODIR) -c -i /$(OODIR) -p /usr/share/libreoffice/gdb"
endif
# FIXME
cd $(CURDIR)/debian/tmp/pkg && rm -rf \*
# prepare install/dir files for dh
for i in `cd $(CURDIR)/debian/tmp/pkg; ls -1 | xargs`; do \
echo "$${i}/usr/* usr" > debian/$$i.install; \
(cd debian/tmp/pkg/$$i; find . -type d | sed -e "s,\./,,") \
> debian/$$i.dirs; \
done
# the english resources should be in -common
cat debian/libreoffice-l10n-en-US.dirs >> debian/libreoffice-common.dirs
cat debian/libreoffice-l10n-en-US.install >> debian/libreoffice-common.install
rm -f debian/libreoffice-l10n-en-US.dirs debian/libreoffice-l10n-en-US.install
# fix up still sneaking in ./. They break dh_install (it installs
# but wrongly complains about it as not-installed files)
perl -pi -e 's,\./,,' debian/libreoffice-common.install
perl -pi -e 's,\./,,' debian/ure.install
ifneq "$(PACKAGE_LIBRELOGO)" "y"
rm -rf debian/tmp/pkg/libreoffice-librelogo
endif
for i in calc impress draw base writer; do \
echo "../usr/share/appdata/libreoffice-$$i.appdata.xml /usr/share/appdata/" >> $(PKGDIR)-$$i.install; \
done
ifeq "$(PACKAGE_LOKIT)" "y"
echo "../../../include/LibreOfficeKit usr/include" > debian/libreofficekit-dev.install
endif
ifeq "$(ENABLE_INTROSPECTION)" "y"
echo "../usr/share/gir-1.0/LOKDocView-0.1.gir /usr/share/gir-1.0/" > debian/gir1.2-lokdocview-0.1.install
echo "../usr/lib/girepository-1.0/LOKDocView-0.1.typelib /usr/lib/$(DEB_HOST_MULTIARCH)/girepository-1.0" >> debian/gir1.2-lokdocview-0.1.install
endif
dh_installdirs -A
dh_install -A --sourcedir=debian/tmp/pkg --fail-missing
# somehow this isn't installed anymore on -B builds...
if [ ! -f debian/libreoffice-report-builder/$(OODIR)/program/librptlo.so ]; then \
mkdir -p debian/libreoffice-report-builder/$(OODIR)/program/; \
for i in librptlo.so librptuilo.so librptxmllo.so; do \
cp $(CURDIR)/instdir/program/$$i \
debian/libreoffice-report-builder/$(OODIR)/program/; \
done; \
fi
rm -rf debian/tmp/pkg
# fix the desktop files....
cd $(PKGDIR)-common/$(OODIR)/share/xdg/ && \
for i in *.desktop; do \
sed -i -e "s/$(OOVER)//" $$i; \
done
ifneq "$(RELEASE_BUILD)" "y"
cd $(PKGDIR)-common/$(OODIR)/share/xdg/ && \
for i in *.desktop; do \
sed -i -e "s/libreofficedev/libreoffice/" $$i; \
sed -i -e "s/LibreOfficeDev/LibreOffice/" $$i; \
done
endif
# move desktop files to their correct packages
for i in base calc draw impress math writer; do \
mkdir -p $(PKGDIR)-$$i/$(OODIR)/share/xdg; \
mv $(PKGDIR)-common/$(OODIR)/share/xdg/$$i.desktop \
$(PKGDIR)-$$i/$(OODIR)/share/xdg; \
rm -f $(PKGDIR)-$$i/usr/share/applications/libreoffice-$$i.desktop; \
cp $(PKGDIR)-$$i/$(OODIR)/share/xdg/$$i.desktop \
$(PKGDIR)-$$i/usr/share/applications/libreoffice-$$i.desktop; \
done
ifeq "$(ENABLE_JAVA)" "y"
# move officebean.jar into -officebean (They will be moved out of -core
# in the install-arch target). Do the /usr/share move here already
mkdir -p $(PKGDIR)-core/$(shell echo $(OODIR) | sed -e s/lib/share/)/program/classes; \
mv $(PKGDIR)-common/$(OODIR)/program/classes/officebean.jar \
$(PKGDIR)-core/$(shell echo $(OODIR) | sed -e s/lib/share/)/program/classes
# fix the classpath
jh_classpath --classpath="ridl.jar unoil.jar jurt.jar juh.jar" \
$(PKGDIR)-core/$(shell echo $(OODIR) | sed -e s/lib/share/)/program/classes/officebean.jar
ifeq "$(PACKAGE_BASE)" "y"
# move sdbc_hsqldb.jar into -base (do the move
# to /usr/share/java here directly, we do it for the "rest"
# later
mkdir -p $(PKGDIR)-base/$(shell echo $(OODIR) | sed -e s/lib/share/)/program/classes; \
mkdir -p $(PKGDIR)-base/$(OODIR)/program/classes; \
mv $(PKGDIR)-common/$(OODIR)/program/classes/sdbc_hsqldb.jar \
$(PKGDIR)-base/$(shell echo $(OODIR) | sed -e s/lib/share/)/program/classes; \
ln -s $(shell echo /$(OODIR) | sed -e s/lib/share/)/program/classes/sdbc_hsqldb.jar \
$(PKGDIR)-base/$(OODIR)/program/classes/sdbc_hsqldb.jar
ifneq (,$(filter hsqldb, $(SYSTEM_STUFF)))
# fix the classpath (file:// breaks javahelper)
jh_classpath --classpath="$(HSQLDB_JAR) .." \
$(PKGDIR)-base/$(shell echo /$(OODIR) | sed -e s/lib/share/)/program/classes/sdbc_hsqldb.jar
endif
ifeq (,$(filter hsqldb, $(SYSTEM_STUFF)))
# we need this in -base. Otherwise we get unwanted package differences
# in the unstable version and backports which might use internal hsqldb
mkdir -p $(PKGDIR)-base/$(OODIR)/program/classes
mv $(PKGDIR)-common/$(OODIR)/program/classes/hsqldb.jar \
$(PKGDIR)-base/$(OODIR)/program/classes
endif
else
# remove sdbc_hsqldb.jar. otherwise ends up in -java-common
rm -f $(PKGDIR)-common/$(OODIR)/program/classes/sdbc_hsqldb.jar
endif
endif
ifeq "$(BUILD_GTK)" "y"
ifeq "$(ENABLE_SYSTRAY)" "y"
# Gtk quickstarter, so to -gtk (via -gnome)
mkdir -p -m755 $(PKGDIR)-systray/$(OODIR)/share/xdg
mv $(PKGDIR)-common/$(OODIR)/share/xdg/qstart.desktop \
$(PKGDIR)-systray/$(OODIR)/share/xdg
endif
endif
ifeq "$(PACKAGE_SDK)" "y"
# move arch-indep stuff into a libreoffice-dev-common
mkdir -p $(PKGDIR)-dev-common/usr/include
mv $(PKGDIR)-dev/usr/include/libreoffice \
$(PKGDIR)-dev-common/usr/include
# except include/sal/typesizes.h
mkdir -p $(PKGDIR)-dev/usr/include/$(DEB_HOST_MULTIARCH)/libreoffice/sal
mv $(PKGDIR)-dev-common/usr/include/libreoffice/sal/typesizes.h \
$(PKGDIR)-dev/usr/include/$(DEB_HOST_MULTIARCH)/libreoffice/sal
cd $(PKGDIR)-dev-common/usr/include/libreoffice/sal/ && \
ln -s /usr/include/$(DEB_HOST_MULTIARCH)/libreoffice/sal/typesizes.h
mkdir -p $(PKGDIR)-dev-common/usr/share/idl
mv $(PKGDIR)-dev/usr/share/idl/libreoffice \
$(PKGDIR)-dev-common/usr/share/idl
mkdir -p $(PKGDIR)-dev-common/$(OOSDKDIR)
mv $(PKGDIR)-dev/$(OOSDKDIR)/classes \
$(PKGDIR)-dev-common/$(OOSDKDIR)
mv $(PKGDIR)-dev/$(OOSDKDIR)/set* \
$(PKGDIR)-dev-common/$(OOSDKDIR)
mv $(PKGDIR)-dev/$(OOSDKDIR)/config* \
$(PKGDIR)-dev-common/$(OOSDKDIR)
mv $(PKGDIR)-dev/$(OOSDKDIR)/index.html* \
$(PKGDIR)-dev-common/$(OOSDKDIR)
mkdir -p $(PKGDIR)-dev-common/usr/share/libreoffice/sdk
mv $(PKGDIR)-dev/usr/share/libreoffice/sdk/classes \
$(PKGDIR)-dev-common/usr/share/libreoffice/sdk
ifeq "$(PACKAGE_SDK)" "y"
mkdir -p $(PKGDIR)-dev-common/$(OODIR)/share/glade
mv $(PKGDIR)-common/$(OODIR)/share/glade/libreoffice-catalog.xml \
$(PKGDIR)-dev-common/$(OODIR)/share/glade
else
rm -rf $(PKGDIR)-common/$(OODIR)/share/glade
endif
ifeq "$(PACKAGE_SDK_DOCS)" "y"
# move SDK documentation into own package
rm -rf $(PKGDIR)-dev-doc
mkdir -p $(PKGDIR)-dev-doc/usr/share/doc/libreoffice-dev
mv $(PKGDIR)-dev/usr/share/doc/libreoffice/sdk \
$(PKGDIR)-dev-doc/usr/share/doc/libreoffice-dev
mkdir -p $(PKGDIR)-dev-doc/$(OOSDKDIR)
ln -sf /usr/share/doc/libreoffice-dev/sdk/docs \
$(PKGDIR)-dev-doc/$(OOSDKDIR)/docs
mv $(PKGDIR)-dev/$(OOSDKDIR)/examples \
$(PKGDIR)-dev-doc/$(OOSDKDIR)
find $(PKGDIR)-dev-doc/usr/share/doc/ -size 0 -type f -delete
# and fix the symlink now dangling due to the move above
cd $(PKGDIR)-dev-common/$(OOSDKDIR) && \
ln -sf /usr/share/doc/libreoffice-dev/sdk/index.html
endif
ifeq "$(PACKAGE_SDK)" "y"
ifeq "$(ENABLE_JAVA)" "y"
# compat/safety symlink for SDK Java stuff moved to /usr/share
rm -f $(PKGDIR)-dev-common/$(OOSDKDIR)/classes
mkdir -p $(PKGDIR)-dev-common/$(OOSDKDIR)/classes/com/sun/star/lib/loader
cd $(PKGDIR)-dev-common/$(OOSDKDIR)/classes/com/sun/star/lib/loader && \
for i in $(CURDIR)/$(PKGDIR)-dev-common/$(shell echo $(OOSDKDIR) | sed -e s/lib/share/)/classes/com/sun/star/lib/loader/*.class; do \
ln -s `echo $$i | sed -e 's,$(CURDIR)/$(PKGDIR)-dev-common,,'` `basename $$i`; \
done
ifeq "$(PACKAGE_UNOWINREG_DLL)" "y"
mkdir -p $(PKGDIR)-dev-common/$(OOSDKDIR)/classes/win
chmod 644 $(PKGDIR)-dev-common/$(shell echo $(OOSDKDIR) | sed -e s/lib/share/)/classes/win/unowinreg.dll
ln -s /$(shell echo $(OOSDKDIR) | sed -e s/lib/share/)/classes/win/unowinreg.dll \
$(PKGDIR)-dev-common/$(OOSDKDIR)/classes/win/unowinreg.dll
else
rm -rf $(PKGDIR)-dev-common/$(shell echo $(OOSDKDIR) | sed -e s/lib/share/)/classes/win
endif
endif
chmod 644 $(PKGDIR)-dev-common/$(OOSDKDIR)/configure.pl
chmod 755 $(PKGDIR)-dev-common/$(OOSDKDIR)/setsdkenv_unix
# fix permissions
find $(PKGDIR)-dev-common/usr/share/idl/$(OODIRNAME) -type f -exec chmod 644 {} \;
endif
ifeq "$(ENABLE_EVO2)" "y"
mkdir -p $(PKGDIR)-evolution/$(OODIR)/presets/database
mkdir -p $(PKGDIR)-evolution/$(OODIR)/share/registry
mv $(PKGDIR)-common/$(OODIR)/presets/database/evolocal.odb \
$(PKGDIR)-evolution/$(OODIR)/presets/database
endif
# Access2Base IMHO clearly is -base specific :-)
ifeq "$(PACKAGE_BASE)" "y"
mkdir -p $(PKGDIR)-base/$(OODIR)/share/basic
mv $(PKGDIR)-common/$(OODIR)/share/basic/Access2Base \
$(PKGDIR)-base/$(OODIR)/share/basic
cp $(PKGDIR)-common/$(OODIR)/share/basic/dialog.xlc \
$(PKGDIR)-base/$(OODIR)/share/basic
cp $(PKGDIR)-common/$(OODIR)/share/basic/script.xlc \
$(PKGDIR)-base/$(OODIR)/share/basic
# FIXME. Does not scale. This has to be a diversion...
t=`mktemp -q`; grep -v Access2Base $(PKGDIR)-common/$(OODIR)/share/basic/dialog.xlc > \
$$t && mv $$t $(PKGDIR)-common/$(OODIR)/share/basic/dialog.xlc && rm -f $$t
t=`mktemp -q`; grep -v Access2Base $(PKGDIR)-common/$(OODIR)/share/basic/script.xlc > \
$$t && mv $$t $(PKGDIR)-common/$(OODIR)/share/basic/script.xlc && rm -f $$t
else
rm -rf $(PKGDIR)-common/$(OODIR)/share/basic/Access2Base
t=`mktemp -q`; grep -v Access2Base $(PKGDIR)-common/$(OODIR)/share/basic/dialog.xlc > \
$$t && mv $$t $(PKGDIR)-common/$(OODIR)/share/basic/dialog.xlc && rm -f $$t
t=`mktemp -q`; grep -v Access2Base $(PKGDIR)-common/$(OODIR)/share/basic/script.xlc > \
$$t && mv $$t $(PKGDIR)-common/$(OODIR)/share/basic/script.xlc && rm -f $$t
endif
ifeq "$(PACKAGE_SDK)" "y"
# move gengal stuff into -dev
mkdir -p $(PKGDIR)-dev/$(OODIR)/program
mv $(PKGDIR)-core/$(OODIR)/program/gengal.bin \
$(PKGDIR)-dev/$(OODIR)/program
mv $(PKGDIR)-common/$(OODIR)/program/gengal \
$(PKGDIR)-dev/$(OODIR)/program
else
rm -f $(PKGDIR)-core/$(OODIR)/program/gengal.bin
rm -f $(PKGDIR)-common/$(OODIR)/program/gengal
endif
ifneq "$(ENABLE_REPORTDESIGN)" "y"
# unneeded. a no-Java arch, so the report-builder can't work anyway.
# (and we need to remove it here anyway as it otherwise would end up
# in -base/-core)
rm -rf $(PKGDIR)-report-builder
rm -f $(PKGDIR)-core/$(OODIR)/program/librpt*
else
ifeq "$(PACKAGE_BASE)" "y"
# move rpt stuff into -report-builder-bin
rm -rf $(PKGDIR)-report-builder-bin
mkdir -p $(PKGDIR)-report-builder-bin/$(OODIR)/program
# FIXME: it seems that --enable/--disable-reportbuiler affects the install
# location. sigh.
if [ -e $(PKGDIR)-core/$(OODIR)/program/librptlo.so ]; then \
i=core; else i=report-builder; fi; \
mv $(PKGDIR)-$$i/$(OODIR)/program/librpt* \
$(PKGDIR)-report-builder-bin/$(OODIR)/program
endif
endif
# move uno_packages/cache to /var and create symlink for for
# documentation referencing it...
rm -rf $(PKGDIR)-common/$(OODIR)/share/uno_packages
mkdir -p $(PKGDIR)-core/var/spool/$(OODIRNAME)/uno_packages/cache
mkdir -p $(PKGDIR)-core/$(OODIR)/share/uno_packages
ln -s /var/spool/$(OODIRNAME)/uno_packages/cache \
$(PKGDIR)-core/$(OODIR)/share/uno_packages/cache
perl -pi -e \
's,\$$UNO_SHARED_PACKAGES/cache,file:///var/spool/$(OODIRNAME)/uno_packages/cache,g' \
$(PKGDIR)-common/$(OODIR)/program/unorc
# FIXME: What is this? unorc per default only mentiones
# share/uno_packages/cache...
rm -rf $(PKGDIR)-common/$(OODIR)/presets/uno_packages
ifeq "$(ENABLE_FIREBIRD)" "y"
ifeq (,$(filter firebird, $(SYSTEM_STUFF)))
mkdir -p $(PKGDIR)-sdbc-firebird/$(OODIR)/share
mv $(PKGDIR)-common/$(OODIR)/share/firebird \
$(PKGDIR)-sdbc-firebird/$(OODIR)/share
endif
endif
find debian/tmp ! -perm -200 | xargs -r chmod u+w
touch $@
#
# Generate maintainer scripts
maintscripts: $(STAMP_DIR)/maintscripts
$(STAMP_DIR)/maintscripts: $(wildcard debian/shell-lib*.sh) $(wildcard debian/*.preinst.in) $(wildcard debian/*.postinst.in) $(wildcard debian/*.prerm.in) $(wildcard debian/*.postrm.in) debian/control
dh_testdir
rm -f debian/*.{pre,post}{inst,rm}
# generate maintainer scripts from *.in
for PKG in $(PACKAGES); do \
for FILE in postinst postrm preinst prerm triggers; do \
MAINTSCRIPT=debian/$$PKG.$$FILE ; \
if [ -e $$MAINTSCRIPT.in ]; then \
sed -n '1,/^#INCLUDE_SHELL_LIB#$$/p' < $$MAINTSCRIPT.in | sed -e '/^#INCLUDE_SHELL_LIB#$$/d' > $$MAINTSCRIPT; \
if egrep -q "(validate_extension|sync_extension)" $$MAINTSCRIPT.in; then \
cat debian/shell-lib-extensions.sh >> $$MAINTSCRIPT; \
fi; \
sed -n '/^#INCLUDE_SHELL_LIB#$$/,$$p' < $$MAINTSCRIPT.in | sed -e '/^#INCLUDE_SHELL_LIB#$$/d' >> $$MAINTSCRIPT; \
perl -pi -e "s/\@LANGPACKISOS\@/$(LANGPACKISOS)/" $$MAINTSCRIPT; \
perl -pi -e "s,\@OODIR\@,$(OODIR),g" $$MAINTSCRIPT; \
fi; \
done; \
done
touch $@
native-jars: $(STAMP_NATIVE_JARS)
$(STAMP_NATIVE_JARS): $(STAMP_DIR)/install-common
ifeq "$(BUILD_JARS_NATIVE)" "y"
rm -rf debian/tmp/native-jars
mkdir -p debian/tmp/native-jars/gcj
cp -a \
$(PKGDIR)-common/$(OODIR)/program/classes/*.jar \
debian/tmp/native-jars/
cp -a \
$(PKGDIR)-core/$(shell echo $(OODIR) | sed -e s/lib/share/)/program/classes/*.jar \
debian/tmp/native-jars/
ifeq "$(PACKAGE_BASE)" "y"
cp -a \
$(PKGDIR)-base/$(OODIR)/program/classes/*.jar \
debian/tmp/native-jars/
endif
: # remove problematic ones
rm -f debian/tmp/native-jars/ridl.jar
: # compile the others
# the Debian i386 buildd, although having much ram still OOMs without
# this (at unoil.jar).
# Also the native jar build is MUCH faster with this. But it
# won't be accepted into the official libgcj-common package so this
# hack here is needed.
cp /usr/lib/gcc/aotcompile.py debian/scripts
cd debian/scripts && \
patch -p0 < $(CURDIR)/debian/patches/aotcompile-256M-default.diff
PYTHONPATH="debian/scripts:$(shell echo $(PYTHON_SITE) | sed -e s,debian/python-uno,,)" \
AOT_MAKEFLAGS=-j$(NUM_CPUS) aot-compile -L /usr/lib/gcj/$(OODIRNAME) \
debian/tmp/native-jars debian/tmp/native-jars/gcj
gcj-dbtool -n debian/tmp/native-jars/tmp.db 64
find debian/tmp/native-jars/gcj -name '*.db' -print0 \
| xargs -r -0 \
gcj-dbtool -m debian/tmp/native-jars/tmp.db debian/tmp/native-jars/tmp.db || exit 1
rm -f debian/tmp/native-jars/gcj/*.db
endif
touch $@
# Install files generated by setup into arch-dependent package directories
install-arch: $(STAMP_DIR)/install-arch
$(STAMP_DIR)/install-arch: $(STAMP_DIR)/install-common
dh_testdir
dh_testroot
umask 022
# move URE Java stuff to /usr/share/java
mkdir -p debian/ure/usr/share/java
ifeq "$(ENABLE_JAVA)" "y"
mv debian/ure/$(OODIR)/program/classes/* \
debian/ure/usr/share/java
cd debian/ure/$(OODIR)/program/classes && \
for i in $(CURDIR)/debian/ure/usr/share/java/*.jar; do \
ln -sf `echo $$i | sed -e 's,$(CURDIR)/debian/ure,,'` `basename $$i`; \
done
# fix up Class-Path of jurt.jar to be able to find libjpipe.so.
# See http://markmail.org/message/yacqa7oowugxwmn2
jh_classpath --classpath="ridl.jar unoloader.jar ../../lib /$(OODIR)/program ../bin/" \
$(CURDIR)/debian/ure/usr/share/java/jurt.jar
endif
# and the public libs to uno-libs3
mkdir -p debian/uno-libs3/$(OODIR)/program
mkdir -p debian/uno-libs3/usr/lib/$(DEB_HOST_MULTIARCH)
for i in debian/ure/$(OODIR)/program/libuno_*so.3; do \
mv $$i debian/uno-libs3/$(OODIR)/program; \
ln -sf /$(OODIR)/program/`basename $$i` debian/uno-libs3/usr/lib/$(DEB_HOST_MULTIARCH)/`basename $$i`; \
done
# we also need libxmlreaderlo.so, libreglo.so and libunoidllo.so (libuno_cppuhelpergcc3.so.3
# needs it) and libstorelo.so (libreglo.so needs it)
for i in libxmlreaderlo.so libreglo.so libstorelo.so libunoidllo.so; do \
mv debian/ure/$(OODIR)/program/$$i \
debian/uno-libs3/$(OODIR)/program; \
done
ifeq "$(BUILD_KDE)" "y"
# install files for KDEs "create new" ...
mkdir -p $(PKGDIR)-kde/usr/share/templates/.source
for i in $(SOURCE_TREE)/extras/source/shellnew/*; do \
cp $$i $(PKGDIR)-kde/usr/share/templates/.source/`basename $$i`; \
done
cat debian/templates/soffice-template.desktop.in \
| sed -e "s/@APP@/Writer/" \
| sed -e "s/@EXT@/odt/" \
| sed -e "s/@TYPE@/text/" \
> $(PKGDIR)-kde/usr/share/templates/soffice.odt.desktop
cat debian/templates/soffice-template.desktop.in \
| sed -e "s/@APP@/Calc/" \
| sed -e "s/@EXT@/ods/" \
| sed -e "s/@TYPE@/spreadsheet/" \
> $(PKGDIR)-kde/usr/share/templates/soffice.ods.desktop
cat debian/templates/soffice-template.desktop.in \
| sed -e "s/@APP@/Impress/" \
| sed -e "s/@EXT@/odp/" \
| sed -e "s/@TYPE@/presentation/" \
> $(PKGDIR)-kde/usr/share/templates/soffice.odp.desktop
cat debian/templates/soffice-template.desktop.in \
| sed -e "s/@APP@/Draw/" \
| sed -e "s/@EXT@/odg/" \
| sed -e "s/@TYPE@/drawing/" \
> $(PKGDIR)-kde/usr/share/templates/soffice.odg.desktop
endif
# split out gtk stuff
rm -rf $(PKGDIR)-gtk2
mkdir -p -m755 $(PKGDIR)-gtk2/$(OODIR)/program
ifeq "$(BUILD_GTK3)" "y"
rm -rf $(PKGDIR)-gtk3
mkdir -p -m755 $(PKGDIR)-gtk3/$(OODIR)/program
mkdir -p -m755 debian/liblibreofficekitgtk/$(OODIR)/program
mv $(PKGDIR)-gnome/$(OODIR)/program/libvclplug_gtk3lo.so $(PKGDIR)-gtk3/$(OODIR)/program/
mv $(PKGDIR)-core/$(OODIR)/program/liblibreofficekitgtk.so debian/liblibreofficekitgtk/$(OODIR)/program/
endif
mv $(PKGDIR)-gnome/$(OODIR)/program/* $(PKGDIR)-gtk2/$(OODIR)/program/
ifeq "$(BUILD_GTK)" "y"
mkdir -p -m755 $(PKGDIR)-gtk2/$(OODIR)/share
ifeq "$(ENABLE_SYSTRAY)" "y"
mkdir -p $(PKGDIR)-systray/$(OODIR)/program
mv $(PKGDIR)-gtk2/$(OODIR)/program/*qstart*so $(PKGDIR)-systray/$(OODIR)/program
endif
ifeq "$(ENABLE_GIO)" "y"
mv $(PKGDIR)-gtk2/$(OODIR)/program/libucpgio1lo.so \
$(PKGDIR)-gnome/$(OODIR)/program/
mv $(PKGDIR)-gtk2/$(OODIR)/program/liblosessioninstalllo.so \
$(PKGDIR)-gnome/$(OODIR)/program/
endif
endif
ifeq "$(ENABLE_EVO2)" "y"
mkdir -p -m755 $(PKGDIR)-evolution/$(OODIR)/program
mv $(PKGDIR)-gtk2/$(OODIR)/program/libevoab*.so $(PKGDIR)-evolution/$(OODIR)/program
mv $(PKGDIR)-gnome/$(OODIR)/share/registry/evoab.xcd \
$(PKGDIR)-evolution/$(OODIR)/share/registry
# FIXME: When the rdb is correctly generated, move here, too.
endif
ifeq "$(PACKAGE_BASE)" "y"
mkdir -p $(PKGDIR)-base-core/$(OODIR)/program
mv $(PKGDIR)-base/$(OODIR)/program/libdbalo.so \
$(PKGDIR)-base-core/$(OODIR)/program
endif
ifeq "$(ENABLE_JAVA)" "y"
ifneq (,$(filter hsqldb, $(SYSTEM_STUFF)))
# link to system hsqldb
mkdir -p $(PKGDIR)-base/$(OODIR)/program/classes
ln -sf $(HSQLDB_JAR) \
$(PKGDIR)-base/$(OODIR)/program/classes/hsqldb.jar
endif
endif
ifeq "$(ENABLE_JAVA)" "y"
rm -rf $(PKGDIR)-officebean
mkdir -p -m755 $(PKGDIR)-officebean/$(OODIR)/program/classes
mkdir -p -m755 $(PKGDIR)-officebean/$(shell echo $(OODIR) | sed -e s/lib/share/)/program/classes
mv $(PKGDIR)-core/$(shell echo $(OODIR) | sed -e s/lib/share/)/program/classes/officebean.jar \
$(PKGDIR)-officebean/$(shell echo $(OODIR) | sed -e s/lib/share/)/program/classes
ln -s $(shell echo /$(OODIR) | sed -e s/lib/share/)/program/classes/officebean.jar \
$(PKGDIR)-officebean/$(OODIR)/program/classes/officebean.jar
mv $(PKGDIR)-core/$(OODIR)/program/libofficebean.so \
$(PKGDIR)-officebean/$(OODIR)/program
endif
mkdir -p -m755 $(PKGDIR)-base/usr/share/applications \
$(PKGDIR)-core/usr/share/applications
sed -i -e 's/Office;/Office;Graphics;/' $(PKGDIR)-draw/$(OODIR)/share/xdg/draw.desktop
# invalid, according to lintian. make it shut up.
for i in writer calc impress draw math base; do \
perl -pi -e 's/Application;//; s/X-Red-Hat-Base;//; s/X-SuSE-Core-Office;//; s/X-MandrivaLinux-.*;//;' $(PKGDIR)-$$i/$(OODIR)/share/xdg/$$i.desktop; \
done
ifeq "$(ENABLE_SYSTRAY)" "y"
perl -pi -e 's/Application;//' $(PKGDIR)-systray/$(OODIR)/share/xdg/qstart.desktop
endif
ifeq "$(ENABLE_PYTHON)" "y"
# PyUNO packaging
install -d $(PYTHON_SITE)
# prepend stuff so that it works when the module is not in LOs
# directories but in $(PYTHON_SITE). Can't be a patch (anymore)
# as otherwise the python-based unittests fail miserably.
echo "import sys, os" > $(PYTHON_SITE)/uno.py
echo "sys.path.append('/$(OODIR)/program')" >> $(PYTHON_SITE)/uno.py
echo "os.putenv('URE_BOOTSTRAP', 'vnd.sun.star.pathname:/$(OODIR)/program/fundamentalrc')" >> $(PYTHON_SITE)/uno.py
cat debian/python3-uno/$(OODIR)/program/uno.py >> $(PYTHON_SITE)/uno.py
rm -f debian/python3-uno/$(OODIR)/program/uno.py
mv debian/python3-uno/$(OODIR)/program/unohelper.py $(PYTHON_SITE)
touch debian/python3-uno/$(OODIR)/program/pythonloader.unorc
chmod u+w debian/python3-uno/$(OODIR)/program/pythonloader.unorc
( echo 'PYTHONHOME=file:///usr/lib/python$(PYMAJOR).$(PYMINOR)' ;\
echo 'PYTHONPATH=$$PYTHONHOME $$PYTHONHOME/site-packages $$PYTHONHOME/lib-dynload $$PYTHONHOME/lib-tk $$ORIGIN' \
) >> debian/python3-uno/$(OODIR)/program/pythonloader.unorc
chmod u-w debian/python3-uno/$(OODIR)/program/pythonloader.unorc
ifeq "$(ENABLE_SCRIPT_PROVIDER_PYTHON)" "y"
rm -f debian/libreoffice-script-provider-python/$(OODIR)/share/extensions/script-provider-for-python/registration/LICENSE
endif
mkdir -p debian/python3-uno/usr/share/doc/python3-uno
cp -r $(SOURCE_TREE)/pyuno/demo \
debian/python3-uno/usr/share/doc/python3-uno; \
for i in $(SOURCE_TREE)/pyuno/doc/*; do \
cp $$i debian/python3-uno/usr/share/doc/python3-uno; \
done
cd debian/python3-uno/usr/share/doc/python3-uno && \
find . -type d -name "CVS" | xargs -r rm -rf
endif
# should be empty now, remove if there
rm -rf $(PKGDIR)-core/$(OODIR)/ure
# create wrapper scripts
cd $(PKGDIR)-dev/$(OOSDKDIR)/bin && \
for i in *; do \
mv $$i $$i.bin && \
( \
echo "#!/bin/sh"; \
echo "# wrapper script for OOos SDK programs"; \
echo ""; \
echo 'LD_LIBRARY_PATH=/$(OODIR)/program /$(OOSDKDIR)/bin/`basename $$0`.bin "$$@"'; \
) > $$i; \
chmod 755 $$i; \
done
# remove symlink, it should be in -dev-doc
cd $(PKGDIR)-dev/$(OOSDKDIR) && \
rm docs
rm -f $(PKGDIR)-dev/usr/share/doc/libreoffice/sdk/readme/LICENSE.gz
endif
# remove empty resource directories
for i in draw base writer impress calc math; do \
rm -rf $(PKGDIR)-$$i/$(OODIR)/program/resource; \
done
ifeq "$(ENABLE_MINIMIZER)" "y"
rm -f $(PKGDIR)-presentation-minimizer/$(OODIR)/share/extensions/presentation-minimizer/registration/LICENSE
endif
ifeq "$(ENABLE_PRESENTER_CONSOLE)" "y"
rm -f usr/lib/libreoffice/share/extensions/presenter-screen/registration/LICENSE
endif
ifeq "$(ENABLE_MYSQLNATIVE)" "y"
rm -f $(PKGDIR)-mysql-connector/$(OODIR)/share/extensions/mysql-connector-ooo/registration/LICENSE
endif
ifeq "$(PACKAGE_SDK)" "y"
# move ui-previewer into -dev
mkdir -p $(PKGDIR)-dev/$(OODIR)/program
mv $(PKGDIR)-core/$(OODIR)/program/ui-previewer \
$(PKGDIR)-dev/$(OODIR)/program
else
rm -f $(PKGDIR)-core/$(OODIR)/program/ui-previewer
endif
ifeq "$(USE_GSTREAMER)" "y"
mkdir -p $(PKGDIR)-avmedia-backend-gstreamer/$(OODIR)/program
mv $(PKGDIR)-core/$(OODIR)/program/libavmediagst.so \
$(PKGDIR)-avmedia-backend-gstreamer/$(OODIR)/program
endif
ifeq "$(USE_VLC)" "y"
mkdir -p $(PKGDIR)-avmedia-backend-vlc/$(OODIR)/program
mv $(PKGDIR)-core/$(OODIR)/program/libavmediavlc.so \
$(PKGDIR)-avmedia-backend-vlc/$(OODIR)/program
endif
ifeq "$(ENABLE_JAVA)" "y"
mkdir -p $(PKGDIR)-sdbc-hsqldb/$(OODIR)/program
mkdir -p $(PKGDIR)-sdbc-hsqldb/usr/lib/libreoffice/program/classes
mkdir -p $(PKGDIR)-sdbc-hsqldb/usr/share/libreoffice/program/classes
mv $(PKGDIR)-base/$(OODIR)/program/libhsqldb.so \
$(PKGDIR)-sdbc-hsqldb/$(OODIR)/program
ifneq (,$(filter hsqldb, $(SYSTEM_STUFF)))
mv $(PKGDIR)-base/usr/lib/libreoffice/program/classes/hsqldb.jar \
$(PKGDIR)-sdbc-hsqldb/usr/lib/libreoffice/program/classes
endif
for i in lib share; do \
mv $(PKGDIR)-base/usr/$$i/libreoffice/program/classes/sdbc_hsqldb.jar \
$(PKGDIR)-sdbc-hsqldb/usr/$$i/libreoffice/program/classes; \
done
endif
ifeq "$(ENABLE_FIREBIRD)" "y"
mkdir -p $(PKGDIR)-sdbc-firebird/$(OODIR)/program
mv $(PKGDIR)-base/$(OODIR)/program/libfirebird_sdbclo.so \
$(PKGDIR)-sdbc-firebird/$(OODIR)/program
ifeq (,$(filter firebird, $(SYSTEM_STUFF)))
for i in libEngine12.so libfbclient.so.2; do \
mv $(PKGDIR)-core/$(OODIR)/program/$$i \
$(PKGDIR)-sdbc-firebird/$(OODIR)/program; \
done
endif
endif
mkdir -p $(PKGDIR)-base-drivers/$(OODIR)/program
for i in `find $(PKGDIR)-base/$(OODIR)/program/ -name "*.so" \
-a \! -name "libdbulo*" -a \! -name "libdbaxml*" -a \! -name "libdbp*" -a \! -name "libabplo.so"`; do \
mv $$i \
$(PKGDIR)-base-drivers/$(OODIR)/program; \
done
ifeq "$(ENABLE_JAVA)" "y"
# somehow --has-package-version doesn't overwrite version and without <version>...</version>
# we get a NullPointerException when calling mh_installjar
for i in ridl unoloader; do \
sed -e s/@version@/$(shell echo $(DEB_VERSION_UPSTREAM) | cut -d~ -f1)/ \
< $(SOURCE_TREE)/ridljar/pom.$$i.xml > debian/pom.$$i.xml; \
done
sed -e s/@version@/$(shell echo $(DEB_VERSION_UPSTREAM) | cut -d~ -f1)/ \
< $(SOURCE_TREE)/jurt/pom.jurt.xml > debian/pom.jurt.xml
sed -e s/@version@/$(shell echo $(DEB_VERSION_UPSTREAM) | cut -d~ -f1)/ \
< $(SOURCE_TREE)/javaunohelper/pom.juh.xml > debian/pom.juh.xml
mh_installpoms -pure
for i in juh jurt ridl unoloader; do \
mh_installjar -pure -l debian/pom.$$i.xml instdir/program/classes/$$i.jar; \
done
sed -e s/@version@/$(shell echo $(DEB_VERSION_UPSTREAM) | cut -d~ -f1)/ \
< $(SOURCE_TREE)/bean/pom.officebean.xml > debian/pom.officebean.xml
mh_installpoms -plibreoffice-officebean
mh_installjar -plibreoffice-officebean -l debian/pom.officebean.xml instdir/program/classes/officebean.jar
endif
# fix permission
chmod 644 $(PKGDIR)-ogltrans/$(OODIR)/program/opengl/vortexVertexShader.glsl
for i in $(ARCH_DEP_PACKAGES); do \
if [ -e debian/$$i.bug-script.in ]; then \
cat debian/$$i.bug-script.in \
| sed -e "s/@PLATFORMID@/$(PLATFORMID)/" \
| sed -e "s/@OOVER@/$(OOVER)/" \
> debian/$$i.bug-script; \
fi ;\
done
# generate .links files from *.in
for PKG in $(ARCH_DEP_PACKAGES); do \
LINKS=debian/$$PKG.links ; \
if [ -e $$LINKS.in ]; then \
sed -e "s#\@OODIR\@#$(OODIR)#g" \
< $$LINKS.in > $$LINKS ; \
fi; \
done
for PKG in $(ARCH_DEP_PACKAGES); do \
case $$PKG in \
uno-libs*|ure*) \
;; \
*) \
cat debian/changelog \
| sed -e '/^openoffice/,$$d' \
> debian/$$PKG.changelog; \
;; \
esac; \
done
ifeq "$(ENABLE_MERGELIBS)" "y"
# somehow we fail to have sax in mergelibs
cp instdir/program/libsaxlo.so \
$(PKGDIR)-core/$(OODIR)/program/libsaxlo.so
endif
touch $@
# Install files generated by setup into arch-independent package directories
install-indep: $(STAMP_DIR)/install-indep
#$(STAMP_DIR)/install-indep: debian/libreoffice.install
#$(STAMP_DIR)/install-indep: debian/libreoffice-mimelnk.install
#$(STAMP_DIR)/install-indep: debian/libreoffice.dirs
$(STAMP_DIR)/install-indep: $(STAMP_DIR)/build-indep $(STAMP_DIR)/install-common
dh_testdir
dh_testroot
ifneq "$(shell echo $(USE_GSTREAMER)$(USE_VLC) | grep -q y && echo 0)" "0"
# sound doesn't work anyway, remove the .wav files to save space
rm -rf $(PKGDIR)-common/$(OODIR)/share/gallery/sounds
rm -f $(PKGDIR)-common/$(OODIR)/share/gallery/sg9.*
endif
rm -f $(PKGDIR)-common/$(OODIR)/program/oo_product.bmp
# install openoffice-xlate-lang
install -d -m755 $(PKGDIR)-common/usr/share/$(OODIRNAME)/bin
install -m755 $(SOURCE_TREE)/bin/lo-xlate-lang \
$(PKGDIR)-common/usr/share/$(OODIRNAME)/bin
ifeq "$(ENABLE_HELP)" "n"
# when we don't build helpcontent2 here we are missing helpxsl.zip so
# this file doesn't get installed either. Do it manually..
mkdir -p -m755 $(PKGDIR)-common/$(shell echo $(OODIR) | sed -e s/lib/share/)/help && \
cp $(SOURCE_TREE)/xmlhelp/util/main_transform.xsl \
$(PKGDIR)-common/$(shell echo $(OODIR) | sed -e s/lib/share/)/help
cp $(SOURCE_TREE)/xmlhelp/util/idxcaption.xsl \
$(PKGDIR)-common/$(shell echo $(OODIR) | sed -e s/lib/share/)/help
cp $(SOURCE_TREE)/xmlhelp/util/idxcontent.xsl \
$(PKGDIR)-common/$(shell echo $(OODIR) | sed -e s/lib/share/)/help
endif
ifeq "$(PACKAGE_SDK)" "y"
ifeq "$(PACKAGE_SDK_DOCS)" "y"
rm -f $(PKGDIR)-dev-doc/usr/share/doc/libreoffice-dev-doc/LICENSE
perl -pi -e 's,license.html,http://www.gnu.org/licenses/lgpl.html,' \
$(PKGDIR)-dev-doc/$(OOSDKDIR)/index.html
find $(PKGDIR)-dev-doc/$(OODIR)/sdk/examples -type f -exec chmod 644 {} \;
endif
endif
ifeq "$(ENABLE_JAVA)" "y"
# move common Java stuff to -java-common
rm -rf $(PKGDIR)-java-common
mkdir -p $(PKGDIR)-java-common/$(OODIR)/program/classes
mkdir -p $(PKGDIR)-java-common/$(OODIR)/share/Scripts
mkdir -p $(PKGDIR)-java-common/$(shell echo $(OODIR) | sed -e s/lib/share/)/program/classes
mv $(PKGDIR)-common/$(OODIR)/share/Scripts/java \
$(PKGDIR)-java-common/$(OODIR)/share/Scripts
mv $(PKGDIR)-common/$(OODIR)/program/classes/* \
$(PKGDIR)-java-common/$(shell echo $(OODIR) | sed -e s/lib/share/)/program/classes
cd $(PKGDIR)-java-common/$(OODIR)/program/classes && \
for i in $(CURDIR)/$(PKGDIR)-java-common/$(shell echo $(OODIR) | sed -e s/lib/share/)/program/classes/*; do \
case "`basename $$i`" in aportisdoc.jar|pexcel.jar|pocketword.jar) continue ;; \
*) ln -s `echo $$i | sed -e 's,$(CURDIR)/$(PKGDIR)-java-common,,'` `basename $$i` ;; esac; \
done
ifeq "$(BUILD_TEST_PACKAGE)" "y"
ifeq "$(ENABLE_JUNIT4)" "y"
rm -rf $(PKGDIR)-subsequentcheckbase
mkdir -p $(PKGDIR)-subsequentcheckbase/$(OODIR)/program/classes/
for jar in OOoRunner test test-tools ConnectivityTools; do \
cp workdir/Jar/$$jar.jar $(PKGDIR)-subsequentcheckbase/$(OODIR)/program/classes/; \
done
endif
endif
endif
# fix permissions
for i in editpic poll savepic show webcast; do \
chmod 755 $(PKGDIR)-common/$(OODIR)/share/config/webcast/$$i.pl; \
done
chmod 644 $(PKGDIR)-common/$(OODIR)/LICENSE.fodt
chmod 644 $(PKGDIR)-common/$(OODIR)/CREDITS.fodt
# FIXME. Do we really need this (ALV2 mandating it) or can this go?
chmod 644 $(PKGDIR)-common/$(OODIR)/NOTICE
rm -rf $(PKGDIR)-common/$(OODIR)/LICENSE
# set PYTHONPATH in unopkg
perl -pi -e 's,unset XENVIRONMENT,unset XENVIRONMENT\n\nexport PYTHONPATH=\"/$(OODIR)/program\"\n\n,' \
$(PKGDIR)-common/$(OODIR)/program/unopkg
ifeq "$(PACKAGE_TTF_OPENSYMBOL)" "y"
mkdir -p debian/fonts-opensymbol/usr/share/fonts/truetype/openoffice
mv $(PKGDIR)-common/$(OODIR)/share/fonts/truetype/opens___.ttf \
debian/fonts-opensymbol/usr/share/fonts/truetype/openoffice
rm -rf $(PKGDIR)-common/$(OODIR)/share/fonts/truetype
else
rm -f $(PKGDIR)-common/$(OODIR)/share/fonts/truetype/opens___.ttf
endif
# remove extra license files
rm -rf $(PKGDIR)-common/$(OODIR)/licenses
rm -f $(PKGDIR)-common/$(OODIR)/share/readme/LICENSE*
rm -f $(PKGDIR)-common/$(OODIR)/THIRDPARTYLICENSEREADME.html
rm -f $(PKGDIR)-common/$(OODIR)/LICENSE.html
# remove extra readme files
rm -rf $(PKGDIR)-common/$(OODIR)/readmes
rm -f $(PKGDIR)-common/$(OODIR)/share/readme/README*
rm -f $(PKGDIR)-common/$(OODIR)/README.html
rm -f $(PKGDIR)-common/$(OODIR)/README
# URE got moved to /usr/lib, so this is obsolete
for i in ure/lib ure; do \
if [ -e $(PKGDIR)-common/$(OODIR)/$$i ]; then \
rmdir $(PKGDIR)-common/$(OODIR)/$$i; \
fi; \
done
# move psprint.conf into /etc
mkdir -p $(PKGDIR)-common/etc/$(OODIRNAME)
mv $(PKGDIR)-common/$(OODIR)/share/psprint/psprint.conf \
$(PKGDIR)-common/etc/$(OODIRNAME)
ln -s /etc/$(OODIRNAME)/psprint.conf \
$(PKGDIR)-common/$(OODIR)/share/psprint/psprint.conf
# prepare a fake sofficerc in the place where OOo expects it
# which does nothing except reference the "normal" one
# which we put into /etc
mv $(PKGDIR)-common/$(OODIR)/program/sofficerc \
$(PKGDIR)-common/etc/$(OODIRNAME)/sofficerc
( \
echo "# *DO NOT* CHANGE THIS FILE. IT ONLY TAKES THE SETTINGS FROM"; \
echo "# /etc/$(OODIRNAME)/sofficerc. CHANGE THAT FILE IF YOU"; \
echo "# REALLY WANT TO CHANGE SOMETHING."; \
echo "FHS_CONFIG_FILE=file:///etc/$(OODIRNAME)/sofficerc"; \
echo "" >> $(PKGDIR)-common/$(OODIR)/program/sofficerc; \
) > $(PKGDIR)-common/$(OODIR)/program/sofficerc
cat $(PKGDIR)-common/etc/$(OODIRNAME)/sofficerc \
| perl -p -e 's/(.*)=(.*)/$$1=\$${\$$FHS_CONFIG_FILE:Bootstrap:$$1}/' \
>> $(PKGDIR)-common/$(OODIR)/program/sofficerc
# except for URE_BOOTSTRAP...
TMP=`mktemp -q`; \
grep -v URE_BOOTSTRAP $(PKGDIR)-common/$(OODIR)/program/sofficerc > $$TMP && mv $$TMP $(PKGDIR)-common/$(OODIR)/program/sofficerc && \
grep URE_BOOTSTRAP $(PKGDIR)-common/etc/$(OODIRNAME)/sofficerc >> $(PKGDIR)-common/$(OODIR)/program/sofficerc && \
grep -v URE_BOOTSTRAP $(PKGDIR)-common/etc/$(OODIRNAME)/sofficerc > $$TMP && mv $$TMP $(PKGDIR)-common/etc/$(OODIRNAME)/sofficerc
install -m 644 debian/soffice.sh \
$(PKGDIR)-common/etc/$(OODIRNAME)/soffice.sh
ifeq "$(ENABLE_HELP)" "n"
# the helpimgs are not included when we don't build with help here.
# Add them now because libreoffice-help-* packaged in contrib or so
# will need them
set -e; \
for i in $(IMAGES); do \
z=images_$$i.zip; \
echo "adding helpimgs to $$z..."; \
rm -rf $$z; mkdir $$z; \
cd $$z; \
unzip -q $(CURDIR)/$(PKGDIR)-common/$(OODIR)/share/config/$$z && \
cp -r $(CURDIR)/$(SOURCE_TREE)/default_images/res/helpimg res && \
chmod +w $(CURDIR)/$(PKGDIR)-common/$(OODIR)/share/config/$$z && \
zip -q -r $(CURDIR)/$(PKGDIR)-common/$(OODIR)/share/config/$$z *; \
cd ..; \
rm -rf $$z; \
done
endif
set -e; \
for i in $(IMAGES); do \
z=images_$$i.zip; p=$$i; \
if [ "$$i" = "breeze_dark" ]; then p=breeze; fi; \
mkdir -p $(PKGDIR)-style-$$p/$(shell echo $(OODIR) | sed -e s/lib/share/)/share/config; \
mv $(PKGDIR)-common/$(OODIR)/share/config/$$z \
$(PKGDIR)-style-$$p/$(shell echo $(OODIR) | sed -e s/lib/share/)/share/config/; \
mkdir -p $(PKGDIR)-style-$$p/$(OODIR)/share/config; \
ln -s /$(shell echo $(OODIR) | sed -e s/lib/share/)/share/config/$$z \
$(PKGDIR)-style-$$p/$(OODIR)/share/config/$$z; \
done
ifeq "$(RELEASE_BUILD)" "n"
mv $(PKGDIR)-common/$(OODIR)/share/config/tango_testing.zip \
$(PKGDIR)-style-tango/$(OODIR)/share/config
endif
ifeq "$(DEB_VENDOR)" "Debian"
# install Debian presentation template
mkdir -p $(PKGDIR)-common/$(OODIR)/share/template/en-US/presnt
install -m644 debian/templates/*.otp $(PKGDIR)-common/$(OODIR)/share/template/en-US/presnt/
endif
ifeq "$(PACKAGE_SDK)" "y"
# add symlinks for docs and examples
cd $(PKGDIR)-dev-doc/$(OOSDKDIR) && \
rm -rf docs && \
ln -sf /usr/share/doc/libreoffice-dev/sdk/docs docs
endif
ifeq "$(ENABLE_JAVA)" "y"
ifeq "$(ENABLE_SCRIPT_PROVIDER_BSH)" "y"
mkdir -p $(PKGDIR)-script-provider-bsh/$(OODIR)/share/Scripts
mv $(PKGDIR)-common/$(OODIR)/share/Scripts/beanshell \
$(PKGDIR)-script-provider-bsh/$(OODIR)/share/Scripts
endif
ifeq "$(ENABLE_SCRIPT_PROVIDER_JS)" "y"
mkdir -p $(PKGDIR)-script-provider-js/$(OODIR)/share/Scripts
mv $(PKGDIR)-common/$(OODIR)/share/Scripts/javascript \
$(PKGDIR)-script-provider-js/$(OODIR)/share/Scripts
endif
endif
ifeq "$(ENABLE_MEDIAWIKI)" "y"
rm -f $(PKGDIR)-wiki-publisher/$(OODIR)/share/extensions/wiki-publisher/registration/LICENSE
rm -f $(PKGDIR)-wiki-publisher/$(OODIR)/share/extensions/wiki-publisher/license/THIRDPARTYLICENSEREADME.html
endif
# unopkg creates stuff in there.
mkdir -p $(PKGDIR)-common/$(OODIR)/share/prereg
mkdir -p $(PKGDIR)-common/$(shell echo $(OODIR) | sed -e s/usr/var/)/share/prereg/bundled
ln -s /$(shell echo $(OODIR) | sed -e s/usr/var/)/share/prereg/bundled \
$(PKGDIR)-common/$(OODIR)/share/prereg/bundled
for i in $(ARCH_INDEP_PACKAGES); do \
if [ -e debian/$$i.bug-script.in ]; then \
cat debian/$$i.bug-script.in \
| sed -e "s/@PLATFORMID@/$(PLATFORMID)/" \
> debian/$$i.bug-script; \
fi ;\
done
# generate .links files from *.in
for PKG in $(ARCH_INDEP_PACKAGES); do \
LINKS=debian/$$PKG.links ; \
if [ -e $$LINKS.in ]; then \
sed -e "s#\@OODIR\@#$(OODIR)#g" \
< $$LINKS.in > $$LINKS ; \
fi; \
done
for PKG in $(ARCH_INDEP_PACKAGES); do \
case $$PKG in \
*-opensymbol) \
;; \
*) \
cat debian/changelog \
| sed -e '/^openoffice/,$$d' \
> debian/$$PKG.changelog; \
;; \
esac; \
done
# install extension shell lib for use by extensions not from here
install -D -m644 debian/shell-lib-extensions.sh \
$(PKGDIR)-common/usr/share/$(OODIRNAME)/shell-lib-extensions.sh
ifneq "$(ENABLE_HELP)" "n"
# those are needed in /usr/share, too
mkdir -p $(PKGDIR)-common/$(shell echo $(OODIR) | sed -e s/lib/share/)
mv $(PKGDIR)-common/$(OODIR)/help \
$(PKGDIR)-common/$(shell echo $(OODIR) | sed -e s/lib/share/)
endif
# help is in /usr/share
sed -i 's,$$(instpath)/help,/$(shell echo $(OODIR) | sed -e s/lib/share/)/help,' \
$(PKGDIR)-common/$(OODIR)/share/registry/main.xcd
# compat dirs, the split icons thing need it
mkdir -p $(PKGDIR)-common/$(shell echo $(OODIR) | sed -e s/lib/share/)/program
mkdir -p $(PKGDIR)-common/$(shell echo $(OODIR) | sed -e s/lib/share/)/program
# enable session handling and recovery
perl -pi -e 's,<prop oor:name="DocumentStoreUIEnabled" oor:type="xs:boolean"><value>false</value></prop>,<prop oor:name="DocumentStoreUIEnabled" oor:type="xs:boolean"><value>true</value></prop>,' $(PKGDIR)-common/$(OODIR)/share/registry/main.xcd
# examples. move where they belong
mkdir -p $(PKGDIR)-common/usr/share/doc/libreoffice-common/examples
for i in oo-ldap.xcd.sample oo-ad-ldap.xcd.sample; do \
mv $(PKGDIR)-common/$(OODIR)/share/registry/$$i \
$(PKGDIR)-common/usr/share/doc/libreoffice-common/examples; \
ln -s /usr/share/doc/libreoffice-common/examples/$$i $(PKGDIR)-common/$(OODIR)/share/registry/$$i; \
done
# install font config. Doesn't get installed with
# --without-fonts.
# FIXME: Shouldn't this be in /etc/fonts/conf.d with a symlink here?
install -m644 -D $(SOURCE_TREE)/external/more_fonts/fonts/fc_local.conf \
$(PKGDIR)-common/$(OODIR)/share/fonts/truetype/fc_local.conf
# register technical.dic
perl -pi -e 's/standard.dic;/standard.dic;technical.dic;/' $(PKGDIR)-common/$(OODIR)/share/registry/main.xcd
#ifeq "$(PACKAGE_SDK)" "y"
# # install gengal stuff into -dev
# mkdir -p $(PKGDIR)-dev/$(OODIR)/program
# install -m644 $(SOURCE_TREE)/svx/$(shell . $(SOURCE_TREE)/bin/get_config_variables OUTPATH PROEXT; echo $$OUTPATH$$PROEXT)/bin/gengalrc \
# $(PKGDIR)-common/$(OODIR)/program/gengalrc
#endif
ifeq "$(ENABLE_JAVA)" "y"
# somehow --has-package-version doesn't overwrite version and without <version>...</version>
# we get a NullPointerException when calling mh_installjar
sed -e s/@version@/$(shell echo $(DEB_VERSION_UPSTREAM) | cut -d~ -f1)/ \
< $(SOURCE_TREE)/unoil/pom.unoil.xml > debian/pom.unoil.xml
mh_installpoms -plibreoffice-java-common
mh_installjar -plibreoffice-java-common -l debian/pom.unoil.xml instdir/program/classes/unoil.jar
endif
touch $@
binary-arch: $(STAMP_DIR)/binary-arch
$(STAMP_DIR)/binary-arch: $(STAMP_DIR)/install-arch debian/control $(STAMP_DIR)/maintscripts
dh_testdir
dh_testroot
for pkg in $(ARCH_DEP_PACKAGES) ; do \
rm -f debian/$$pkg.*.debhelper;\
rm -rf debian/$$pkg/DEBIAN;\
done
# not for uno-libs3/ure, as it otherwise picks up a (wrong) dependency on -core.
# maybe we should --link-doc=uno-libs3 as everything arch-dep needs it anyway?
# But how does it play with .symbols then?
# Also not for extensions, as they have an own version
# python3-uno has additional examples...
dh_installdocs -a -A -Nure -Nuno-libs3 \
-Npython3-uno -Nlibreoffice-mysql-connector --link-doc=libreoffice-core
dh_installdocs -pure -puno-libs3 -ppython3-uno -plibreoffice-mysql-connector
cp workdir/CustomTarget/readlicense_oo/readme/README_en-US \
$(PKGDIR)-core/usr/share/doc/libreoffice-core/README
dh_installdebconf -a
dh_installman -a
for i in writer calc draw base math impress; do \
for i in `find $(PKGDIR)-$$i -type l -name "lo*.1"`; do \
mv $$i $$i.gz; \
if [ "`readlink $$i`" != "libreoffice.1.gz" ]; then \
ln -sf libreoffice.1.gz $$i.gz; \
fi; \
done; \
done
dh_installchangelogs -a -XChangeLog -k
dh_installmime -a
dh_python3 -ppython3-uno --no-ext-rename --no-guessing-deps
dh_python3 -ppython3-uno --no-ext-rename --no-guessing-deps $(OODIR)/program
dh_lintian -a
dh_bugfiles -a -A
dh_link -a -X.desktop
ifeq "$(BUILD_DBGSYM_PACKAGES)" "y"
rm -rf debian/$(URE_DBG_ROOT) debian/$(CORE_DBG_ROOT) debian/$(WRITER_DBG_ROOT)
dh_strip -a -Nure -Nuno-libs3 $(DH_STRIP_DBG_OPTION_LO)
dh_strip -pure $(DH_STRIP_DBG_OPTION_URE)
dh_strip -puno-libs3 $(DH_STRIP_DBG_OPTION_UNO_LIBS)
# dh_strip --dbg-package= is not idempotent, force copying of the binaries
# again...
rm -f $(STAMP_DIR)/install-common
mkdir -p debian/$(CORE_DBG_ROOT)/usr/share/gdb/auto-load/$(OODIR)
mv $(CURDIR)/debian/tmp/usr/share/gdb/auto-load/$(OODIR)/program \
debian/$(CORE_DBG_ROOT)/usr/share/gdb/auto-load/$(OODIR)
# I think a -dbg-common is overkill. Although this means that this all only
# will work if libreoffice-dbg is installed..
mkdir -p debian/$(CORE_DBG_ROOT)/usr/share/libreoffice/gdb
mv $(CURDIR)/debian/tmp/usr/share/libreoffice/gdb/libreoffice \
debian/$(CORE_DBG_ROOT)/usr/share/libreoffice/gdb
mkdir -p debian/$(WRITER_DBG_ROOT)/usr/share/gdb/auto-load/$(OODIR)/program
mkdir -p debian/$(WRITER_DBG_ROOT)/usr/share/libreoffice/gdb/libreoffice/
for i in sw writerfilter; do \
if [ -f debian/$(CORE_DBG_ROOT)/usr/share/gdb/auto-load/$(OODIR)/program/lib$${i}lo.so-gdb.py ]; then \
mv debian/$(CORE_DBG_ROOT)/usr/share/gdb/auto-load/$(OODIR)/program/lib$${i}lo.so-gdb.py \
debian/$(WRITER_DBG_ROOT)/usr/share/gdb/auto-load/$(OODIR)/program/; \
fi; \
mv debian/$(CORE_DBG_ROOT)/usr/share/libreoffice/gdb/libreoffice/$$i.py \
debian/$(WRITER_DBG_ROOT)/usr/share/libreoffice/gdb/libreoffice; \
done
# FIXME: or better ure-dbg (ure/lib?). Then again ure is a link which is in -common
# anyways...
mkdir -p debian/$(UNO_LIBS_DBG_ROOT)/usr/share/gdb/auto-load/$(OODIR)/program
mv debian/$(CORE_DBG_ROOT)/usr/share/gdb/auto-load/$(OODIR)/program/libuno_cppu.so.3-gdb.py \
debian/$(UNO_LIBS_DBG_ROOT)/usr/share/gdb/auto-load/$(OODIR)/program
mv debian/$(CORE_DBG_ROOT)/usr/share/gdb/auto-load/$(OODIR)/program/libuno_sal.so.3-gdb.py \
debian/$(UNO_LIBS_DBG_ROOT)/usr/share/gdb/auto-load/$(OODIR)/program
mkdir -p debian/$(UNO_LIBS_DBG_ROOT)/usr/share/libreoffice/gdb/libreoffice
mv debian/$(CORE_DBG_ROOT)/usr/share/libreoffice/gdb/libreoffice/cppu.py \
debian/$(UNO_LIBS_DBG_ROOT)/usr/share/libreoffice/gdb/libreoffice
mv debian/$(CORE_DBG_ROOT)/usr/share/libreoffice/gdb/libreoffice/sal.py \
debian/$(UNO_LIBS_DBG_ROOT)/usr/share/libreoffice/gdb/libreoffice
else
dh_strip -a
endif
dh_fixperms -a
dh_icons -a
dh_compress -a -X.py -X.mk -X.sxd
ifeq "$(ENABLE_INTROSPECTION)" "y"
dh_girepository -a debian/liblibreofficekitgtk/$(OODIR)/program
endif
dh_makeshlibs -puno-libs3 -V"uno-libs3 (>= $(shell grep UREPACKAGEVERSION $(SOURCE_TREE)/instsetoo_native/util/openoffice.lst | awk '{ print $$2 }' | cut -d. -f1-3)~), ure" -- -c0 -d -V -v`echo $(BINARY_VERSION) | cut -d: -f2`
dh_makeshlibs -n -pure -V"ure (>= $(shell grep UREPACKAGEVERSION $(SOURCE_TREE)/instsetoo_native/util/openoffice.lst | awk '{ print $$2 }' | cut -d. -f1-3)~)" -- -d -V -v`echo $(BINARY_VERSION) | cut -d: -f2`
# ugly hack, but why does that happen? It's not in .symbols...
TMP=`mktemp -q`; \
grep -v PRIVATE debian/uno-libs3/DEBIAN/symbols > $$TMP && \
mv $$TMP debian/uno-libs3/DEBIAN/symbols && \
chmod 644 debian/uno-libs3/DEBIAN/symbols
dh_installdeb -a
ifeq "$(BUILD_KFREEBSD)" "y"
cat debian/shlibs.override.libc >> debian/shlibs.local
endif
# no shlibs dependencies on internal libs (which are dynamic)
ifeq (,$(filter icu, $(SYSTEM_STUFF)))
cat debian/shlibs.override.icu >> debian/shlibs.local
endif
ifneq (,$(filter libvisio, $(SYSTEM_STUFF)))
cat debian/shlibs.override.libvisio >> debian/shlibs.local
endif
ifeq (,$(filter libwpd, $(SYSTEM_STUFF)))
cat debian/shlibs.override.libwpd >> debian/shlibs.local
endif
ifeq (,$(filter libwpg, $(SYSTEM_STUFF)))
cat debian/shlibs.override.libwpg >> debian/shlibs.local
endif
ifeq (,$(filter libwps, $(SYSTEM_STUFF)))
cat debian/shlibs.override.libwps >> debian/shlibs.local
endif
ifeq (,$(filter libodfgen, $(SYSTEM_STUFF)))
cat debian/shlibs.override.libodfgen >> debian/shlibs.local
endif
ifeq (,$(filter libmwaw, $(SYSTEM_STUFF)))
cat debian/shlibs.override.libmwaw >> debian/shlibs.local
endif
ifeq (,$(filter librevenge, $(SYSTEM_STUFF)))
cat debian/shlibs.override.librevenge >> debian/shlibs.local
endif
ifeq (,$(filter libetonyek, $(SYSTEM_STUFF)))
cat debian/shlibs.override.libetonyek >> debian/shlibs.local
endif
ifeq (,$(filter libstaroffice, $(SYSTEM_STUFF)))
cat debian/shlibs.override.libstaroffice >> debian/shlibs.local
endif
ifeq (,$(filter orcus, $(SYSTEM_STUFF)))
cat debian/shlibs.override.orcus >> debian/shlibs.local
endif
ifeq (,$(filter liblangtag, $(SYSTEM_STUFF)))
cat debian/shlibs.override.liblangtag >> debian/shlibs.local
endif
# the other way as the above, depend on a newer libcmis to that the
# advertised google 2-factor-auth fixes are present
ifneq (,$(filter libcmis, $(SYSTEM_STUFF)))
cat debian/shlibs.override.libcmis >> debian/shlibs.local
endif
ifneq (,$(filter firebird, $(SYSTEM_STUFF)))
# force the values of .shlibs which gives us a (wanted) (>= 3.0.0~)
# instead of .symbols which gives os only a (>= 2.5.0.25784~ReleaseCandidate1.ds2)...
# FIXME: libfbclient2*.shlibs doesnt exist currently
# cat /var/lib/dpkg/info/libfbclient2*.shlibs >> debian/shlibs.local
endif
LD_LIBRARY_PATH="$(FAKEROOT_LIBDIR):debian/uno-libs3/$(OODIR)/program:debian/ure/$(OODIR)/program:$(PKGDIR)-core/$(OODIR)/program:$(PKGDIR)-base-core/$(OODIR)/program:$(PKGDIR)-base/$(OODIR)/program:$(PKGDIR)-writer/$(OODIR)/program" \
dh_shlibdeps -a \
-Lure -Luno-libs3 \
-ldebian/uno-libs3/$(OODIR)/program:debian/ure/$(OODIR)/program:$(PKGDIR)-core/$(OODIR)/program:$(PKGDIR)-base/$(OODIR)/program \
$(SHLIBS_OVERRIDE)
ifneq (,$(filter redland, $(SYSTEM_STUFF)))
# dpkg-shlibdeps "in practice" always will look for this in
# /usr/lib/openoffice/basisX.Y/program due to the RPATH and the
# dh_shlibdeps would fail. It's excluded, and we now need to do it
# manually. Saves us a versioned build-conflict with ourselves
# which quickly can get outdated
perl -pi -e 's/(shlibs.*$$)/$$1, $(shell cat /var/lib/dpkg/info/$(shell dpkg -S /usr/lib/$(DEB_HOST_MULTIARCH)/`objdump -p $(PKGDIR)-core/$(OODIR)/program/libunordf*.so | grep NEEDED | grep librdf | awk '{ print $$2 }'` | cut -d: -f1)\:$(DEB_HOST_ARCH).shlibs | awk '{ print $$3,$$4,$$5 }')/' $(PKGDIR)-core.substvars
endif
# Clean up .substvars values added by uno-libs3.symbols (adds uno-libs3, ure):
# 1) don't make uno-libs3 depend on ure...
perl -pi -e 's/, ure$$//' debian/uno-libs3.substvars
# 2) and prevent ure to depend on itself..
perl -pi -e 's/, ure \(.*\)$$//' debian/ure.substvars
ifeq "$(ENABLE_JAVA)" "y"
for p in $(ARCH_DEP_PACKAGES); do \
if [ "$$p" = "libreoffice-presentation-console" ]; then continue; fi; \
jh_depends -p$$p -Xure; \
done
ifeq "$(PACKAGE_BASE)" "y"
perl -pi -e "s/base-files,//" \
debian/libreoffice-sdbc-hsqldb.substvars
endif
# jh_depends adds ure (${source:Version}) entries. They are overly strict
# and do not fit anyway given ure has a different versioning scheme. Excluded
# above, readd here unversioned
perl -pi -e 's/^(java:Depends.*$$)/\1, ure/' \
debian/libreoffice-officebean.substvars
endif
# This switch to dh_shlibdeps reduces the 'libXXX not found' warnings but
# causes ldd crashes sometimes when used with fakeroot:
# -l $(PKGDIR)-core/$(OPENOFFICEDIR)/program
dh_gencontrol -a $(DEBHELPER_OPTIONS) -Nure -Nuno-libs3 \
-Nlibreoffice-mysql-connector -- \
-V"ure:Version=$(shell grep UREPACKAGEVERSION $(SOURCE_TREE)/instsetoo_native/util/openoffice.lst | awk '{ print $$2 }')" \
-V'base-version=$(BASE_VERSION)' \
-V'oover=$(OOVER)' \
-V'next-oover=$(NEXT_OOVER)' \
-V'help-l10n-virtual-version=$(HELP_L10N_VIRTUAL_VERSION)' \
-V'base-hsqldb-depends=$(BASE_HSQLDB_DEPENDS)' \
-V'java-common-depends=$(JAVA_COMMON_DEPENDS) $(JAVA_COMMON_DEPENDS_VERSION)' \
-V'java-runtime-depends=$(JAVA_RUNTIME_DEPENDS)' \
-V'Binary-Version=$(BINARY_VERSION)' \
-V'ooo-officebean-dep=$(OOO_OFFICEBEAN_DEP)' \
-V'kde-iconset-dep=$(KDE_ICONSET_DEP)' \
-V'lpsolve-dep=$(LPSOLVE_DEP)' \
-V'gstreamer-plugins-suggests=$(GSTREAMER_PLUGINS_SUGGESTS)' \
-V'libebook-dep=$(shell debian/scripts/get_libebook_dep.sh)' \
-V'libvlc-dep=$(shell debian/scripts/get_libvlc_dep.sh)' \
-V'idlc-cpp-depends=$(IDLC_CPP_DEPENDS)' \
-V'pyuno-depends=$(PYUNO_DEPENDS)' \
-V'avmedia-be-depends=$(AVMEDIA_BE_DEPENDS)' \
-V'dejavu-depends=$(DEJAVU_DEPENDS)' \
-V'opencl-sug=$(OPENCL_SUGGESTS)' \
-V'gnome-gtk-recommends=$(GNOME_GTK_RECOMMENDS)' \
-V'python-six-recommends=$(PYTHON_SIX_RECOMMENDS)' \
-V'firebird-engine-depends=$(FIREBIRD_ENGINE_DEPENDS)' \
-v$(BINARY_VERSION)
ifneq (,$(findstring $(DEB_HOST_ARCH),$(OOO_ARCH_DEP_EXTENSIONS_ARCHS)))
ifeq "$(PACKAGE_BASE)" "y"
ifeq "$(ENABLE_MYSQLNATIVE)" "y"
dh_gencontrol -plibreoffice-mysql-connector -- \
-v$(shell grep "<version" $(SOURCE_TREE)/mysqlc/source/description.xml | perl -pi -e 's,<version value=\"(.*)\" />,\1,; s/^\s+//; s/\s+$$//')+LibO`echo $(BINARY_VERSION) | cut -d: -f2`
endif
endif
endif
dh_gencontrol -pure -puno-libs3 -- \
-V"ure:Version=`echo $(BINARY_VERSION) | cut -d: -f2`" \
-v"`echo $(BINARY_VERSION) | cut -d: -f2`"
ifeq "$(BUILD_DBGSYM_PACKAGES)" "y"
for i in libreoffice-core libreoffice-writer uno-libs3; do \
perl -pi -e 's/^(Depends:.*)/\1\nRecommends: gdb, $(PYTHON_SIX_RECOMMENDS)/' \
debian/.debhelper/$$i/dbgsym-root/DEBIAN/control; \
done
endif
dh_md5sums -a
dh_builddeb -a $(DEBHELPER_OPTIONS) $(BUILDDEB_OPTIONS)
touch $@
binary-indep: $(GSI_EXPORT_STAMP) $(STAMP_DIR)/binary-indep
$(STAMP_DIR)/binary-indep: $(STAMP_DIR)/install-indep debian/control $(STAMP_DIR)/maintscripts
ifneq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH),$(OOO_JAVA_ARCHS)))
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
echo "For uploads with binary-all packages, please use arches where Java is enabled"
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
endif
dh_testdir
ifneq ($(PACKAGE_SDK_DOCS),y)
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
echo "For uploads with binary-all packages, please use arches where the SDK docs are enabled!!!!"
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
endif
dh_testdir
dh_testroot
for pkg in $(ARCH_INDEP_PACKAGES) ; do \
rm -f debian/$$pkg.*.debhelper;\
rm -rf debian/$$pkg/DEBIAN;\
done
ifeq "$(PACKAGE_SDK)" "y"
for i in common cpp java; do \
cat debian/lo-$$i-ref.in \
| sed -e "s/@lo_sources_ver@/$(lo_sources_ver)/" \
> debian/libreoffice-dev-doc.doc-base.lo-$$i-ref; \
done
UDK_CPP_FILES=`find $(CURDIR)/debian/libreoffice-dev-doc/usr/share/doc/libreoffice-dev/sdk/docs/cpp/ref | sed -e 's,$(CURDIR)/debian/libreoffice-dev-doc,,g' | xargs`; \
echo "Files: $$UDK_CPP_FILES" >> debian/libreoffice-dev-doc.doc-base.lo-cpp-ref
ifeq "$(ENABLE_JAVA)" "y"
UDK_JAVA_FILES=`find $(CURDIR)/debian/libreoffice-dev-doc/usr/share/doc/libreoffice-dev/sdk/docs/java/ref | sed -e 's,$(CURDIR)/debian/libreoffice-dev-doc,,g' | xargs`; \
echo "Files: $$UDK_JAVA_FILES" >> debian/libreoffice-dev-doc.doc-base.lo-java-ref
endif
# xargs strips the many files here so we need to post-process it.
UDK_COMMON_FILES=`find $(CURDIR)/debian/libreoffice-dev-doc/usr/share/doc/libreoffice-dev/sdk/docs/common/ref | sed -e 's,$(CURDIR)/debian/libreoffice-dev-doc,,g' | xargs`; \
TMP=`mktemp -q`; \
cp debian/libreoffice-dev-doc.doc-base.lo-idl-ref $$TMP; \
echo "Files: $$UDK_COMMON_FILES" >> $$TMP; \
cat $$TMP | perl -e 'while(<>) { if (/^Files/) {$$f=1;} if ($$f eq "1") { chomp(); } print $$_; }' > debian/libreoffice-dev-doc.doc-base.lo-idl-ref; \
rm -f $$TMP
# no idea why this happens; afais this can't come from above
# since it doesn't affect the files at the end of the lines...
# But fix it..
perl -pi -e 's,html/,html /,g' debian/libreoffice-dev-doc.doc-base.lo-idl-ref
endif
# not for fonts-opensymbol and extensions, as they have an own version.
# And librelogo gets an own changelog
# And libreofficekit gets an own README
# libreoffice-dev-doc installs directly into /usr/share/doc/libreoffice-dev...
dh_installdocs -i -A -Nlibreoffice-librelogo -Nfonts-opensymbol \
-Nlibreoffice-wiki-publisher -Nlibreoffice-nlpsolver \
-Nlibreofficekit-dev -Nlibreoffice-dev-doc --link-doc=libreoffice-common
dh_installdocs -plibreoffice-librelogo -pfonts-opensymbol -plibreoffice-wiki-publisher -plibreoffice-nlpsolver \
-plibreofficekit-dev -plibreoffice-dev-doc
cp workdir/CustomTarget/readlicense_oo/readme/README_en-US \
$(PKGDIR)-common/usr/share/doc/libreoffice-common/README
dh_installman -i
for i in `find $(PKGDIR)-common -type l -name "lo*.1"`; do \
mv $$i $$i.gz; \
if [ "`readlink $$i`" != "libreoffice.1.gz" ]; then \
ln -sf libreoffice.1.gz $$i.gz; \
fi; \
done
dh_installchangelogs -i -XChangeLog -Nlibreoffice-librelogo -k
ifeq "$(PACKAGE_LIBRELOGO)" "y"
dh_installchangelogs -plibreoffice-librelogo -k librelogo/source/ChangeLog
endif
ifeq "$(PACKAGE_SDK_DOCS)" "y"
dh_doxygen -plibreoffice-dev-doc
endif
dh_installmime -i
dh_lintian -i
dh_bugfiles -i -A
dh_link -i -X.desktop
# dh_link -X does not work for .links stuff. And adding it there and
# fixing it up later because it's relative doesn't make that much sense.
# So do it here.
mkdir -p $(PKGDIR)-common/usr/share/applications
rm $(PKGDIR)-common/usr/share/applications/libreoffice-startcenter.desktop
cp $(PKGDIR)-common/$(OODIR)/share/xdg/startcenter.desktop \
$(PKGDIR)-common/usr/share/applications/libreoffice-startcenter.desktop
dh_fixperms -i
dh_icons -i
dh_compress -i -X.py -X.mk -X.sxd -X.xcd.sample
dh_installdeb -i
ifeq "$(ENABLE_JAVA)" "y"
for p in $(ARCH_INDEP_PACKAGES); do \
if echo "$$p" | grep -q help; then continue; fi; \
jh_depends -p$$p \
-Xlibreoffice-report-builder; \
done
endif
ifeq "$(BUILD_TEST_PACKAGE)" "y"
perl -pi -e 's/junit4/junit4 $(JUNIT_MIN_VER)/' \
debian/libreoffice-subsequentcheckbase.substvars
endif
dh_gencontrol -i $(DEBHELPER_OPTIONS) \
-Nlibreoffice-wiki-publisher \
-Nlibreoffice-nlpsolver \
-Nfonts-opensymbol -- \
-V'base-version=$(BASE_VERSION)' \
-V'oover=$(OOVER)' \
-V'next-oover=$(NEXT_OOVER)' \
-V'help-l10n-virtual-version=$(HELP_L10N_VIRTUAL_VERSION)' \
-V'java-common-depends=$(JAVA_COMMON_DEPENDS)' \
-V'java-runtime-depends=$(JAVA_RUNTIME_DEPENDS)' \
-V'textcat-data-recommends=$(TEXTCAT_DATA_RECOMMENDS)' \
-V'pyuno-depends=$(PYUNO_DEPENDS)' \
-V'Binary-Version=$(BINARY_VERSION)' \
-v$(BINARY_VERSION)
ifeq "$(PACKAGE_TTF_OPENSYMBOL)" "y"
dh_gencontrol -pfonts-opensymbol -- \
-v$(shell echo `echo $(BINARY_VERSION) | cut -d: -f1` + 1 | bc):$(shell debian/scripts/get_ttf_version.pl debian/fonts-opensymbol/usr/share/fonts/truetype/openoffice/opens___.ttf)+LibO`echo $(BINARY_VERSION) | cut -d: -f2`
endif
ifeq "$(ENABLE_MEDIAWIKI)" "y"
dh_gencontrol -plibreoffice-wiki-publisher -- \
-V'java-runtime-depends=$(MEDIAWIKI_JAVA_RUNTIME_DEPENDS)' \
-v$(shell grep "<version" $(SOURCE_TREE)/swext/mediawiki/src/description.xml | perl -pi -e 's,<version value=\"(.*)\"/>,\1,; s/^\s+//')+LibO`echo $(BINARY_VERSION) | cut -d: -f2`
endif
ifeq "$(ENABLE_NLPSOLVER)" "y"
dh_gencontrol -plibreoffice-nlpsolver -- \
-V'java-runtime-depends=$(JAVA_RUNTIME_DEPENDS)' \
-v$(shell grep "<version" $(SOURCE_TREE)/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver/description.xml | perl -pi -e 's,<version value=\"(.*)\"/>,\1,; s/^\s+//')+LibO`echo $(BINARY_VERSION) | cut -d: -f2`
endif
ifeq "$(ENABLE_REPORTDESIGN)" "y"
dh_gencontrol -plibreoffice-report-builder -- \
-V'base-version=$(BASE_VERSION)' \
-V'report-builder-jar-depends=$(REPORT_BUILDER_JAR_DEPENDS)' \
-V'java-runtime-depends=$(JAVA_RUNTIME_DEPENDS)'
endif
dh_md5sums -i
dh_builddeb -i $(DEBHELPER_OPTIONS) $(BUILDDEB_OPTIONS)
touch $@
binary: binary-arch binary-indep
ifeq "$(USE_GIT_TARBALLS)" "y"
# $(1) is the upstream name of the repo
# $(2) is the name of the tarball
# $(3) is the path to archive (empty for everything)
#
# according to policy get-orig-source has to download to the current dir, thus
# should not require a dh_testdir. However, like this we can have clean deps
# from build and download the source, configure, build, pack in on piece. As
# get-orig-source is an optional target anyway, we stick to support only this
# case and not random dirs. see also: debian bug 494141
# also, we need to run configure to create the external tarball anyway
GIT_INSTALLED:=$(shell which git >/dev/null 2>/dev/null && echo "y")
get_orig_tarball=$(CURDIR)/../libreoffice_$(DEB_VERSION_UPSTREAM).orig$(1).tar.xz
define pack_gittarball
$(if $(GIT_INSTALLED),,$(error You need git.))
dh_testdir
TMPD=`mktemp -d $(if $(TMP),-p $(TMP))` && \
mkdir $${TMPD}/archive && \
git clone --bare $(GIT_BASEURL)/$(1) $${TMPD}/repo -b $(GIT_BRANCH) && \
git archive --remote $${TMPD}/repo --format=tar --prefix libreoffice-$(DEB_VERSION_UPSTREAM)/ $(GIT_TAG) |tar x -C $${TMPD}/archive && \
tar cvJf $(2) -C $${TMPD}/archive/$(3) --transform 's,./,,' . && \
rm -rf $${TMPD}
endef
define unpack_gittarball
dh_testdir
mkdir -p $(CURDIR)/$(1)
test -f $(CURDIR)/$(1)/.gitignore || tar xvJf $(2) -C $(CURDIR)/$(1) $(3)
endef
ifneq ($(filter get-orig-source unpack,$(MAKECMDGOALS)),)
$(call get_orig_tarball):
$(call pack_gittarball,core,$@,)
$(call get_orig_tarball,-helpcontent2):
$(call pack_gittarball,help,$@,libreoffice-$(DEB_VERSION_UPSTREAM)/)
$(call get_orig_tarball,-%):
$(call pack_gittarball,$*,$@,libreoffice-$(DEB_VERSION_UPSTREAM)/)
# Get upstream external sources
$(call get_orig_tarball,-src): helpcontent2/makefile.pmk translations/makefile.mk .gitignore
dh_testdir
rm -rf src
mkdir -p src
./autogen.sh $(filter-out --disable-fetch-external --with-system-lpsolve --with-system-orcus,$(CONFIGURE_FLAGS)) --with-all-tarballs
$(MAKE) download gb_LO_VER=$(DEB_VERSION_UPSTREAM)
# removing the biggest internal tarballs to keep the source tree size
# reasonable -- we likely never want to use those internal anyway
rm $(foreach tarball,boost_* *-JLanguageTool-* *-cairo-* *-icu4c-* *-postgresql-* Python-* *-dbghelp.dll *cros* *deja* *liberation* *Libertine* *open-sans-font* *pt-serif-font*,src/$(tarball))
tar cvJf $@ -C src --transform 's,./,,' .
# using flag files for unpacking
.gitignore: $(call get_orig_tarball)
$(call unpack_gittarball,,$<,--strip-components=1)
translations/makefile.mk: $(call get_orig_tarball,-translations)
$(call unpack_gittarball,translations,$<,)
helpcontent2/makefile.pmk: $(call get_orig_tarball,-helpcontent2)
$(call unpack_gittarball,helpcontent2,$<,)
src/fetch.log: $(call get_orig_tarball,-src) patched
$(call unpack_gittarball,src,$<,)
get-orig-source: $(call get_orig_tarball,-src) src/fetch.log
dh_testdir
unpack: src/fetch.log
dh_testdir
endif
endif
COMMA:=,
APOSTROPHE:='
QUOTE:="
define sed-escape
$(subst $(QUOTE),\x22,$(subst $(APOSTROPHE),\x27,$(subst $(COMMA),\x2c,$(1))))
endef
update-l10n:
dh_testdir
sed -e 's,@BUILD_DEPS@,$(call sed-escape,$(BUILD_DEPS)),' \
-e 's,@BUILD_DEPS_INDEP@,$(call sed-escape,$(BUILD_DEPS_INDEP)),' \
-e 's,@CONFIGURE_FLAGS@,$(call sed-escape,$(filter-out --enable-mergelibs --with-branding%,$(CONFIGURE_FLAGS))),' \
-e 's,@CONFIGURE_FLAGS_LANG@,$(call sed-escape,$(CONFIGURE_FLAGS_LANG)),' \
-e 's,@LANGPACKISOS@,$(call sed-escape,$(LANGPACKISOS)),' \
-e 's,@ISOS@,$(call sed-escape,$(ISOS)),' \
-e 's,@HELPISOS@,$(call sed-escape,$(HELPISOS)),' \
-e 's,@JAVA_MAINVER@,$(call sed-escape,$(JAVA_MAINVER)),' \
< debian/debian-l10n/config.in > debian/debian-l10n/config
sed -e 's,@BUILD_DEPS@,$(call sed-escape,$(BUILD_DEPS)),' \
-e 's,@BUILD_DEPS_INDEP@,$(call sed-escape,$(BUILD_DEPS_INDEP)),' \
< debian/debian-l10n/control.in > debian/debian-l10n/control
sed -e 's,^libreoffice,libreoffice-l10n,' \
< debian/changelog > debian/debian-l10n/changelog
$(foreach LANGPACKISO,$(filter-out en-US ca-valencia,$(LANGPACKISOS)),\
./debian/scripts/create-l10n-control \
$(LANGPACKISO) \
< debian/debian-l10n/control.lang.in \
>> debian/debian-l10n/control;)
$(foreach HELPISO,$(filter-out ca-valencia,$(HELPISOS)),\
./debian/scripts/create-l10n-control \
$(HELPISO) \
< debian/debian-l10n/control.help.in \
>> debian/debian-l10n/control;)
$(foreach debdir,patches source templates,\
cp -a ./debian/$(debdir) ./debian/debian-l10n/$(debdir) && ) true
$(foreach debfile,compat copyright,\
mkdir -p $(dir ./debian/debian-l10n/$(debfile)) && \
cp -a ./debian/$(debfile) ./debian/debian-l10n/$(debfile) && ) true
.PHONY: control
.PHONY: clean-debdir clean-instsetoo clean-objectdirs clean default
.PHONY: prepare build build-indep build-arch install-arch install-indep
.PHONY: get-orig-source unpack patched l10n-config
.PHONY: $(stampdir_targets)
# vim:set noet ai sts=8 sw=8 tw=0:
|