-
Notifications
You must be signed in to change notification settings - Fork 38
/
libreoffice.spec
4642 lines (3952 loc) · 157 KB
/
libreoffice.spec
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
# TODO:
# - kf6
# - -core/-ure dependency loop
# - fix configure arguments (+ compare with FC)
# - create CoinMP library package for PLD (https://projects.coin-or.org/CoinMP)
# - --enable-avahi for Impress remote control? (BR: avahi-devel >= 0.6.10)
# - --with-system-rhino?
# - system odfvalidator and officeotron?
# - xapian-omega support for help?
#
# NOTE: normal build (x86_64) requires about ? GB of disk space:
# $BUILD_ROOT ? GB
# BUILD 23 GB
# RPMS 1.4 GB
# SRPMS ? GB
#
# Conditional build:
%bcond_without java # Java support (required for help support)
%bcond_without kde5 # KDE5 L&F packages
%bcond_without gtk3 # GTK3 L&F
%bcond_without gtk4 # GTK4 L&F
%bcond_without qt5 # QT5 L&F
%bcond_without qt6 # QT6 L&F
%bcond_with mono # C# bindings (mono not supported as of 6.4.x)
%bcond_without mozilla # Mozilla components (NPAPI plugin)
%bcond_without i18n # i18n packages creation (extra build time)
%bcond_with ccache # use ccache to speed up builds
%bcond_with icecream # use icecream to speed up builds
%bcond_without introspection # GObject introspection files
%bcond_without parallelbuild # use greater number of jobs to speed up build (default: 1)
%bcond_with tests # testsuite execution
%bcond_without eot # Embedded OpenType fonts support
%bcond_without firebird # Firebird-SDBC driver
%bcond_without pgsql # PostgreSQL-SDBC driver
%bcond_without systemtap # systemtap probes support
%bcond_with system_agg # system agg library (not supported as of 6.4.x, pdfium uses included version)
%bcond_without system_beanshell # system Java BeanShell library
%bcond_with system_cmis # system libcmis library (build fails)
%bcond_with system_coinmp # system CoinMP library (not in PLD yet)
%bcond_with system_hsqldb # system Java HSQLDB library
%bcond_without system_hunspell # system hunspell library
%bcond_without system_hyphen # system ALTLinuxhyph
# this list is same as icedtea6
%ifnarch i486 i586 i686 pentium3 pentium4 athlon %{x8664} aarch64
%undefine with_java
%endif
%if %{without java}
%undefine with_system_beanshell
%undefine with_system_hsqldb
%endif
%if %{without gtk3}
%undefine with_introspection
%endif
%if %{with kde5}
%define with_qt5 1
%endif
%define major_ver 24.2.6
%define qt5_ver 5.6
%define qt6_ver 6
# jdk >= 9 required but use nearest LTS version
%{?use_default_jdk:%use_default_jdk 11}
Summary: LibreOffice - powerful office suite
Summary(pl.UTF-8): LibreOffice - potężny pakiet biurowy
Name: libreoffice
Version: %{major_ver}.2
Release: 1
License: GPL/LGPL
Group: X11/Applications
Source0: http://download.documentfoundation.org/libreoffice/src/%{major_ver}/%{name}-%{version}.tar.xz
# Source0-md5: 2c5770df08fbc0d342cafa3c6b0ee836
Source1: http://download.documentfoundation.org/libreoffice/src/%{major_ver}/%{name}-dictionaries-%{version}.tar.xz
# Source1-md5: ab9a580780730b126aadb78bf4644590
Source2: http://download.documentfoundation.org/libreoffice/src/%{major_ver}/%{name}-help-%{version}.tar.xz
# Source2-md5: aab0d37a570ffc92e9c64ab023af1f46
Source3: http://download.documentfoundation.org/libreoffice/src/%{major_ver}/%{name}-translations-%{version}.tar.xz
# Source3-md5: d129d91d38d5e6e313ca04295bcfa551
# make (download|fetch) DO_FETCH_TARBALLS=1 WGET=wget
# but not sure if all are needed?
Source20: https://dev-www.libreoffice.org/src/pdfium-6179.tar.bz2
# Source20-md5: f64375592b2efb2bb740c0fd2e76e12c
Source21: https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
# Source21-md5: 17410483b5b5f267aa18b7e00b65e6e0
Source22: https://dev-www.libreoffice.org/src/CoinMP-1.8.4.tgz
# Source22-md5: dd85ff540997a95ebb233bb5ae7bcc61
Source23: https://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
# Source23-md5: 798b2ffdc8bcfe7bca2cf92b62caf685
Source24: https://dev-www.libreoffice.org/src/Java-WebSocket-1.5.4.tar.gz
# Source24-md5: 32c9026234c63bba474568f561d74239
Source25: https://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
# Source25-md5: 35c94d2df8893241173de1d16b6034c0
Source26: https://dev-www.libreoffice.org/extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar
# Source26-md5: 80e162d2adfd99057d1e0c62c3883364
Source27: https://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
# Source27-md5: a7983f859eafb2677d7ff386a023bc40
Source28: https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf
# Source28-md5: 09c7414a011363c72248c7bf3a23d758
Source30: https://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar
# Source30-md5: 8249374c274932a21846fa7629c2aa9b
Source31: https://dev-www.libreoffice.org/src/dtoa-20180411.tgz
# Source31-md5: 4295bad62b2524793d8a7ba3e7385501
Source32: https://dev-www.libreoffice.org/src/skia-m116-2ddcf183eb260f63698aa74d1bb380f247ad7ccd.tar.xz
# Source32-md5: 8965c1a6344c5f80a0e4e9e8f38b82bf
Source33: https://dev-www.libreoffice.org/src/libcmis-0.6.1.tar.xz
# Source33-md5: 4d6d131ae64f5d3122962ed39f9f209b
Patch1: jvm-path.patch
Patch3: %{name}-qt6.patch
URL: https://www.documentfoundation.org/
BuildRequires: /usr/bin/getopt
%{?with_firebird:BuildRequires: Firebird-devel >= 3.0.0.0}
BuildRequires: GLM-devel
BuildRequires: ImageMagick
BuildRequires: OpenGL-devel
BuildRequires: abseil-cpp-devel >= 20230125
%{?with_system_agg:BuildRequires: agg-devel >= 2.3}
BuildRequires: atk-devel >= 1:2.28.1
BuildRequires: autoconf >= 2.68
BuildRequires: automake >= 1:1.9
BuildRequires: bash
BuildRequires: bison >= 2.0
BuildRequires: bluez-libs-devel
BuildRequires: boost-devel >= 1.66
BuildRequires: box2d-devel >= 2.4.0
BuildRequires: cairo-devel >= 1.12.0
%{?with_ccache:BuildRequires: ccache >= 3.7.2}
BuildRequires: clucene-core-devel >= 2.3
%{?with_system_coinmp:BuildRequires: coinmp-devel}
BuildRequires: cppunit-devel >= 1.14.0
BuildRequires: cups-devel
BuildRequires: curl-devel >= 7.68.0
BuildRequires: dconf-devel >= 0.40.0
BuildRequires: dbus-devel >= 0.60
BuildRequires: dragonbox-devel = 1.1.3
BuildRequires: expat-devel
BuildRequires: flex >= 2.6.0
BuildRequires: fontconfig-devel >= 2.12.0
# pkgconfig(freetype2) >= 21.0.15 (for skia)
BuildRequires: freetype-devel >= 1:2.8.1
BuildRequires: frozen-devel
BuildRequires: gdb
BuildRequires: gettext-tools
BuildRequires: glib2-devel >= 1:2.38
%{?with_introspection:BuildRequires: gobject-introspection-devel >= 1.32.0}
BuildRequires: gperf >= 3.1
BuildRequires: gpgme-c++-devel
BuildRequires: gpgme-devel
BuildRequires: graphite2-devel >= 0.9.3
BuildRequires: gstreamer-devel >= 1.0
BuildRequires: gstreamer-plugins-base-devel >= 1.0
%{?with_gtk3:BuildRequires: gtk+3-devel >= 3.20}
%{?with_gtk4:BuildRequires: gtk4-devel >= 4}
BuildRequires: harfbuzz-icu-devel >= 5.1.0
%{?with_system_hunspell:BuildRequires: hunspell-devel >= 1.2.2}
%{?with_system_hyphen:BuildRequires: hyphen-devel}
%{?with_icecream:BuildRequires: icecream}
BuildRequires: icu >= 4.6
%{?with_system_beanshell:BuildRequires: java-beanshell}
BuildRequires: java-commons-logging >= 1.1.2
BuildRequires: java-flow-engine >= 0.9.2
BuildRequires: java-flute >= 1.3.0
BuildRequires: java-hamcrest
%{?with_system_hsqldb:BuildRequires: java-hsqldb >= 1.8.0.9}
%{?with_system_hsqldb:BuildRequires: java-hsqldb < 1.8.1}
BuildRequires: java-junit >= 4
BuildRequires: java-libbase >= 1.0.0
BuildRequires: java-libfonts >= 1.0.0
BuildRequires: java-libformula >= 0.2.0
BuildRequires: java-liblayout >= 0.2.9
BuildRequires: java-libloader >= 1.0.0
BuildRequires: java-librepository >= 1.0.0
BuildRequires: java-libserializer >= 1.0.0
BuildRequires: java-libxml >= 1.0.0
BuildRequires: java-sac
BuildRequires: lcms2-devel >= 2
BuildRequires: libabw-devel >= 0.1.0
BuildRequires: libargon2-devel
BuildRequires: libcdr-devel >= 0.1
%{?with_system_cmis:BuildRequires: libcmis-devel >= 0.6.1}
BuildRequires: libe-book-devel >= 0.1.2
%{?with_eot:BuildRequires: libeot-devel >= 0.01}
BuildRequires: libepoxy-devel >= 1.2
BuildRequires: libepubgen-devel >= 0.1.0
BuildRequires: libetonyek-devel >= 0.1.10
BuildRequires: libexttextcat-devel >= 3.4.1
BuildRequires: libfreehand-devel >= 0.1.0
BuildRequires: libicu-devel >= 66
BuildRequires: libjpeg-devel
BuildRequires: liblangtag-devel >= 0.5.5
BuildRequires: libmspub-devel >= 0.1
BuildRequires: libmwaw-devel >= 0.3.21
BuildRequires: libnumbertext-devel >= 1.0.6
BuildRequires: libodfgen-devel >= 0.1.1
BuildRequires: liborcus-devel >= 0.19.1
BuildRequires: liborcus-devel < 0.20
BuildRequires: libpagemaker-devel >= 0.0.2
BuildRequires: libpng-devel
BuildRequires: libqxp-devel
BuildRequires: libraptor2-devel >= 2.0.7
BuildRequires: librevenge-devel >= 0.0.1
BuildRequires: librsvg-devel >= 2.14
BuildRequires: libstaroffice-devel >= 0.0.7
BuildRequires: libstdc++-devel >= 6:12
BuildRequires: libtiff-devel >= 4
# for uuidgen
BuildRequires: libuuid
BuildRequires: libvisio-devel >= 0.1
BuildRequires: libwebp-devel
BuildRequires: libwpd-devel >= 0.10.0
BuildRequires: libwpg-devel >= 0.3.0
BuildRequires: libwps-devel >= 0.4.14
BuildRequires: libxml2-devel >= 2.0
BuildRequires: libxml2-progs
BuildRequires: libxslt-devel
BuildRequires: libxslt-progs
BuildRequires: libzmf-devel
BuildRequires: lp_solve-devel >= 5.5
BuildRequires: make >= 1:4.0
BuildRequires: mdds-devel >= 2.1.0
BuildRequires: mdds-devel < 2.2
%{?with_mono:BuildRequires: mono-csharp >= 1.2.3}
%{?with_mono:BuildRequires: mono-static >= 1.2.3}
BuildRequires: mysql-devel >= 5
BuildRequires: mythes-devel >= 1.2
BuildRequires: neon-devel >= 0.31.2
BuildRequires: nspr-devel >= 1:4.8
BuildRequires: nss-devel >= 1:3.10
BuildRequires: openjpeg2-devel >= 2
BuildRequires: openldap-devel
BuildRequires: openssl-devel >= 0.9.8
BuildRequires: pango-devel >= 1:1.17.3
BuildRequires: perl-Archive-Zip
BuildRequires: perl-base >= 5
BuildRequires: perl-devel >= 5
BuildRequires: pkgconfig >= 1:0.9.0
BuildRequires: poppler-cpp-devel >= 0.14
BuildRequires: poppler-devel >= 0.14
%{?with_pgsql:BuildRequires: postgresql-devel >= 9.0}
BuildRequires: python3 >= 1:3.3
BuildRequires: python3-devel >= 1:3.3
BuildRequires: python3-lxml
BuildRequires: python3-modules >= 1:3.3
BuildRequires: redland-devel >= 1.0.16
BuildRequires: rpm-build >= 4.6
BuildRequires: rpm-pythonprov
BuildRequires: rpmbuild(macros) >= 2.021
BuildRequires: sane-backends-devel
BuildRequires: sed >= 4.0
BuildRequires: startup-notification-devel >= 0.5
%{?with_systemtap:BuildRequires: systemtap-sdt-devel}
BuildRequires: tar >= 1:1.22
BuildRequires: unixODBC-devel >= 2.2.12-2
BuildRequires: unzip
BuildRequires: xmlsec1-nss-devel >= 1.2.35
BuildRequires: xorg-font-font-adobe-utopia-type1
BuildRequires: xorg-lib-libICE-devel
BuildRequires: xorg-lib-libSM-devel
BuildRequires: xorg-lib-libX11-devel
BuildRequires: xorg-lib-libXext-devel
BuildRequires: xorg-lib-libXinerama-devel
BuildRequires: xorg-lib-libXrandr-devel >= 1.2
BuildRequires: xorg-lib-libXrender-devel
BuildRequires: xorg-lib-libXt-devel
BuildRequires: xz
BuildRequires: zip >= 3.0
BuildRequires: zlib-devel
BuildRequires: zxcvbn-c-devel
BuildRequires: zxing-cpp-nu-devel
%if %{with java}
BuildRequires: ant >= 1.7.0
BuildRequires: ant-apache-regexp
%buildrequires_jdk
%{?use_jdk:BuildRequires: %{use_jdk}-jre-base-X11}
%endif
%if %{with kde5}
BuildRequires: kf5-kconfig-devel >= 5.0
BuildRequires: kf5-kcoreaddons-devel >= 5.0
BuildRequires: kf5-ki18n-devel >= 5.0
BuildRequires: kf5-kio-devel >= 5.0
BuildRequires: kf5-kwindowsystem-devel >= 5.0
%endif
%if %{with qt5}
BuildRequires: Qt5Core-devel >= %{qt5_ver}
BuildRequires: Qt5Gui-devel >= %{qt5_ver}
BuildRequires: Qt5Network-devel >= %{qt5_ver}
BuildRequires: Qt5Widgets-devel >= %{qt5_ver}
BuildRequires: Qt5X11Extras-devel >= %{qt5_ver}
BuildRequires: libxcb-devel
BuildRequires: qt5-build >= %{qt5_ver}
BuildRequires: qt5-qmake >= %{qt5_ver}
BuildRequires: xcb-util-wm-devel
%endif
%if %{with qt6}
BuildRequires: Qt6Core-devel >= %{qt6_ver}
BuildRequires: Qt6Gui-devel >= %{qt6_ver}
BuildRequires: Qt6Network-devel >= %{qt6_ver}
BuildRequires: Qt6Widgets-devel >= %{qt6_ver}
BuildRequires: libxcb-devel
BuildRequires: qt6-build >= %{qt6_ver}
BuildRequires: qt6-qmake >= %{qt6_ver}
BuildRequires: xcb-util-wm-devel
%endif
# contains (dlopened) *.so libs
BuildConflicts: java-gcj-compat
Requires: %{name}-base = %{version}-%{release}
Requires: %{name}-calc = %{version}-%{release}
Requires: %{name}-draw = %{version}-%{release}
Requires: %{name}-emailmerge = %{version}-%{release}
Requires: %{name}-graphicfilter = %{version}-%{release}
Requires: %{name}-impress = %{version}-%{release}
Requires: %{name}-math = %{version}-%{release}
Requires: %{name}-pdfimport = %{version}-%{release}
%{?with_pgsql:Requires: %{name}-postgresql = %{version}-%{release}}
Requires: %{name}-pyuno = %{version}-%{release}
Requires: %{name}-web = %{version}-%{release}
Requires: %{name}-wiki-publisher = %{version}-%{release}
Requires: %{name}-writer = %{version}-%{release}
Requires: %{name}-xsltfilter = %{version}-%{release}
Obsoletes: libreoffice-testtools < 3.5.0.3
Obsoletes: openoffice.org < 1:4
Obsoletes: openoffice.org-testtools < 1:4
ExclusiveArch: %{ix86} %{x8664} ppc sparc sparcv9 aarch64
BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
%define specflags -fno-strict-aliasing -O2
%define filterout_c -fomit-frame-pointer
%define filterout_cpp -fomit-frame-pointer
%define filterout_cxx -fomit-frame-pointer
# No ELF objects there to strip/chrpath, skips processing:
# - share/ - 17000 files of 415M
# - help/ - 6500 files of 1.4G
# - program/resource/ - 5610 files of 216M
%define _noautostrip .*%{_datadir}/.*
%define _noautochrpath .*%{_datadir}/.*
%define _noautoreq_java ClassDataVersion
%description
LibreOffice is an open-source project sponsored by Sun Microsystems
and hosted by CollabNet. In October of 2000, Sun released the source
code of its popular StarOfficeTM productivity suite under open-source
licenses. The aim of the LibreOffice project is to create, using
open-source methods, the next generation of open-network productivity
services, including the establishment of open, XML-based standards for
office productivity file formats and language-independent bindings to
component APIs.
Features of LibreOffice include:
- Downloadable source code,
- Infrastructure for community involvement, including guidelines and
discussion groups.
%description -l pl.UTF-8
LibreOffice jest projektem open-source sponsorowanym przez Sun
Microsystems i przechowywanym przez CollabNet. W październiku 2000
roku Sun udostępnił kod źródłowy popularnego pakietu biurowego
StarOfficeTM na zasadach licencji open-source. Głównym celem
LibreOffice jest stworzenie sieciowego pakietu biurowego następnej
generacji, wykorzystując open-source'owe metody pracy.
Do zalet LibreOffice można zaliczyć:
- dostępny cały czas kod źródłowy,
- infrastruktura służąca do komunikowania się w ramach projektu.
%package libs-kde5
Summary: LibreOffice KDE 5 Interface
Summary(pl.UTF-8): Interfejs KDE 5 dla LibreOffice
Group: X11/Libraries
Requires: %{name}-core = %{version}-%{release}
Obsoletes: libreoffice-libs-kde < 6.2.3.1-2
Obsoletes: libreoffice-libs-kde4 < 6.3.0-1
%description libs-kde5
LibreOffice productivity suite - KDE 5 Interface.
%description libs-kde5 -l pl.UTF-8
Pakiet biurowy LibreOffice - Interfejs KDE 5.
%package libs-gtk3
Summary: LibreOffice GTK+ 3 Interface
Summary(pl.UTF-8): Interfejs GTK+ 3 dla LibreOffice
Group: X11/Libraries
Requires: %{name}-core = %{version}-%{release}
Requires: glib2 >= 1:2.38
Requires: gtk+3 >= 3.20
Obsoletes: libreoffice-libs-gtk-common < 6.4.5.2-1
Obsoletes: libreoffice-libs-gtk2 < 6.4.5.2-1
%description libs-gtk3
LibreOffice productivity suite - GTK+ 3 Interface.
%description libs-gtk3 -l pl.UTF-8
Pakiet biurowy LibreOffice - Interfejs GTK+ 3.
%package libs-gtk4
Summary: LibreOffice GTK 4 Interface
Summary(pl.UTF-8): Interfejs GTK 4 dla LibreOffice
Group: X11/Libraries
Requires: %{name}-core = %{version}-%{release}
Requires: glib2 >= 1:2.38
Requires: gtk4 >= 4
%description libs-gtk4
LibreOffice productivity suite - GTK 4 Interface.
%description libs-gtk4 -l pl.UTF-8
Pakiet biurowy LibreOffice - Interfejs GTK 4.
%package libs-qt5
Summary: LibreOffice Qt5 Interface
Summary(pl.UTF-8): Interfejs Qt5 dla LibreOffice
Group: X11/Libraries
Requires: %{name}-core = %{version}-%{release}
Requires: Qt5Core >= %{qt5_ver}
Requires: Qt5Gui >= %{qt5_ver}
Requires: Qt5Network >= %{qt5_ver}
Requires: Qt5Widgets >= %{qt5_ver}
Requires: Qt5X11Extras >= %{qt5_ver}
%description libs-qt5
LibreOffice productivity suite - Qt5 Interface.
%description libs-qt5 -l pl.UTF-8
Pakiet biurowy LibreOffice - Interfejs Qt5.
%package libs-qt6
Summary: LibreOffice Qt6 Interface
Summary(pl.UTF-8): Interfejs Qt6 dla LibreOffice
Group: X11/Libraries
Requires: %{name}-core = %{version}-%{release}
%description libs-qt6
LibreOffice productivity suite - Qt6 Interface.
%description libs-qt6 -l pl.UTF-8
Pakiet biurowy LibreOffice - Interfejs Qt6.
%package core
Summary: Core modules for LibreOffice
Summary(pl.UTF-8): Podstawowe moduły dla LibreOffice
Group: X11/Applications
Requires(post,postun): desktop-file-utils
Requires(post,postun): gtk-update-icon-cache
Requires(post,postun): shared-mime-info
Requires: %{name}-ure = %{version}-%{release}
%{?with_firebird:Requires: Firebird-lib >= 3.0.0.0}
Requires: cairo >= 1.12.0
Requires: clucene-core >= 2.3
Requires: curl-libs >= 7.68.0
Requires: dconf >= 0.40.0
Requires: fontconfig >= 2.12.0
Requires: fonts-TTF-OpenSymbol
Requires: freetype >= 1:2.8.1
Requires: glib2 >= 1:2.38
Requires: graphite2 >= 0.9.3
Requires: harfbuzz-icu >= 5.1.0
Requires: hicolor-icon-theme
%{?with_system_beanshell:Requires: java-beanshell}
%{?with_system_hsqldb:Requires: java-hsqldb >= 1.8.0.9}
%{?with_system_hsqldb:Requires: java-hsqldb < 1.8.1}
%{?with_system_cmis:Requires: libcmis >= 0.6.1}
Requires: libepoxy >= 1.2
Requires: libexttextcat >= 3.4.1
Requires: liblangtag >= 0.5.5
Requires: libmwaw >= 0.3.21
Requires: libodfgen >= 0.1.1
Requires: libpagemaker >= 0.0.2
Requires: libraptor2 >= 2.0.7
Requires: librevenge >= 0.0.1
Requires: libstaroffice >= 0.0.7
Requires: mktemp
Requires: neon >= 0.31.2
Requires: nspr >= 1:4.8
Requires: nss >= 1:3.10
Requires: redland >= 1.0.16
Requires: sed
Requires: xmlsec1-nss >= 1.2.35
Requires: xorg-lib-libXrandr >= 1.2
#Suggests: chkfontpath
Obsoletes: libreoffice-binfilter < 4.0.0.0
Obsoletes: libreoffice-i18n-kid < 3.3.1.1-1
Obsoletes: libreoffice-i18n-ku < 4.2.0.4-1
Obsoletes: libreoffice-i18n-ky < 3.3.1.1-1
Obsoletes: libreoffice-i18n-ms < 3.3.1.1-1
Obsoletes: libreoffice-i18n-pap < 3.3.1.1-1
Obsoletes: libreoffice-i18n-ps < 3.3.1.1-1
Obsoletes: libreoffice-i18n-qtz < 4.0.1.2
Obsoletes: libreoffice-i18n-sc < 3.3.1.1-1
Obsoletes: libreoffice-i18n-sh < 4.2.0.4-1
Obsoletes: libreoffice-i18n-ti < 3.3.1.1-1
Obsoletes: libreoffice-i18n-ur < 3.3.1.1-1
Obsoletes: libreoffice-javafilter < 4.1.0.0
Obsoletes: libreoffice-report-builder < 4.1.0.0
Obsoletes: oooqs < 2.1
Obsoletes: openoffice < 1:2
Obsoletes: openoffice-i18n-fo < 1:2
Obsoletes: openoffice-i18n-fo-gtk < 1:2
Obsoletes: openoffice-i18n-ia < 1:2
Obsoletes: openoffice-i18n-ia-gtk < 1:2
Obsoletes: openoffice-i18n-id < 1:2
Obsoletes: openoffice-i18n-id-gtk < 1:2
Obsoletes: openoffice-i18n-la < 1:2
Obsoletes: openoffice-i18n-la-gtk < 1:2
Obsoletes: openoffice-i18n-med < 1:2
Obsoletes: openoffice-i18n-med-gtk < 1:2
Obsoletes: openoffice-i18n-mi < 1:2
Obsoletes: openoffice-i18n-mi-gtk < 1:2
Obsoletes: openoffice-i18n-ro < 1:2
Obsoletes: openoffice-i18n-ro-gtk < 1:2
Obsoletes: openoffice-libs < 1:2
Obsoletes: openoffice.org-core < 1:4
Obsoletes: openoffice.org-dirs < 1:4
Obsoletes: openoffice.org-i18n-bn_BD < 1:4
Obsoletes: openoffice.org-i18n-by < 1:4
Obsoletes: openoffice.org-i18n-fo < 1:4
Obsoletes: openoffice.org-i18n-fo-gtk < 1:4
Obsoletes: openoffice.org-i18n-fo-kde < 1:4
Obsoletes: openoffice.org-i18n-gu_IN < 1:4
Obsoletes: openoffice.org-i18n-ia < 1:4
Obsoletes: openoffice.org-i18n-ia-gtk < 1:4
Obsoletes: openoffice.org-i18n-ia-kde < 1:4
Obsoletes: openoffice.org-i18n-id < 1:4
Obsoletes: openoffice.org-i18n-id-gtk < 1:4
Obsoletes: openoffice.org-i18n-id-kde < 1:4
Obsoletes: openoffice.org-i18n-kid < 1:4
Obsoletes: openoffice.org-i18n-ky < 1:4
Obsoletes: openoffice.org-i18n-la < 1:4
Obsoletes: openoffice.org-i18n-la-gtk < 1:4
Obsoletes: openoffice.org-i18n-la-kde < 1:4
Obsoletes: openoffice.org-i18n-med < 1:4
Obsoletes: openoffice.org-i18n-med-gtk < 1:4
Obsoletes: openoffice.org-i18n-med-kde < 1:4
Obsoletes: openoffice.org-i18n-mi < 1:4
Obsoletes: openoffice.org-i18n-mi-gtk < 1:4
Obsoletes: openoffice.org-i18n-mi-kde < 1:4
Obsoletes: openoffice.org-i18n-ms < 1:4
Obsoletes: openoffice.org-i18n-pap < 1:4
Obsoletes: openoffice.org-i18n-ro < 1:4
Obsoletes: openoffice.org-i18n-ro-gtk < 1:4
Obsoletes: openoffice.org-i18n-ro-kde < 1:4
Obsoletes: openoffice.org-i18n-sc < 1:4
Obsoletes: openoffice.org-i18n-sw < 1:4
Obsoletes: openoffice.org-i18n-sx < 1:4
Obsoletes: openoffice.org-i18n-ti < 1:4
Obsoletes: openoffice.org-i18n-ur < 1:4
Obsoletes: openoffice.org-libs < 1:2.1.0-0.m6.0.11
%description core
Core libraries and support files for LibreOffice.
%description core -l pl.UTF-8
Podstawowe moduły dla LibreOffice.
%package pyuno
Summary: Python bindings for LibreOffice
Summary(pl.UTF-8): Wiązania Pythona dla LibreOffice
Group: Libraries
Requires: %{name}-core = %{version}-%{release}
Requires: python3
Provides: pyuno
Obsoletes: openoffice.org-pyuno < 1:4
%description pyuno
Cool Python bindings for the LibreOffice UNO component model. Allows
scripts both external to LibreOffice and within the internal
LibreOffice scripting module to be written in Python.
%description pyuno -l pl.UTF-8
Wiązania Pythona dla modelu komponentów UNO LibreOffice. Pozwala na
oskryptowanie zarówno na zewnątrz LibreOffice, jak i na używanie
skryptów w Pythonie w wewnętrznym module skryptów LibreOffice.
%package pdfimport
Summary: PDF Importer for LibreOffice Draw
Summary(pl.UTF-8): Import dokumentów PDF dla LibreOffice Draw
Group: X11/Applications
Requires: %{name}-draw = %{version}-%{release}
%description pdfimport
The PDF Importer imports PDF into drawing documents to preserve layout
and enable basic editing of PDF documents.
%description pdfimport -l pl.UTF-8
PDF Importer importuje dokumenty PDF do dokumentów rysunkowych,
zachowując ich układ i pozwalając na podstawową edycję.
%package wiki-publisher
Summary: Create Wiki articles on MediaWiki servers with LibreOffice
Summary(pl.UTF-8): Tworzenie artykułów Wiki na serwerach MediaWiki przy użyciu LibreOffice'a
Group: X11/Applications
Requires: %{name}-writer = %{version}-%{release}
Requires: java-commons-logging >= 1.1.2
BuildArch: noarch
%description wiki-publisher
The Wiki Publisher enables you to create Wiki articles on MediaWiki
servers without having to know the syntax of the MediaWiki markup
language. Publish your new and existing documents transparently with
Writer to a wiki page.
%description wiki-publisher -l pl.UTF-8
Wiki Publisher pozwala na tworzenie artykułów Wiki na serwerach
MediaWiki bez potrzeby znajomości składni języka znaczników MediaWiki.
Umożliwia publikowanie nowych i istniejących dokumentów na stronie
wiki z poziomu Writera.
%package base
Summary: Database frontend for LibreOffice
Summary(pl.UTF-8): Frontend do baz danych dla LibreOffice
Group: X11/Applications
Requires(post,postun): desktop-file-utils
Requires(post,postun): gtk-update-icon-cache
Requires: %{name}-core = %{version}-%{release}
Requires: hicolor-icon-theme
Obsoletes: openoffice.org-base < 1:4
%description base
GUI database frontend for LibreOffice. Allows creation and management
of databases through a GUI.
%description base -l pl.UTF-8
Graficzny frontend do baz danych dla LibreOffice. Pozwala na tworzenie
i zarządzanie bazami poprzez graficzny interfejs użytkownika.
%package web
Summary: Web module for LibreOffice
Summary(pl.UTF-8): Moduł Web dla LibreOffice
Group: X11/Applications
Requires(post,postun): desktop-file-utils
Requires: %{name}-core = %{version}-%{release}
Requires: %{name}-writer = %{version}-%{release}
Obsoletes: openoffice.org-web < 1:4
%description web
Web publishing application of LibreOffice.
%description web -l pl.UTF-8
Aplikacja do tworzenia stron WWW z LibreOffice.
%package writer
Summary: Writer module for LibreOffice
Summary(pl.UTF-8): Moduł Writer dla LibreOffice
Group: X11/Applications
Requires(post,postun): desktop-file-utils
Requires(post,postun): gtk-update-icon-cache
Requires: %{name}-core = %{version}-%{release}
Requires: hicolor-icon-theme
Requires: libe-book >= 0.1.2
Requires: libwps >= 0.4.14
Obsoletes: openoffice.org-writer < 1:4
%description writer
Wordprocessor application of LibreOffice.
%description writer -l pl.UTF-8
Procesor tekstu z LibreOffice.
%package emailmerge
Summary: email mail merge component for LibreOffice
Summary(pl.UTF-8): Kompolent email mail merge dla LibreOffice
Group: X11/Applications
Requires: %{name}-pyuno = %{version}-%{release}
Requires: %{name}-writer = %{version}-%{release}
Obsoletes: openoffice.org-emailmerge < 1:4
%description emailmerge
Enables LibreOffice Writer module to enable mail merge to email.
%description emailmerge -l pl.UTF-8
Komponent umożliwiający modułowi Writer włączanie poczty do poczty
elektronicznej.
%package calc
Summary: Calc module for LibreOffice
Summary(pl.UTF-8): Moduł Calc dla LibreOffice
Group: X11/Applications
Requires(post,postun): desktop-file-utils
Requires(post,postun): gtk-update-icon-cache
Requires: %{name}-core = %{version}-%{release}
Requires: hicolor-icon-theme
Requires: libetonyek >= 0.1.10
Requires: libwps >= 0.4.14
Requires: lp_solve >= 5.5
Obsoletes: openoffice.org-calc < 1:4
%description calc
Spreadsheet application of LibreOffice.
%description calc -l pl.UTF-8
Arkusz kalkulacyjny z LibreOffice.
%package draw
Summary: Draw module for LibreOffice
Summary(pl.UTF-8): Moduł Draw dla LibreOffice
Group: X11/Applications
Requires(post,postun): desktop-file-utils
Requires(post,postun): gtk-update-icon-cache
Requires: %{name}-core = %{version}-%{release}
Requires: hicolor-icon-theme
Obsoletes: openoffice.org-draw < 1:4
%description draw
Drawing application of LibreOffice.
%description draw -l pl.UTF-8
Aplikacja rysunkowa z LibreOffice.
%package impress
Summary: Impress module for LibreOffice
Summary(pl.UTF-8): Moduł Impress dla LibreOffice
Group: X11/Applications
Requires(post,postun): desktop-file-utils
Requires(post,postun): gtk-update-icon-cache
Requires: %{name}-core = %{version}-%{release}
Requires: hicolor-icon-theme
Requires: libetonyek >= 0.1.10
Obsoletes: libreoffice-presentation-minimizer < 4.2.0.0
Obsoletes: libreoffice-presenter-screen < 4.0.0.0-1
Obsoletes: openoffice.org-impress < 1:4
%description impress
Presentation application of LibreOffice.
%description impress -l pl.UTF-8
Aplikacja do tworzenia prezentacji z LibreOffice.
%package math
Summary: Math module for LibreOffice
Summary(pl.UTF-8): Moduł Math dla LibreOffice
Group: X11/Applications
Requires(post,postun): desktop-file-utils
Requires(post,postun): gtk-update-icon-cache
Requires: %{name}-core = %{version}-%{release}
Requires: hicolor-icon-theme
Obsoletes: openoffice.org-math < 1:4
%description math
Math editor of LibreOffice.
%description math -l pl.UTF-8
Edytor równań matematycznych z LibreOffice.
%package graphicfilter
Summary: Extra graphicfilter module for LibreOffice
Summary(pl.UTF-8): Dodatkowy moduł graphicfilter dla LibreOffice
Group: X11/Applications
Requires: %{name}-core = %{version}-%{release}
Obsoletes: openoffice.org-graphicfilter < 1:4
%description graphicfilter
Graphicfilter module for LibreOffice, provides additional SVG and
Flash export filters.
%description graphicfilter -l pl.UTF-8
Moduł graphicfilter dla LibreOffice, udostępnia dodatkowe filtry
eksportu SVG i Flash.
%package xsltfilter
Summary: Extra xsltfilter module for LibreOffice
Summary(pl.UTF-8): Dodatkowy moduł xsltfilter dla LibreOffice
Group: X11/Applications
Requires: %{name}-core = %{version}-%{release}
Obsoletes: openoffice.org-xsltfilter < 1:4
%description xsltfilter
xsltfilter module for LibreOffice, provides additional docbook and
xhtml export transforms. Install this to enable docbook export.
%description xsltfilter -l pl.UTF-8
Moduł xsltfilter dla LibreOffice, udostępnia dodatkowe przekształcenia
wyjściowe dla formatów docbook i xhtml. Jest potrzebny do eksportu do
docbooka.
%package postgresql
Summary: PostgreSQL connector for LibreOffice
Summary(pl.UTF-8): Łącznik z PostgreSQL dla LibreOffice
Group: X11/Applications
Requires: %{name}-core = %{version}-%{release}
Requires: postgresql-libs
%description postgresql
A PostgreSQL connector for the database front-end for LibreOffice.
Allows creation and management of PostgreSQL databases through a GUI.
%description postgresql -l pl.UTF-8
Łącznik z PostgreSQL dla frontendu bazodanowego LibreOffice. Pozwala
na tworzenie i zarządzanie bazami danych PostgreSQL poprzez graficzny
interfejs użytkownika.
%package nlpsolver
Summary: Non-linear solver engine for LibreOffice Calc
Summary(pl.UTF-8): Silnik rozwiązywania problemów nieliniowych dla LibreOffice Calca
Group: X11/Applications
Requires: %{name}-calc = %{version}-%{release}
Requires: %{name}-core = %{version}-%{release}
Requires: %{name}-ure = %{version}-%{release}
BuildArch: noarch
%description nlpsolver
A non-linear solver engine for Calc as an alternative to the default
linear programming model when more complex, nonlinear programming is
required.
%description nlpsolver -l pl.UTF-8
Silnik rozwiązywania problemów nieliniowych dla Calca, będący
alternatywą dla domyślnego modelu programowania liniowego, kiedy
wymagane jest bardziej złożone, nieliniowe programowanie.
# FIXME
%package ure
Summary: UNO Runtime Environment
Summary(pl.UTF-8): Środowisko uruchomieniowe UNO
Group: Libraries
%if %{with java}
%{?use_jdk:Suggests: jre(%use_jdk)}
%endif
Obsoletes: openoffice.org-ure < 1:4
%description ure
UNO is the component model of LibreOffice. UNO offers interoperability
between programming languages, other components models and hardware
architectures, either in process or over process boundaries, in the
Intranet as well as in the Internet. UNO components may be implemented
in and accessed from any programming language for which a UNO
implementation (AKA language binding) and an appropriate bridge or
adapter exists.
%description ure -l pl.UTF-8
UNO to model komponentów LibreOffice. Oferuje współpracę między
językami programowania, innymi modelami komponentów i architekturami
sprzętowymi - zarówno w ramach procesu, jak i między procesami, w
intranecie, jak i w Internecie. Komponenty UNO mogą być implementowane
i wykorzystywane z dowolnego języka, dla którego istnieje
implementacja UNO (wiązanie języka) oraz istnieje odpowiedni pomost
lub adapter.
%package -n browser-plugin-%{name}
Summary: LibreOffice plugin for WWW browsers
Summary(pl.UTF-8): Wtyczka LibreOffice dla przeglądarek WWW
Group: X11/Applications
Requires: %{name}-core = %{version}-%{release}
Requires: browser-plugins >= 2.0
Requires: browser-plugins(%{_target_base_arch})
Obsoletes: browser-plugin-openoffice.org < 1:4
%description -n browser-plugin-%{name}
LibreOffice plugin for WWW browsers.
This plugin allows browsers to display OOo documents inline.
%description -n browser-plugin-%{name} -l pl.UTF-8
Wtyczka LibreOffice dla przeglądarek WWW.
Ta wtyczka umożliwia wyświetlanie dokumentów OOo wewnątrz stron.
%package i18n-af
Summary: LibreOffice - interface in Afrikaans language
Summary(pl.UTF-8): LibreOffice - interfejs w języku afrykanerskim
Group: I18n
Requires: %{name}-core = %{version}-%{release}
Obsoletes: openoffice-i18n-af < 1:2
Obsoletes: openoffice-i18n-af-gtk < 1:2
Obsoletes: openoffice.org-i18n-af < 1:4
Obsoletes: openoffice.org-i18n-af-gtk < 1:4
Obsoletes: openoffice.org-i18n-af-kde < 1:4
BuildArch: noarch
%description i18n-af
This package provides resources containing menus and dialogs in
Afrikaans language.
%description i18n-af -l pl.UTF-8
Ten pakiet dostarcza zasoby zawierające menu i okna dialogowe w języku
afrykanerskim.
%package i18n-am
Summary: LibreOffice - interface in Amharic language
Summary(pl.UTF-8): LibreOffice - interfejs w języku amharskim
Group: I18n
Requires: %{name}-core = %{version}-%{release}
BuildArch: noarch
%description i18n-am
This package provides resources containing menus and dialogs in
Amharic language.
%description i18n-am -l pl.UTF-8
Ten pakiet dostarcza zasoby zawierające menu i okna dialogowe w języku
amharskim.
%package i18n-ar
Summary: LibreOffice - interface in Arabic language
Summary(pl.UTF-8): LibreOffice - interfejs w języku arabskim
Group: I18n
Requires: %{name}-core = %{version}-%{release}
Obsoletes: openoffice-i18n-ar < 1:2
Obsoletes: openoffice-i18n-ar-gtk < 1:2
Obsoletes: openoffice.org-i18n-ar < 1:4
Obsoletes: openoffice.org-i18n-ar-gtk < 1:4
Obsoletes: openoffice.org-i18n-ar-kde < 1:4
BuildArch: noarch
%description i18n-ar
This package provides resources containing menus and dialogs in Arabic
language.
%description i18n-ar -l pl.UTF-8
Ten pakiet dostarcza zasoby zawierające menu i okna dialogowe w języku
arabskim.
%package i18n-as
Summary: LibreOffice - interface in Assamese language
Summary(pl.UTF-8): LibreOffice - interfejs w języku asamskim
Group: I18n
Requires: %{name}-core = %{version}-%{release}
Obsoletes: openoffice.org-i18n-as_IN < 1:4
BuildArch: noarch
%description i18n-as
This package provides resources containing menus and dialogs in
Assamese language.
%description i18n-as -l pl.UTF-8
Ten pakiet dostarcza zasoby zawierające menu i okna dialogowe w języku
asamskim.
%package i18n-ast
Summary: LibreOffice - interface in Asturian language
Summary(pl.UTF-8): LibreOffice - interfejs w języku asturyjskim
Group: I18n
Requires: %{name}-core = %{version}-%{release}
Obsoletes: openoffice.org-i18n-ast < 1:4
BuildArch: noarch
%description i18n-ast
This package provides resources containing menus and dialogs in
Asturian language.
%description i18n-ast -l pl.UTF-8
Ten pakiet dostarcza zasoby zawierające menu i okna dialogowe w języku
asturyjskim.
%package i18n-be_BY
Summary: LibreOffice - interface in Belarusian language
Summary(pl.UTF-8): LibreOffice - interfejs w języku białoruskim
Group: I18n
Requires: %{name}-core = %{version}-%{release}
Obsoletes: openoffice.org-i18n-be_BY < 1:4
BuildArch: noarch
%description i18n-be_BY
This package provides resources containing menus and dialogs in
Belarusian language.
%description i18n-be_BY -l pl.UTF-8
Ten pakiet dostarcza zasoby zawierające menu i okna dialogowe w języku
białoruskim.
%package i18n-bg
Summary: LibreOffice - interface in Bulgarian language
Summary(pl.UTF-8): LibreOffice - interfejs w języku bułgarskim
Group: I18n
Requires: %{name}-core = %{version}-%{release}
Obsoletes: openoffice-i18n-bg < 1:2
Obsoletes: openoffice-i18n-bg-gtk < 1:2
Obsoletes: openoffice.org-i18n-bg < 1:4
Obsoletes: openoffice.org-i18n-bg-gtk < 1:4
Obsoletes: openoffice.org-i18n-bg-kde < 1:4
BuildArch: noarch
%description i18n-bg
This package provides resources containing menus and dialogs in
Bulgarian language.
%description i18n-bg -l pl.UTF-8
Ten pakiet dostarcza zasoby zawierające menu i okna dialogowe w języku
bułgarskim.
%package i18n-bn_IN
Summary: LibreOffice - interface in Indian Bangla language
Summary(pl.UTF-8): LibreOffice - interfejs w języku indyjskim bengalskim
Group: I18n
Requires: %{name}-core = %{version}-%{release}
Obsoletes: openoffice.org-i18n-bn_IN < 1:4
BuildArch: noarch
%description i18n-bn_IN
This package provides resources containing menus and dialogs in Indian
Bangla language.
%description i18n-bn_IN -l pl.UTF-8
Ten pakiet dostarcza zasoby zawierające menu i okna dialogowe w języku
indyjskim bengalskim.