diff --git a/office/libreoffice/component.xml b/office/libreoffice/component.xml new file mode 100644 index 0000000000..46beade0e9 --- /dev/null +++ b/office/libreoffice/component.xml @@ -0,0 +1,3 @@ + + office.libreoffice + \ No newline at end of file diff --git a/office/libreoffice/libreoffice/actions.py b/office/libreoffice/libreoffice/actions.py new file mode 100644 index 0000000000..1dc4528ad5 --- /dev/null +++ b/office/libreoffice/libreoffice/actions.py @@ -0,0 +1,73 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import get +from pisi.actionsapi import pisitools +from pisi.actionsapi import autotools +from pisi.actionsapi import shelltools + +shelltools.export("LC_ALL", "C") + +pixmaps = "/usr/share/pixmaps/" +LoVersion = "%s" % get.srcVERSION() +OurWorkDir = "%s/libreoffice-%s" % (get.workDIR(), LoVersion) + +def setup(): + shelltools.chmod("%s/bin/unpack-sources" % OurWorkDir) + shelltools.export("LO_PREFIX", "/usr") + shelltools.export("PYTHON", "python2.7") + shelltools.cd(OurWorkDir) + + shelltools.touch("autogen.lastrun") + shelltools.system('sed -e "/distro-install-file-lists/d" -i Makefile.in') + shelltools.system('sed -e "/ustrbuf/a #include " \ + -i svl/source/misc/gridprinter.cxx') + shelltools.system('./autogen.sh \ + --prefix=/usr \ + --sysconfdir=/etc \ + --with-vendor=PisiLinux \ + --with-lang="ALL" \ + --with-help \ + --with-myspell-dicts \ + --with-alloc=system \ + --without-java \ + --without-system-dicts \ + --disable-gconf \ + --disable-postgresql-sdbc \ + --enable-release-build=yes \ + --enable-python=system \ + --with-system-boost \ + --with-system-curl \ + --with-system-cairo \ + --with-system-expat \ + --with-system-harfbuzz \ + --with-system-icu \ + --with-system-jpeg \ + --with-system-lcms2 \ + --with-system-libpng \ + --with-system-libxml \ + --with-system-mesa-headers \ + --with-system-nss \ + --with-system-openssl \ + --with-system-poppler \ + --with-system-zlib \ + --disable-odk \ + --enable-ext-wiki-publisher \ + --enable-ext-nlpsolver \ + --with-parallelism=%s' % (get.makeJOBS().replace("-j",""))) + +def build(): + autotools.make("build-nocheck") + +def install(): + autotools.rawInstall("DESTDIR=%s distro-pack-install" % get.installDIR()) + + pisitools.remove("gid_Module*") + + pisitools.insinto("/usr/share/appdata/", "sysui/desktop/appstream-appdata/libreoffice-*.xml") + + for pix in ["libreoffice-base.png", "libreoffice-calc.png", "libreoffice-draw.png", "libreoffice-impress.png", "libreoffice-main.png", "libreoffice-math.png", "libreoffice-startcenter.png", "libreoffice-writer.png"]: + pisitools.dosym("/usr/share/icons/hicolor/32x32/apps/%s" % pix, "/usr/share/pixmaps/%s" %pix) \ No newline at end of file diff --git a/office/libreoffice/libreoffice/files/0001-Related-rhbz-1130264-plausible-fix-for-reported-cras.patch b/office/libreoffice/libreoffice/files/0001-Related-rhbz-1130264-plausible-fix-for-reported-cras.patch new file mode 100644 index 0000000000..9594cc94fd --- /dev/null +++ b/office/libreoffice/libreoffice/files/0001-Related-rhbz-1130264-plausible-fix-for-reported-cras.patch @@ -0,0 +1,76 @@ +From eb21b6827e25b2c943025a662cde2049c0454a6b Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= +Date: Fri, 15 Aug 2014 15:59:58 +0100 +Subject: [PATCH] Related: rhbz#1130264 plausible fix for reported crash + +Change-Id: I4ccdf19bfc7986881f7022109f22f47a0f493591 +--- + avmedia/source/gstreamer/gstplayer.cxx | 20 ++++++++++++++++---- + avmedia/source/gstreamer/gstplayer.hxx | 3 +++ + 2 files changed, 19 insertions(+), 4 deletions(-) + +diff --git a/avmedia/source/gstreamer/gstplayer.cxx b/avmedia/source/gstreamer/gstplayer.cxx +index ceea8e2..836e89e 100644 +--- a/avmedia/source/gstreamer/gstplayer.cxx ++++ b/avmedia/source/gstreamer/gstplayer.cxx +@@ -74,7 +74,9 @@ Player::Player( const uno::Reference< lang::XMultiServiceFactory >& rxMgr ) : + mpXOverlay( NULL ), + mnDuration( 0 ), + mnWidth( 0 ), +- mnHeight( 0 ) ++ mnHeight( 0 ), ++ mnWatchID( 0 ), ++ mbWatchID( false ) + { + // Initialize GStreamer library + int argc = 1; +@@ -127,11 +129,15 @@ void SAL_CALL Player::disposing() + g_object_unref( G_OBJECT ( mpXOverlay ) ); + mpXOverlay = NULL; + } ++ ++ } ++ if (mbWatchID) ++ { ++ g_source_remove(mnWatchID); ++ mbWatchID = false; + } + } + +- +- + static gboolean pipeline_bus_callback( GstBus *, GstMessage *message, gpointer data ) + { + Player* pPlayer = static_cast(data); +@@ -357,7 +363,13 @@ void Player::preparePlaybin( const OUString& rURL, GstElement *pSink ) + g_object_set( G_OBJECT( mpPlaybin ), "uri", ascURL.getStr() , NULL ); + + pBus = gst_element_get_bus( mpPlaybin ); +- gst_bus_add_watch( pBus, pipeline_bus_callback, this ); ++ if (mbWatchID) ++ { ++ g_source_remove(mnWatchID); ++ mbWatchID = false; ++ } ++ mnWatchID = gst_bus_add_watch( pBus, pipeline_bus_callback, this ); ++ mbWatchID = true; + DBG( "%p set sync handler", this ); + #ifdef AVMEDIA_GST_0_10 + gst_bus_set_sync_handler( pBus, pipeline_bus_sync_handler, this ); +diff --git a/avmedia/source/gstreamer/gstplayer.hxx b/avmedia/source/gstreamer/gstplayer.hxx +index 2426eed..33c9e4d 100644 +--- a/avmedia/source/gstreamer/gstplayer.hxx ++++ b/avmedia/source/gstreamer/gstplayer.hxx +@@ -97,6 +97,9 @@ protected: + int mnWidth; + int mnHeight; + ++ guint mnWatchID; ++ bool mbWatchID; ++ + osl::Condition maSizeCondition; + }; + +-- +1.9.3 + diff --git a/office/libreoffice/libreoffice/files/0001-Resolves-fdo-81487-pasting-into-outline-view-crashes.patch b/office/libreoffice/libreoffice/files/0001-Resolves-fdo-81487-pasting-into-outline-view-crashes.patch new file mode 100644 index 0000000000..4cbecd542f --- /dev/null +++ b/office/libreoffice/libreoffice/files/0001-Resolves-fdo-81487-pasting-into-outline-view-crashes.patch @@ -0,0 +1,48 @@ +From a5793f5e0013b156600fd718d8f77870a9e73032 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= +Date: Fri, 18 Jul 2014 09:06:44 +0100 +Subject: [PATCH] Resolves: fdo#81487 pasting into outline view crashes impress + +CreateTitleTextObject will call indirectly ImpPageChange which +triggers tools::EventMultiplexerEvent::EID_PAGE_ORDER and so +in outlview.cxx without ignore page changes level in action +the outliner is filled in from the slide contents in +FillOutliner clearing the outliner contents and filling it +fresh, but.. + +a) this hack tower is not prepared for all the outliner +iterators to become invalid +b) the contents of this title object is empty, because +it was just created, and we didn't get a chance to fill +in its text. + +This all works for typing vs pasting because the KeyInput +uses the OutlineViewPageChangesGuard guard which sets the +ignore pages changes bit. + +So, given that OutlineView::UpdateDocument expects +the iterators of the outliner to be valid during +the lifetime of the method lock the full method with +the OutlineViewPageChangesGuard guard + +Change-Id: Iecbf37d54f5f0c5a181be5f27832f769a3d2e389 +--- + sd/source/ui/view/outlview.cxx | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/sd/source/ui/view/outlview.cxx b/sd/source/ui/view/outlview.cxx +index 268a32b..a76bb0b 100644 +--- a/sd/source/ui/view/outlview.cxx ++++ b/sd/source/ui/view/outlview.cxx +@@ -1535,6 +1535,8 @@ void OutlineView::EndModelChange() + /** updates all changes in the outliner model to the draw model */ + void OutlineView::UpdateDocument() + { ++ OutlineViewPageChangesGuard aGuard(this); ++ + const sal_uInt32 nPageCount = mrDoc.GetSdPageCount(PK_STANDARD); + Paragraph* pPara = mrOutliner.GetParagraph( 0 ); + sal_uInt32 nPage; +-- +1.9.3 + diff --git a/office/libreoffice/libreoffice/files/0001-avoid-problems-detecting-HTML-files-with-.xls-ext.patch b/office/libreoffice/libreoffice/files/0001-avoid-problems-detecting-HTML-files-with-.xls-ext.patch new file mode 100644 index 0000000000..85ba46252e --- /dev/null +++ b/office/libreoffice/libreoffice/files/0001-avoid-problems-detecting-HTML-files-with-.xls-ext.patch @@ -0,0 +1,96 @@ +From 86c6f18c2766aad43d6e3bfcf3530e40440ebca7 Mon Sep 17 00:00:00 2001 +From: David Tardon +Date: Tue, 8 Jul 2014 17:01:27 +0200 +Subject: [PATCH] avoid problems detecting HTML files with .xls ext. + +Change-Id: I9955223aac20f3f640fde51bb7231666c269ca70 +--- + filter/Configuration_filter.mk | 1 + + filter/source/config/fragments/types/calc_HTML.xcu | 35 ++++++++++++++++++++++ + filter/source/textfilterdetect/filterdetect.cxx | 6 ++-- + 3 files changed, 38 insertions(+), 4 deletions(-) + create mode 100644 filter/source/config/fragments/types/calc_HTML.xcu + +diff --git a/filter/Configuration_filter.mk b/filter/Configuration_filter.mk +index e035464..0465f17 100644 +--- a/filter/Configuration_filter.mk ++++ b/filter/Configuration_filter.mk +@@ -512,6 +512,7 @@ $(call filter_Configuration_add_ui_filters,fcfg_langpack,filter/source/config/fr + $(call filter_Configuration_add_types,fcfg_langpack,fcfg_calc_types.xcu,filter/source/config/fragments/types,\ + calc_DIF \ + calc_ODS_FlatXML \ ++ calc_HTML \ + generic_HTML \ + generic_Text \ + calc_Lotus \ +diff --git a/filter/source/config/fragments/types/calc_HTML.xcu b/filter/source/config/fragments/types/calc_HTML.xcu +new file mode 100644 +index 0000000..51bf8f1 +--- /dev/null ++++ b/filter/source/config/fragments/types/calc_HTML.xcu +@@ -0,0 +1,35 @@ ++ ++ ++ ++ com.sun.star.comp.filters.PlainTextFilterDetect ++ ++ xls ++ text/html ++ false ++ ++ ++ HTML Table ++ ++ ++ +diff --git a/filter/source/textfilterdetect/filterdetect.cxx b/filter/source/textfilterdetect/filterdetect.cxx +index ffad7fa..1d29dd4 100644 +--- a/filter/source/textfilterdetect/filterdetect.cxx ++++ b/filter/source/textfilterdetect/filterdetect.cxx +@@ -132,7 +132,7 @@ OUString SAL_CALL PlainTextFilterDetect::detect(uno::Sequence xInStream(aMediaDesc[MediaDescriptor::PROP_INPUTSTREAM()], uno::UNO_QUERY); + if (!xInStream.is() || !IsHTMLStream(xInStream)) +@@ -141,12 +141,10 @@ OUString SAL_CALL PlainTextFilterDetect::detect(uno::Sequence +Date: Mon, 3 Feb 2014 21:52:11 +0100 +Subject: [PATCH] disable firebird unit test + +--- + dbaccess/Module_dbaccess.mk | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/dbaccess/Module_dbaccess.mk b/dbaccess/Module_dbaccess.mk +index b9d7d56..824f3f5 100644 +--- a/dbaccess/Module_dbaccess.mk ++++ b/dbaccess/Module_dbaccess.mk +@@ -36,7 +36,6 @@ $(eval $(call gb_Module_add_l10n_targets,dbaccess,\ + + ifeq ($(ENABLE_FIREBIRD_SDBC),TRUE) + $(eval $(call gb_Module_add_check_targets,dbaccess,\ +- CppunitTest_dbaccess_firebird_test \ + )) + endif + +-- +1.8.4.2 + diff --git a/office/libreoffice/libreoffice/files/0001-drop-useless-test-for-ant-apache-regexp.patch b/office/libreoffice/libreoffice/files/0001-drop-useless-test-for-ant-apache-regexp.patch new file mode 100644 index 0000000000..961915b0bf --- /dev/null +++ b/office/libreoffice/libreoffice/files/0001-drop-useless-test-for-ant-apache-regexp.patch @@ -0,0 +1,71 @@ +From cb6511354b500d1b1bd8ff140fdf0ea106b174d4 Mon Sep 17 00:00:00 2001 +From: David Tardon +Date: Wed, 3 Sep 2014 16:20:40 +0200 +Subject: [PATCH] drop useless test for ant-apache-regexp + +It has not been needed since commit +1de48c417404464ca1e34e5c5d1c82a9342349bb 4 years ago. + +Change-Id: I53ceb5d8d6c02c7a13c86cdd884e4fc378a2c492 +--- + configure.ac | 44 -------------------------------------------- + 1 file changed, 44 deletions(-) + +diff --git a/configure.ac b/configure.ac +index f65ab66..897cb1e 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -12311,50 +12311,6 @@ EOF + AC_MSG_ERROR([no, you need at least Ant >= $ant_minver]) + fi + +- if test "$ENABLE_MEDIAWIKI" = "TRUE"; then +- AC_MSG_CHECKING([whether Ant supports mapper type="regexp"]) +- rm -rf confdir +- mkdir confdir +- cat > conftest.java << EOF +- public class conftest { +- int testmethod(int a, int b) { +- return a + b; +- } +- } +-EOF +- +- cat > conftest.xml << EOF +- +- +- +- +- +- +- +- +- +- +- +- +- +-EOF +- +- if test "$JAVACISGCJ" = "yes"; then +- JAVA_HOME=; export JAVA_HOME +- ant_gcj="-Dbuild.compiler=gcj" +- fi +- AC_TRY_COMMAND("$ANT" $ant_gcj -buildfile conftest.xml 1>&2) +- if test $? = 0 -a -f ./conftest.class; then +- AC_MSG_RESULT([yes]) +- rm -rf confdir +- else +- echo "configure: Ant test failed" >&5 +- cat conftest.java >&5 +- cat conftest.xml >&5 +- rm -rf confdir +- AC_MSG_ERROR([no. Did you install ant-apache-regexp?]) +- fi +- fi + rm -f conftest* core core.* *.core + fi + +-- +1.9.3 + diff --git a/office/libreoffice/libreoffice/files/0001-fdo-82496-Change-picture-option-by-rightclicking.patch b/office/libreoffice/libreoffice/files/0001-fdo-82496-Change-picture-option-by-rightclicking.patch new file mode 100644 index 0000000000..5cbab761a9 --- /dev/null +++ b/office/libreoffice/libreoffice/files/0001-fdo-82496-Change-picture-option-by-rightclicking.patch @@ -0,0 +1,78 @@ +From caa08b214542fdf1bed3912b9c4fac36e5d87eb2 Mon Sep 17 00:00:00 2001 +From: Jennifer Liebel +Date: Tue, 2 Sep 2014 12:40:20 +0000 +Subject: [PATCH] fdo#82496: Change picture option by rightclicking + +Change-Id: I31fb1a1f89030610a9d11b9236e8cde22dbc0ca5 +--- + sw/sdi/_grfsh.sdi | 12 ++++++++++++ + sw/source/ui/app/mn.src | 1 + + sw/source/uibase/shells/grfsh.cxx | 3 +-- + 3 files changed, 14 insertions(+), 2 deletions(-) + +diff --git a/sw/sdi/_grfsh.sdi b/sw/sdi/_grfsh.sdi +index 15c00cc..2eb2ab2 100644 +--- a/sw/sdi/_grfsh.sdi ++++ b/sw/sdi/_grfsh.sdi +@@ -62,6 +62,13 @@ interface BaseTextGraphic + DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; + ] + ++ SID_CHANGE_PICTURE ++ [ ++ ExecMethod = Execute ; ++ StateMethod = GetAttrState ; ++ DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; ++ ] ++ + SID_EXTERNAL_EDIT + [ + ExecMethod = Execute ; +@@ -224,6 +231,11 @@ interface BaseTextGraphic + StateMethod = GetAttrState ; + DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; + ] ++ SID_CHANGE_PICTURE ++ [ ++ ExecMethod = FuTemporary ; ++ StateMethod = GetMenuState ; ++ ] + SID_GRFFILTER_SOLARIZE // status(final|play|rec) + [ + ExecMethod = ExecAttr ; +diff --git a/sw/source/ui/app/mn.src b/sw/source/ui/app/mn.src +index f62c8da..79b797d 100644 +--- a/sw/source/ui/app/mn.src ++++ b/sw/source/ui/app/mn.src +@@ -1239,6 +1239,7 @@ Menu MN_GRF_POPUPMENU + MN_FRM_CAPTION_ITEM + SEPARATOR; + MenuItem { ITEM_SAVE_GRAPHIC }; ++ MenuItem { ITEM_CHANGE_PICTURE }; + MenuItem { ITEM_COMPRESS_GRAPHIC }; + MenuItem { ITEM_EXTERNAL_EDIT }; + +diff --git a/sw/source/uibase/shells/grfsh.cxx b/sw/source/uibase/shells/grfsh.cxx +index d5ecec5..0e13b38 100644 +--- a/sw/source/core/uibase/shells/grfsh.cxx ++++ b/sw/source/core/uibase/shells/grfsh.cxx +@@ -178,7 +178,6 @@ void SwGrfShell::Execute(SfxRequest &rReq) + } + } + break; +- + case SID_EXTERNAL_EDIT: + { + // When the graphic is selected to be opened via some external tool +@@ -191,7 +190,7 @@ void SwGrfShell::Execute(SfxRequest &rReq) + } + } + break; +- ++ case SID_CHANGE_PICTURE: + case SID_INSERT_GRAPHIC: + { + // #i123922# implement slot independent from the two below to +-- +1.9.3 + diff --git a/office/libreoffice/libreoffice/files/0001-fix-linker-error.patch b/office/libreoffice/libreoffice/files/0001-fix-linker-error.patch new file mode 100644 index 0000000000..9e229180a5 --- /dev/null +++ b/office/libreoffice/libreoffice/files/0001-fix-linker-error.patch @@ -0,0 +1,35 @@ +From 63a5f3804578dc185a88b7f88cdbdfc53dde02b4 Mon Sep 17 00:00:00 2001 +From: David Tardon +Date: Wed, 11 Feb 2015 22:56:53 +0100 +Subject: [PATCH] fix linker error + +/builddir/build/BUILD/libreoffice-4.4.1.1/workdir/CxxObject/svtools/source/misc/imageresourceaccess.o: In function `com::sun::star::uno::Reference::Reference(com::sun::star::io::XOutputStream*)': +/builddir/build/BUILD/libreoffice-4.4.1.1/include/com/sun/star/uno/Reference.hxx:137: undefined reference to `non-virtual thunk to utl::OSeekableOutputStreamWrapper::acquire()' + +Change-Id: Ic644a8299cf2f79f02c1e3ca0de9687520f402a9 +--- + include/unotools/streamwrap.hxx | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/include/unotools/streamwrap.hxx b/include/unotools/streamwrap.hxx +index e8027ce..8efc227 100644 +--- a/include/unotools/streamwrap.hxx ++++ b/include/unotools/streamwrap.hxx +@@ -123,12 +123,12 @@ typedef ::cppu::ImplHelper1 < css::io::XSeekable + /** helper class for wrapping an SvStream into an com.sun.star.io::XOutputStream + which is seekable (i.e. supports the com.sun.star.io::XSeekable interface). + */ +-class OSeekableOutputStreamWrapper ++class UNOTOOLS_DLLPUBLIC OSeekableOutputStreamWrapper + :public OOutputStreamWrapper + ,public OSeekableOutputStreamWrapper_Base + { + public: +- UNOTOOLS_DLLPUBLIC OSeekableOutputStreamWrapper(SvStream& _rStream); ++ OSeekableOutputStreamWrapper(SvStream& _rStream); + + private: + virtual ~OSeekableOutputStreamWrapper(); +-- +2.1.0 + diff --git a/office/libreoffice/libreoffice/files/0001-rhbz-1111216-allow-to-export-an-empty-sheet-to-PDF.patch b/office/libreoffice/libreoffice/files/0001-rhbz-1111216-allow-to-export-an-empty-sheet-to-PDF.patch new file mode 100644 index 0000000000..c3c6e86825 --- /dev/null +++ b/office/libreoffice/libreoffice/files/0001-rhbz-1111216-allow-to-export-an-empty-sheet-to-PDF.patch @@ -0,0 +1,29 @@ +From 0b793116deaf35ce67245c1106e5ed5a722c7560 Mon Sep 17 00:00:00 2001 +From: David Tardon +Date: Thu, 19 Jun 2014 16:57:03 +0200 +Subject: [PATCH] rhbz#1111216 allow to export an empty sheet to PDF + +This is to consolidate Calc's behaviour with the other applications, +which always present at least one page for printing / PDF export. + +Change-Id: Iedf438618020c1e6d8ded5ac950c8ca2b12ad439 +--- + sc/source/ui/unoobj/docuno.cxx | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/sc/source/ui/unoobj/docuno.cxx b/sc/source/ui/unoobj/docuno.cxx +index 9aeceb7..75cabca 100644 +--- a/sc/source/ui/unoobj/docuno.cxx ++++ b/sc/source/ui/unoobj/docuno.cxx +@@ -958,7 +958,7 @@ sal_Int32 SAL_CALL ScModelObj::getRendererCount(const uno::Any& aSelection, + StringRangeEnumerator aRangeEnum( aPagesStr, 0, nPages-1 ); + nSelectCount = aRangeEnum.size(); + } +- return nSelectCount; ++ return (nSelectCount > 0) ? nSelectCount : 1; + } + + static sal_Int32 lcl_GetRendererNum( sal_Int32 nSelRenderer, const OUString& rPagesStr, sal_Int32 nTotalPages ) +-- +1.9.3 + diff --git a/office/libreoffice/libreoffice/files/0001-scrolling-very-slow-in-calc.patch b/office/libreoffice/libreoffice/files/0001-scrolling-very-slow-in-calc.patch new file mode 100644 index 0000000000..30143c3737 --- /dev/null +++ b/office/libreoffice/libreoffice/files/0001-scrolling-very-slow-in-calc.patch @@ -0,0 +1,139 @@ +From 52ac64848e41c6c3bba86c98361757aaf89ef3c6 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= +Date: Tue, 15 Jul 2014 16:42:42 +0100 +Subject: [PATCH] scrolling very slow in calc + +even on a short spreadsheet scrolling up and down leaves +the first/last row (depending on the direction of scroll) +unchanged until the scrolling stops. + +http://people.freedesktop.org/~mst/calc_4.2_scrolling.webm + +On larger document there are rendering artifacts during scrolling which go away +after scrolling for me and mstahl, but a bunch of people can show us piles of +horribly broken spreadsheets after scrolling, esp wheel scrolling + +Revert "fdo#75026: Sometimes we need to update grid view... + +while not being active." + +This reverts commit 52cc88d6191ba0c4b6477e5c4b9c5d0f0228030d. + +Revert "fdo#68961: Check visible range during scrolling, and re-paint if necessary." + +This reverts commit e36c8a674845ab19577fc06d44b780549757e1e7. + +Revert "Repaint grid view when the visible area changes." + +This reverts commit b54c1a53b4d400b1c2d282c186af1fa8f151894e. + +Conflicts: + sc/source/ui/app/scmod.cxx + +Revert "Update visible ranges when updating the scroll bars." + +This reverts commit 391a57ef65687f2e373bac8d410e551aafa780ec. + +Change-Id: Ie170308cba18a9a74c7c72daf07dfa0a4ef7bd13 +--- + sc/source/ui/inc/tabview.hxx | 6 ------ + sc/source/ui/view/gridwin4.cxx | 2 ++ + sc/source/ui/view/tabview.cxx | 4 ---- + sc/source/ui/view/tabview3.cxx | 10 ---------- + sc/source/ui/view/tabview4.cxx | 7 ++++++- + 5 files changed, 8 insertions(+), 21 deletions(-) + +diff --git a/sc/source/ui/inc/tabview.hxx b/sc/source/ui/inc/tabview.hxx +index a5d7392..891af9e 100644 +--- a/sc/source/ui/inc/tabview.hxx ++++ b/sc/source/ui/inc/tabview.hxx +@@ -204,12 +204,6 @@ private: + + void PaintRangeFinderEntry (ScRangeFindData* pData, SCTAB nTab); + +- /** +- * Check the visible grid area to see if the visible range has changed. If +- * so, update the stored visible range, and re-paint the grid area. +- */ +- void UpdateGrid(); +- + protected: + void UpdateHeaderWidth( const ScVSplitPos* pWhich = NULL, + const SCROW* pPosY = NULL ); +diff --git a/sc/source/ui/view/gridwin4.cxx b/sc/source/ui/view/gridwin4.cxx +index fa697ee5..a60fb82 100644 +--- a/sc/source/ui/view/gridwin4.cxx ++++ b/sc/source/ui/view/gridwin4.cxx +@@ -390,6 +390,8 @@ void ScGridWindow::Draw( SCCOL nX1, SCROW nY1, SCCOL nX2, SCROW nY2, ScUpdateMod + + OSL_ENSURE( ValidCol(nX2) && ValidRow(nY2), "GridWin Draw Bereich zu gross" ); + ++ UpdateVisibleRange(); ++ + if (nX2 < maVisibleRange.mnCol1 || nY2 < maVisibleRange.mnRow1) + return; + // unsichtbar +diff --git a/sc/source/ui/view/tabview.cxx b/sc/source/ui/view/tabview.cxx +index aafd114..02b99b9 100644 +--- a/sc/source/ui/view/tabview.cxx ++++ b/sc/source/ui/view/tabview.cxx +@@ -1198,8 +1198,6 @@ void ScTabView::ScrollX( long nDeltaX, ScHSplitPos eWhich, bool bUpdBars ) + if (pColOutline[eWhich]) pColOutline[eWhich]->ScrollPixel( nDiff ); + if (bUpdBars) + UpdateScrollBars(); +- else +- UpdateGrid(); + } + + if (nDeltaX==1 || nDeltaX==-1) +@@ -1285,8 +1283,6 @@ void ScTabView::ScrollY( long nDeltaY, ScVSplitPos eWhich, bool bUpdBars ) + if (pRowOutline[eWhich]) pRowOutline[eWhich]->ScrollPixel( nDiff ); + if (bUpdBars) + UpdateScrollBars(); +- else +- UpdateGrid(); + } + + if (nDeltaY==1 || nDeltaY==-1) +diff --git a/sc/source/ui/view/tabview3.cxx b/sc/source/ui/view/tabview3.cxx +index 7053037..50066ba 100644 +--- a/sc/source/ui/view/tabview3.cxx ++++ b/sc/source/ui/view/tabview3.cxx +@@ -2089,16 +2089,6 @@ void ScTabView::PaintRangeFinderEntry (ScRangeFindData* pData, const SCTAB nTab) + } + } + +-void ScTabView::UpdateGrid() +-{ +- if (!UpdateVisibleRange()) +- // Visible range hasn't changed. No need to re-paint. +- return; +- +- SC_MOD()->AnythingChanged(); // if visible area has changed +- PaintGrid(); +-} +- + void ScTabView::PaintRangeFinder( long nNumber ) + { + ScInputHandler* pHdl = SC_MOD()->GetInputHdl( aViewData.GetViewShell() ); +diff --git a/sc/source/ui/view/tabview4.cxx b/sc/source/ui/view/tabview4.cxx +index 2f72a20..8528431 100644 +--- a/sc/source/ui/view/tabview4.cxx ++++ b/sc/source/ui/view/tabview4.cxx +@@ -421,7 +421,12 @@ void ScTabView::UpdateScrollBars() + } + + // set visible area for online spelling +- UpdateGrid(); ++ ++ if ( aViewData.IsActive() ) ++ { ++ if (UpdateVisibleRange()) ++ SC_MOD()->AnythingChanged(); // if visible area has changed ++ } + } + + #ifndef HDR_SLIDERSIZE +-- +1.9.3 + diff --git a/office/libreoffice/libreoffice/files/libreoffice-4.4.0.3-gcc_4_9_0-2.patch b/office/libreoffice/libreoffice/files/libreoffice-4.4.0.3-gcc_4_9_0-2.patch new file mode 100644 index 0000000000..a93bf02184 --- /dev/null +++ b/office/libreoffice/libreoffice/files/libreoffice-4.4.0.3-gcc_4_9_0-2.patch @@ -0,0 +1,91 @@ +Submitted By: Ken Moffat + new version: Fernando de Oliveira +Date: 2015-02-17 +Initial Package Version: 4.4.0.3 +Upstream Status: Fixed +Origin: Upstream +URL: http://lists.freedesktop.org/archives/libreoffice-commits/2015-February/092644.html +Description: Let libreoffice compile with gcc-4.9.0 +Comment: Included text part of the commit below + + +commit 0e4b1d2127957459b79f41a96f1fa0061d399b3b +Author: Michael Stahl +Date: Sat Feb 14 00:17:06 2015 +0100 + + tdf#78174: toolkit: work around GCC 4.9 -Os link failure + + A build with gcc (GCC) 4.9.2 20141101 (Red Hat 4.9.2-1) for 32-bit x86 + fails because of these undefined symbols: + + > nm --demangle workdir/CxxObject/svx/source/fmcomp/fmgridif.o | grep + \\bWindowListenerMultiplexer::acquire + U non-virtual thunk to WindowListenerMultiplexer::acquire() + + They should probably be generated inline. Work around by out-lining the + definition of the methods. + + https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64812 + + Change-Id: I318f7c39bdf1243be385bc6dc0a47862b22e92c5 + (cherry picked from commit 6b3aa0fe4094e87290bd33a30bd6cd99ee78ce38) + Reviewed-on: https://gerrit.libreoffice.org/14509 + Reviewed-by: Miklos Vajna + Tested-by: Miklos Vajna + +diff --git a/include/toolkit/helper/macros.hxx b/include/toolkit/helper/macros.hxx +index e048e75..b212dff 100644 +--- a/include/toolkit/helper/macros.hxx ++++ b/include/toolkit/helper/macros.hxx +@@ -112,8 +112,8 @@ class ClassName : public ListenerMultiplexerBase, public InterfaceName \ + public: \ + ClassName( ::cppu::OWeakObject& rSource ); \ + ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; \ +- void SAL_CALL acquire() throw() SAL_OVERRIDE { ListenerMultiplexerBase::acquire(); } \ +- void SAL_CALL release() throw() SAL_OVERRIDE { ListenerMultiplexerBase::release(); } \ ++ void SAL_CALL acquire() throw() SAL_OVERRIDE; \ ++ void SAL_CALL release() throw() SAL_OVERRIDE; \ + void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + + +@@ -124,8 +124,8 @@ class TOOLKIT_DLLPUBLIC ClassName : public ListenerMultiplexerBase, public Inter + public: \ + ClassName( ::cppu::OWeakObject& rSource ); \ + ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; \ +- void SAL_CALL acquire() throw() SAL_OVERRIDE { ListenerMultiplexerBase::acquire(); } \ +- void SAL_CALL release() throw() SAL_OVERRIDE { ListenerMultiplexerBase::release(); } \ ++ void SAL_CALL acquire() throw() SAL_OVERRIDE; \ ++ void SAL_CALL release() throw() SAL_OVERRIDE; \ + void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + + +@@ -140,6 +140,8 @@ ClassName::ClassName( ::cppu::OWeakObject& rSource ) \ + : ListenerMultiplexerBase( rSource ) \ + { \ + } \ ++void SAL_CALL ClassName::acquire() throw() { ListenerMultiplexerBase::acquire(); } \ ++void SAL_CALL ClassName::release() throw() { ListenerMultiplexerBase::release(); } \ + ::com::sun::star::uno::Any ClassName::queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception) \ + { \ + ::com::sun::star::uno::Any aRet = ::cppu::queryInterface( rType, \ +diff --git a/toolkit/source/helper/listenermultiplexer.cxx b/toolkit/source/helper/listenermultiplexer.cxx +index 797fad2..b109c5f 100644 +--- a/toolkit/source/helper/listenermultiplexer.cxx ++++ b/toolkit/source/helper/listenermultiplexer.cxx +@@ -47,6 +47,15 @@ EventListenerMultiplexer::EventListenerMultiplexer( ::cppu::OWeakObject& rSource + { + } + ++void SAL_CALL EventListenerMultiplexer::acquire() throw () ++{ ++ return ListenerMultiplexerBase::acquire(); ++} ++void SAL_CALL EventListenerMultiplexer::release() throw () ++{ ++ return ListenerMultiplexerBase::release(); ++} ++ + // ::com::sun::star::uno::XInterface + ::com::sun::star::uno::Any EventListenerMultiplexer::queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception) + { diff --git a/office/libreoffice/libreoffice/files/libreoffice-4.4.1.2-improve-KDE4FilePicker.patch b/office/libreoffice/libreoffice/files/libreoffice-4.4.1.2-improve-KDE4FilePicker.patch new file mode 100644 index 0000000000..61e036eec1 --- /dev/null +++ b/office/libreoffice/libreoffice/files/libreoffice-4.4.1.2-improve-KDE4FilePicker.patch @@ -0,0 +1,192 @@ +Merged upstream commits: + +6fc55b9abd783b624241d56e34751ea495adbd7d "KDE4: actually apply file dialog operation mode" +b613270a730ace29dd1b16b29be2222b34f34a5d "KDE4: improve default load and save dialog titles" + + +diff -u b/vcl/unx/kde4/KDE4FilePicker.cxx b/vcl/unx/kde4/KDE4FilePicker.cxx +--- b/vcl/unx/kde4/KDE4FilePicker.cxx ++++ b/vcl/unx/kde4/KDE4FilePicker.cxx +@@ -58,6 +58,8 @@ + + #include "generic/geninst.h" + ++#include "svids.hrc" ++ + using namespace ::com::sun::star; + using namespace ::com::sun::star::ui::dialogs; + using namespace ::com::sun::star::ui::dialogs::TemplateDescription; +@@ -109,7 +111,6 @@ + + KDE4FilePicker::KDE4FilePicker( const uno::Reference& ) + : KDE4FilePicker_Base(_helperMutex) +- , _resMgr( ResMgr::CreateResMgr("fps_office") ) + , allowRemoteUrls( false ) + { + _extraControls = new QWidget(); +@@ -128,8 +129,7 @@ + #endif + + setMultiSelectionMode( false ); +- //default mode +- _dialog->setOperationMode(KFileDialog::Opening); ++ _dialog->setConfirmOverwrite( true ); + + // XExecutableDialog functions + connect( this, SIGNAL( setTitleSignal( const OUString & ) ), +@@ -202,7 +202,6 @@ + SalYieldMutexReleaser aReleaser; + return Q_EMIT cleanupProxySignal(); + } +- delete _resMgr; + delete _dialog; + } + +@@ -524,6 +523,24 @@ + return toOUString(label); + } + ++QString KDE4FilePicker::getResString( sal_Int16 aRedId ) ++{ ++ QString aResString; ++ ++ if( aRedId < 0 ) ++ return aResString; ++ ++ try ++ { ++ aResString = toQString(ResId(aRedId, *ImplGetResMgr()).toString()); ++ } ++ catch(...) ++ { ++ } ++ ++ return aResString.replace('~', '&'); ++} ++ + void KDE4FilePicker::addCustomControl(sal_Int16 controlId) + { + QWidget* widget = 0; +@@ -532,37 +549,37 @@ + switch (controlId) + { + case CHECKBOX_AUTOEXTENSION: +- resId = STR_SVT_FILEPICKER_AUTO_EXTENSION; ++ resId = STR_FPICKER_AUTO_EXTENSION; + break; + case CHECKBOX_PASSWORD: +- resId = STR_SVT_FILEPICKER_PASSWORD; ++ resId = STR_FPICKER_PASSWORD; + break; + case CHECKBOX_FILTEROPTIONS: +- resId = STR_SVT_FILEPICKER_FILTER_OPTIONS; ++ resId = STR_FPICKER_FILTER_OPTIONS; + break; + case CHECKBOX_READONLY: +- resId = STR_SVT_FILEPICKER_READONLY; ++ resId = STR_FPICKER_READONLY; + break; + case CHECKBOX_LINK: +- resId = STR_SVT_FILEPICKER_INSERT_AS_LINK; ++ resId = STR_FPICKER_INSERT_AS_LINK; + break; + case CHECKBOX_PREVIEW: +- resId = STR_SVT_FILEPICKER_SHOW_PREVIEW; ++ resId = STR_FPICKER_SHOW_PREVIEW; + break; + case CHECKBOX_SELECTION: +- resId = STR_SVT_FILEPICKER_SELECTION; ++ resId = STR_FPICKER_SELECTION; + break; + case PUSHBUTTON_PLAY: +- resId = STR_SVT_FILEPICKER_PLAY; ++ resId = STR_FPICKER_PLAY; + break; + case LISTBOX_VERSION: +- resId = STR_SVT_FILEPICKER_VERSION; ++ resId = STR_FPICKER_VERSION; + break; + case LISTBOX_TEMPLATE: +- resId = STR_SVT_FILEPICKER_TEMPLATES; ++ resId = STR_FPICKER_TEMPLATES; + break; + case LISTBOX_IMAGE_TEMPLATE: +- resId = STR_SVT_FILEPICKER_IMAGE_TEMPLATE; ++ resId = STR_FPICKER_IMAGE_TEMPLATE; + break; + case LISTBOX_VERSION_LABEL: + case LISTBOX_TEMPLATE_LABEL: +@@ -581,16 +598,7 @@ + case CHECKBOX_PREVIEW: + case CHECKBOX_SELECTION: + { +- QString label; +- +- if (_resMgr && resId != -1) +- { +- OUString s(ResId(resId, *_resMgr).toString()); +- label = toQString(s); +- label.replace("~", "&"); +- } +- +- widget = new QCheckBox(label, _extraControls); ++ widget = new QCheckBox(getResString(resId), _extraControls); + + // the checkbox is created even for CHECKBOX_AUTOEXTENSION to simplify + // code, but the checkbox is hidden and ignored +@@ -719,8 +727,22 @@ + 1 ); + } + +- _dialog->setOperationMode(operationMode); +- _dialog->setConfirmOverwrite(true); ++ _dialog->setOperationMode( operationMode ); ++ ++ sal_Int16 resId = -1; ++ switch (_dialog->operationMode()) ++ { ++ case KFileDialog::Opening: ++ resId = STR_FPICKER_OPEN; ++ break; ++ case KFileDialog::Saving: ++ resId = STR_FPICKER_SAVE; ++ break; ++ default: ++ break; ++ } ++ ++ _dialog->setCaption(getResString(resId)); + } + + void SAL_CALL KDE4FilePicker::cancel() +only in patch2: +unchanged: +--- a/vcl/unx/kde4/KDE4FilePicker.hxx ++++ b/vcl/unx/kde4/KDE4FilePicker.hxx +@@ -41,8 +41,6 @@ class KFileDialog; + class QWidget; + class QLayout; + +-class ResMgr; +- + typedef ::cppu::WeakComponentImplHelper5 + < ::com::sun::star::ui::dialogs::XFilePicker2 + , ::com::sun::star::ui::dialogs::XFilePicker3 +@@ -61,8 +59,6 @@ protected: + + ::com::sun::star::uno::Reference< ::com::sun::star::ui::dialogs::XFilePickerListener > m_xListener; + +- ResMgr *_resMgr; +- + //the dialog to display + KFileDialog* _dialog; + +@@ -225,6 +221,8 @@ private: + //add a custom control widget to the file dialog + void addCustomControl(sal_Int16 controlId); + ++ QString getResString( sal_Int16 aRedId ); ++ + private Q_SLOTS: + void cleanupProxy(); + void checkProtocol(); diff --git a/office/libreoffice/libreoffice/files/libreoffice-splash.png b/office/libreoffice/libreoffice/files/libreoffice-splash.png new file mode 100644 index 0000000000..d29b4c7ed5 Binary files /dev/null and b/office/libreoffice/libreoffice/files/libreoffice-splash.png differ diff --git a/office/libreoffice/libreoffice/files/libreoffice_new_splash.png b/office/libreoffice/libreoffice/files/libreoffice_new_splash.png new file mode 100644 index 0000000000..da25226349 Binary files /dev/null and b/office/libreoffice/libreoffice/files/libreoffice_new_splash.png differ diff --git a/office/libreoffice/libreoffice/files/openoffice.org-2.4.0.ooo86080.unopkg.bodge.patch b/office/libreoffice/libreoffice/files/openoffice.org-2.4.0.ooo86080.unopkg.bodge.patch new file mode 100755 index 0000000000..b5a7ff7e83 --- /dev/null +++ b/office/libreoffice/libreoffice/files/openoffice.org-2.4.0.ooo86080.unopkg.bodge.patch @@ -0,0 +1,47 @@ +--- openoffice.org.orig/desktop/scripts/unopkg.sh 2008-01-14 15:55:26.000000000 +0000 ++++ openoffice.org/desktop/scripts/unopkg.sh 2008-02-14 10:52:10.000000000 +0000 +@@ -62,6 +62,33 @@ + ;; + esac + ++isnotuser=0 ++for arg in $@ ++do ++if [ "$arg" = "--shared" -o "$arg" = "--bundled" ]; then ++ isnotuser=1 ++fi ++done ++if [ $isnotuser -eq 1 ]; then ++ echo $@ | grep -q env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY ++ if [ $? -ne 0 ]; then ++ set -- $@ '-env:JFW_PLUGIN_DO_NOT_CHECK_ACCESSIBILITY=1' ++ fi ++ echo $@ | grep -q env:UNO_JAVA_JFW_INSTALL_DATA ++ if [ $? -ne 0 -a -w $sd_prog/../share/config/javasettingsunopkginstall.xml ]; then ++ set -- $@ '-env:UNO_JAVA_JFW_INSTALL_DATA=$$ORIGIN/../share/config/javasettingsunopkginstall.xml' ++ fi ++ echo $@ | grep -q env:UserInstallation ++ if [ $? -ne 0 ]; then ++ INSTDIR=`/bin/mktemp -d --tmpdir unoinstall.XXXXXX` ++ if [ $? -ne 0 ]; then ++ echo "Could not create tmp dir" >&2 ++ exit 1 ++ fi ++ set -- $@ '-env:UserInstallation=file://'$INSTDIR ++ fi ++fi ++ + #collect all bootstrap variables specified on the command line + #so that they can be passed as arguments to javaldx later on + for arg in $@ +@@ -110,6 +137,8 @@ + # SAL_NO_XINITTHREADS=true; export SAL_NO_XINITTHREADS + + # execute binary +-exec "$sd_prog/unopkg.bin" "$@" \ ++"$sd_prog/unopkg.bin" "$@" \ + "-env:INIFILENAME=vnd.sun.star.pathname:$sd_prog/redirectrc" +- ++if [ -n "$INSTDIR" ]; then ++ rm -rf $INSTDIR ++fi diff --git a/office/libreoffice/libreoffice/files/openoffice.org-3.1.0.oooXXXXX.solenv.allowmissing.patch b/office/libreoffice/libreoffice/files/openoffice.org-3.1.0.oooXXXXX.solenv.allowmissing.patch new file mode 100755 index 0000000000..06410546c9 --- /dev/null +++ b/office/libreoffice/libreoffice/files/openoffice.org-3.1.0.oooXXXXX.solenv.allowmissing.patch @@ -0,0 +1,60 @@ +Index: bin/modules/installer/scriptitems.pm +=================================================================== +RCS file: /cvs/tools/solenv/bin/modules/installer/scriptitems.pm,v +retrieving revision 1.17 +diff -u -p -r1.17 scriptitems.pm +--- openoffice.org.orig/solenv/bin/modules/installer/scriptitems.pm 24 Feb 2005 16:21:15 -0000 1.17 ++++ openoffice.org/solenv/bin/modules/installer/scriptitems.pm 18 Mar 2005 22:39:42 -0000 +@@ -1356,11 +1356,10 @@ + + if ( ! $installer::globals::languagepack && !$installer::globals::helppack) + { +- $infoline = "ERROR: Removing file $filename from file list.\n"; ++ $infoline = "WARNING: Removing file $filename from file list.\n"; + push( @installer::globals::logfileinfo, $infoline); + +- push(@missingfiles, "ERROR: File not found: $filename\n"); +- $error_occurred = 1; ++ push(@missingfiles, "WARNING: File not found: $filename\n"); + + next; # removing this file from list, if sourcepath is empty + } +@@ -1368,11 +1367,10 @@ + { + if (( $onefile->{'ismultilingual'} ) || ( $styles =~ /\bFORCELANGUAGEPACK\b/ )) + { +- $infoline = "ERROR: Removing file $filename from file list.\n"; ++ $infoline = "WARNING: Removing file $filename from file list.\n"; + push( @installer::globals::logfileinfo, $infoline); + +- push(@missingfiles, "ERROR: File not found: $filename\n"); +- $error_occurred = 1; ++ push(@missingfiles, "WARNING: File not found: $filename\n"); + + next; # removing this file from list, if sourcepath is empty + } +@@ -1390,11 +1388,10 @@ + { + if (( $onefile->{'ismultilingual'} ) || ( $styles =~ /\bFORCEHELPPACK\b/ )) + { +- $infoline = "ERROR: Removing file $filename from file list.\n"; ++ $infoline = "WARNING: Removing file $filename from file list.\n"; + push( @installer::globals::logfileinfo, $infoline); + +- push(@missingfiles, "ERROR: File not found: $filename\n"); +- $error_occurred = 1; ++ push(@missingfiles, "WARNING: File not found: $filename\n"); + + next; # removing this file from list, if sourcepath is empty + } +--- openoffice.org.orig/solenv/bin/modules/installer/simplepackage.pm 2010-07-12 10:27:26.000000000 +0100 ++++ openoffice.org/solenv/bin/modules/installer/simplepackage.pm 2010-07-12 10:27:54.000000000 +0100 +@@ -53,7 +53,7 @@ + ( $installer::globals::packageformat eq "archive" )) + { + $installer::globals::is_simple_packager_project = 1; +- $installer::globals::patch_user_dir = 1; ++ $installer::globals::patch_user_dir = 1; + } + elsif( $installer::globals::packageformat eq "dmg" ) + { diff --git a/office/libreoffice/libreoffice/files/prevent_KDE_Qt_from_interfering_with_the_session_manager.diff b/office/libreoffice/libreoffice/files/prevent_KDE_Qt_from_interfering_with_the_session_manager.diff new file mode 100644 index 0000000000..07062a840b --- /dev/null +++ b/office/libreoffice/libreoffice/files/prevent_KDE_Qt_from_interfering_with_the_session_manager.diff @@ -0,0 +1,72 @@ +From 01d128557726134b5da9e9b951e60286eac311a8 Mon Sep 17 00:00:00 2001 +From: LuboÅ¡ Luňák +Date: Tue, 25 Mar 2014 12:20:16 +0100 +Subject: [PATCH] prevent KDE/Qt from interfering with the session manager + +I occassionally get lockups in IceProcessMessages() called from QtCore, +I'm actually not exactly sure why, as theoretically two connections +from one app shouldn't be a problem, but since LO does its own +session handling, there's no need to the KDE/Qt code to be involved, +so prevent it from connecting to the session manager altogether. + +Change-Id: Iebe20d4cb5403e5fea8bd5d8c1f69b62d1c2907b +(cherry picked from commit 71f2aff7a56cef4e133abad3c2e447c76c5ee1fe) +--- + +diff --git a/vcl/unx/kde4/KDEXLib.cxx b/vcl/unx/kde4/KDEXLib.cxx +index 820d39a..e4900a7 100644 +--- a/vcl/unx/kde4/KDEXLib.cxx ++++ b/vcl/unx/kde4/KDEXLib.cxx +@@ -166,8 +166,23 @@ + + KCmdLineArgs::init( m_nFakeCmdLineArgs, m_pAppCmdLineArgs, kAboutData ); + ++ // LO does its own session management, so prevent KDE/Qt from interfering ++ // (QApplication::disableSessionManagement(false) wouldn't quite do, ++ // since that still actually connects to the session manager, it just ++ // won't save the application data on session shutdown). ++ char* session_manager = NULL; ++ if( getenv( "SESSION_MANAGER" ) != NULL ) ++ { ++ session_manager = strdup( getenv( "SESSION_MANAGER" )); ++ unsetenv( "SESSION_MANAGER" ); ++ } + m_pApplication = new VCLKDEApplication(); +- kapp->disableSessionManagement(); ++ if( session_manager != NULL ) ++ { ++ setenv( "SESSION_MANAGER", session_manager, 1 ); ++ free( session_manager ); ++ } ++ + KApplication::setQuitOnLastWindowClosed(false); + + #if KDE_HAVE_GLIB +diff --git a/vcl/unx/kde4/VCLKDEApplication.hxx b/vcl/unx/kde4/VCLKDEApplication.hxx +index 412ee34..4ce0b2c 100644 +--- a/vcl/unx/kde4/VCLKDEApplication.hxx ++++ b/vcl/unx/kde4/VCLKDEApplication.hxx +@@ -21,22 +21,14 @@ + + #define Region QtXRegion + +-#include +- + #include + + #undef Region + +-/* #i59042# override KApplications method for session management +- * since it will interfere badly with our own. +- */ + class VCLKDEApplication : public KApplication + { + public: + VCLKDEApplication(); +- +- virtual void commitData(QSessionManager&) {}; +- + virtual bool x11EventFilter(XEvent* event); + }; + + diff --git a/office/libreoffice/libreoffice/pspec.xml b/office/libreoffice/libreoffice/pspec.xml new file mode 100644 index 0000000000..c8d08c6ef6 --- /dev/null +++ b/office/libreoffice/libreoffice/pspec.xml @@ -0,0 +1,3443 @@ + + + + + + libreoffice + http://www.documentfoundation.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv3 + libreoffice-startcenter + app:gui + LibreOffice office suite + LibreOffice is an open source, multi-platform office productivity suite. It includes key desktop applications such as a word processor, a spreadsheet application, a presentation creator-viewer, a formula editor and a drawing program, with a user interface and feature set similar to other office suites. Sophisticated and flexible, LibreOffice also works transparently with a variety of file formats, including those of Microsoft Office. + http://download.documentfoundation.org/libreoffice/src/5.0.0/libreoffice-5.0.0.5.tar.xz + http://download.documentfoundation.org/libreoffice/src/5.0.0/libreoffice-help-5.0.0.5.tar.xz + http://download.documentfoundation.org/libreoffice/src/5.0.0/libreoffice-dictionaries-5.0.0.5.tar.xz + http://download.documentfoundation.org/libreoffice/src/5.0.0/libreoffice-translations-5.0.0.5.tar.xz + + gperf + python3 + nss-devel + gtk2-devel + cups-devel + curl-devel + glew-devel + libXt-devel + lcms2-devel + boost-devel + libSM-devel + libX11-devel + libICE-devel + libxslt-devel + libXext-devel + poppler-devel + openssl-devel + harfbuzz-devel + dbus-glib-devel + libXrandr-devel + perl-XML-Parser + libXrender-devel + perl-Archive-Zip + fontconfig-devel + libXinerama-devel + libXcomposite-devel + libjpeg-turbo-devel + gst-plugins-base-next-devel + + + + + libreoffice-common + libreoffice-startcenter + + atk + nss + cups + curl + dbus + gtk2 + mesa + nspr + zlib + bzip2 + cairo + expat + glib2 + icu4c + lcms2 + boost + libSM + libXt + pango + libICE + libXext + libxml2 + libxslt + openssl + poppler + freetype + harfbuzz + dbus-glib + libXrandr + fontconfig + gdk-pixbuf + libXrender + libXinerama + libjpeg-turbo + gstreamer-next + + + libreoffice-base + libreoffice-calc + libreoffice-draw + libreoffice-math + libreoffice-writer + libreoffice-impress + + + /etc + /usr/share/man + /usr/bin + /usr/share/mime + /usr/share/icons + /usr/share/mimelnk + /usr/share/appdata + /usr/share/pixmaps + /usr/share/mime-info + /usr/lib/libreoffice/ + /usr/share/applications/ + /usr/share/application-registry + /usr/lib/libreoffice/program/ + + + libreoffice_new_splash.png + + + + + libreoffice-common-dictionaries + LibreOffice additional dictionaries + LibreOffice additional dictionaries + + libreoffice-writer + + + /usr/lib/libreoffice/share/extensions + + + + + libreoffice-base + libreoffice-base + Database front-end for LibreOffice + + /usr/bin/lobase + /usr/share/man/man1/lobase.1.gz + /usr/lib/libreoffice/program/sbase + /usr/share/applications/libreoffice-base.desktop + + + + + libreoffice-calc + libreoffice-calc + Spreadsheet application for LibreOffice. + + /usr/bin/localc + /usr/share/man/man1/localc.1.gz + /usr/lib/libreoffice/program/scalc + /usr/share/applications/libreoffice-calc.desktop + + + + + libreoffice-draw + libreoffice-draw + Drawing Application for LibreOffice. + + /usr/bin/lodraw + /usr/share/man/man1/lodraw.1.gz + /usr/lib/libreoffice/program/sdraw + /usr/share/applications/libreoffice-draw.desktop + + + + + libreoffice-impress + libreoffice-impress + Presentation Application for LibreOffice. + + libreoffice-common + + + /usr/bin/loimpress + /usr/share/man/man1/loimpress.1.gz + /usr/lib/libreoffice/program/simpress + /usr/share/applications/libreoffice-impress.desktop + + + + + libreoffice-math + libreoffice-math + Equation Editor Application for LibreOffice. + + libreoffice-common + + + /usr/bin/lomath + /usr/share/man/man1/lomath.1.gz + /usr/lib/libreoffice/program/smath + /usr/share/applications/libreoffice-math.desktop + + + + + + + + + + + libreoffice-writer + libreoffice-writer + Word Processor Application for LibreOffice. + + /usr/bin/loweb + /usr/bin/lowriter + /usr/share/man/man1/loweb.1.gz + /usr/share/man/man1/lowriter.1.gz + /usr/lib/libreoffice/program/swriter + /usr/share/applications/libreoffice-writer.desktop + + + + + libreoffice-help-am + locale:am + libre-lang-am + Amharic help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/am + + + + + libreoffice-help-ast + locale:ast + libre-lang-ast + Asturianu help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/ast + + + + + libreoffice-help-bg + locale:bg + libre-lang-bg + Bulgarian help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/bg + + + + + libreoffice-help-bn + locale:bn + libre-lang-bn + Bengali help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/bn + + + + + libreoffice-help-bn-IN + locale:bn-IN + libre-lang-bn-IN + Bengali (India) help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/bn-IN + + + + + libreoffice-help-bo + locale:bo + libre-lang-bo + Tibetan help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/bo + + + + + libreoffice-help-bs + locale:bs + libre-lang-bs + Bosnian help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/bs + + + + + libreoffice-help-ca + locale:ca + libre-lang-ca + Catalan help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/ca + + + + + libreoffice-help-ca-valencia + locale:ca-valencia + libre-lang-ca-valencia + Catalan (Valencia) help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/ca-valencia + + + + + libreoffice-help-cs + locale:cs + libre-lang-cs + Czech help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/cs + + + + + libreoffice-help-da + locale:da + libre-lang-da + Danish help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/da + + + + + libreoffice-help-de + locale:de + libre-lang-de + German help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/de + + + + + libreoffice-help-dz + locale:dz + libre-lang-dz + Dzongkha help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/dz + + + + + libreoffice-help-el + locale:el + libre-lang-el + Greek help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/el + + + + + libreoffice-help-en-GB + locale:en-GB + libre-lang-en-GB + English (GB) help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/en-GB + + + + + libreoffice-help-en-US + locale:en-US + libre-lang-en-US + English (US) help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/en-US + + + + + libreoffice-help-en-ZA + locale:en-ZA + libre-lang-en-ZA + English (ZA) help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/en-ZA + + + + + libreoffice-help-eo + locale:eo + libre-lang-eo + Esperanto help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/eo + + + + + libreoffice-help-es + locale:es + libre-lang-es + Spanish help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/es + + + + + libreoffice-help-et + locale:et + libre-lang-et + Estonian help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/et + + + + + libreoffice-help-eu + locale:eu + libre-lang-eu + Basque help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/eu + + + + + libreoffice-help-fi + locale:fi + libre-lang-fi + Finnish help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/fi + + + + + libreoffice-help-fr + locale:fr + libre-lang-fr + French help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/fr + + + + + libreoffice-help-gl + locale:gl + libre-lang-gl + Galician help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/gl + + + + + libreoffice-help-gu + locale:gu + libre-lang-gu + Gujarati help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/gu + + + + + libreoffice-help-he + locale:he + libre-lang-he + Hebrew help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/he + + + + + libreoffice-help-hi + locale:hi + libre-lang-hi + Hindi help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/hi + + + + + libreoffice-help-hr + locale:hr + libre-lang-hr + Croatian help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/hr + + + + + libreoffice-help-hu + locale:hu + libre-lang-hu + Hungarian help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/hu + + + + + libreoffice-help-id + locale:id + libre-lang-id + Indonesian help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/id + + + + + libreoffice-help-is + locale:is + libre-lang-is + Icelandic help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/is + + + + + libreoffice-help-it + locale:it + libre-lang-it + Italian help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/it + + + + + libreoffice-help-ja + locale:ja + libre-lang- + Japanese help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/ja + + + + + libreoffice-help-ka + locale:ka + libre-lang-ka + Georgian help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/ka + + + + + libreoffice-help-ko + locale:ko + libre-lang-ko + Korean help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/ko + + + + + libreoffice-help-km + locale:km + libre-lang- + Khmer (Cambodia) help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/km + + + + + libreoffice-help-mk + locale:mk + libre-lang-mk + Macedonian help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/mk + + + + + libreoffice-help-nb + locale:nb + libre-lang- + Norwegian Bokmal help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/nb + + + + + libreoffice-help-ne + locale:ne + libre-lang-ne + Nepali help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/ne + + + + + libreoffice-help-nl + locale:nl + libre-lang-nl + Dutch help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/nl + + + + + libreoffice-help-nn + locale:nn + libre-lang-nn + Norwegian Nynorsk help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/nn + + + + + libreoffice-help-om + locale:om + libre-lang-om + Oromo help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/om + + + + + libreoffice-help-pl + locale:pl + libre-lang-pl + Polish help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/pl + + + + + libreoffice-help-pt + locale:pt + libre-lang-pt + Portuguese help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/pt + + + + + libreoffice-help-pt-BR + locale:pt-BR + libre-lang-pt-BR + Portuguese (Brasil) help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/pt-BR + + + + + libreoffice-help-ru + locale:ru + libre-lang-ru + Russian help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/ru + + + + + libreoffice-help-si + locale:si + libre-lang-si + Singhalese help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/si + + + + + libreoffice-help-sk + locale:sk + libre-lang-sk + Slovak help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/sk + + + + + libreoffice-help-sl + locale:sl + libre-lang-sl + Slovenian help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/sl + + + + + libreoffice-help-sq + locale:sq + libre-lang-sq + Albanien help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/sq + + + + + libreoffice-help-sv + locale:sv + libre-lang-sv + Swedish help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/sv + + + + + libreoffice-help-tg + locale:tg + libre-lang-tg + Tajik help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/tg + + + + + libreoffice-help-tr + locale:tr + libre-lang-tr + Turkish help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/tr + + + + + libreoffice-help-ug + locale:ug + libre-lang-ug + Uighur help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/ug + + + + + libreoffice-help-uk + locale:uk + libre-lang-uk + Ukrainian help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/uk + + + + + libreoffice-help-vi + locale:vi + libre-lang-vi + Vietnamese help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/vi + + + + + libreoffice-help-zh-CN + locale:zh-CN + libre-lang-zh-CN + Chinese (simplified) help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/zh-CN + + + + + libreoffice-help-zh-TW + locale:zh-TW + libre-lang-zh-TW + Chinese (traditional) help pack for LibreOffice. + + libreoffice-common + + + /usr/lib/libreoffice/help/zh-TW + + + + + libreoffice-af + locale:af + libre-lang-af + libreoffice-af, Afrikaans language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_af + /usr/lib/libreoffice/share/autotext/af + /usr/lib/libreoffice/share/registry/*af.xcd + /usr/lib/libreoffice/program/resource/*af.res + /usr/lib/libreoffice/share/registry/res/*_af.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/af.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/af.zip + + + + + libreoffice-am + locale:am + libre-lang-am + libreoffice-am, Amharic language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_am + /usr/lib/libreoffice/share/autotext/am + /usr/lib/libreoffice/share/registry/*am.xcd + /usr/lib/libreoffice/program/resource/*am.res + /usr/lib/libreoffice/share/registry/res/*_am.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/am.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/am.zip + + + + + libreoffice-ar + locale:ar + libre-lang-ar + libreoffice-ar, Arabic language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_ar + /usr/lib/libreoffice/share/autotext/ar + /usr/lib/libreoffice/share/registry/*ar.xcd + /usr/lib/libreoffice/program/resource/*ar.res + /usr/lib/libreoffice/share/registry/res/*_ar.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ar.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ar.zip + + + + + libreoffice-as + locale:as + libre-lang-as + libreoffice-as, Assamese (India) language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_as + /usr/lib/libreoffice/share/autotext/as + /usr/lib/libreoffice/share/registry/*as.xcd + /usr/lib/libreoffice/program/resource/*as.res + /usr/lib/libreoffice/share/registry/res/*_as.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/as.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/as.zip + + + + + libreoffice-ast + locale:ast + libre-lang-ast + libreoffice-ast, Asturianu language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_ast + /usr/lib/libreoffice/share/autotext/ast + /usr/lib/libreoffice/share/registry/*ast.xcd + /usr/lib/libreoffice/program/resource/abpast.res + /usr/lib/libreoffice/program/resource/accast.res + /usr/lib/libreoffice/program/resource/analysisast.res + /usr/lib/libreoffice/program/resource/avmediaast.res + /usr/lib/libreoffice/program/resource/basctlast.res + /usr/lib/libreoffice/program/resource/bibast.res + /usr/lib/libreoffice/program/resource/chartcontrollerast.res + /usr/lib/libreoffice/program/resource/cnrast.res + /usr/lib/libreoffice/program/resource/cuiast.res + /usr/lib/libreoffice/program/resource/dateast.res + /usr/lib/libreoffice/program/resource/dbaast.res + /usr/lib/libreoffice/program/resource/dbmmast.res + /usr/lib/libreoffice/program/resource/dbpast.res + /usr/lib/libreoffice/program/resource/dbuast.res + /usr/lib/libreoffice/program/resource/dbwast.res + /usr/lib/libreoffice/program/resource/deploymentast.res + /usr/lib/libreoffice/program/resource/deploymentguiast.res + /usr/lib/libreoffice/program/resource/dktast.res + /usr/lib/libreoffice/program/resource/editengast.res + /usr/lib/libreoffice/program/resource/epsast.res + /usr/lib/libreoffice/program/resource/eurast.res + /usr/lib/libreoffice/program/resource/forast.res + /usr/lib/libreoffice/program/resource/foruiast.res + /usr/lib/libreoffice/program/resource/fps_officeast.res + /usr/lib/libreoffice/program/resource/frmast.res + /usr/lib/libreoffice/program/resource/fweast.res + /usr/lib/libreoffice/program/resource/galast.res + /usr/lib/libreoffice/program/resource/impast.res + /usr/lib/libreoffice/program/resource/ofaast.res + /usr/lib/libreoffice/program/resource/pcrast.res + /usr/lib/libreoffice/program/resource/pdffilterast.res + /usr/lib/libreoffice/program/resource/pricingast.res + /usr/lib/libreoffice/program/resource/rptast.res + /usr/lib/libreoffice/program/resource/rptuiast.res + /usr/lib/libreoffice/program/resource/sbast.res + /usr/lib/libreoffice/program/resource/scast.res + /usr/lib/libreoffice/program/resource/scnast.res + /usr/lib/libreoffice/program/resource/sdbclast.res + /usr/lib/libreoffice/program/resource/sdberrast.res + /usr/lib/libreoffice/program/resource/sdast.res + /usr/lib/libreoffice/program/resource/sdbtast.res + /usr/lib/libreoffice/program/resource/sfxast.res + /usr/lib/libreoffice/program/resource/smast.res + /usr/lib/libreoffice/program/resource/solverast.res + /usr/lib/libreoffice/program/resource/svlast.res + /usr/lib/libreoffice/program/resource/svtast.res + /usr/lib/libreoffice/program/resource/svxast.res + /usr/lib/libreoffice/program/resource/swast.res + /usr/lib/libreoffice/program/resource/t602filterast.res + /usr/lib/libreoffice/program/resource/tplast.res + /usr/lib/libreoffice/program/resource/updast.res + /usr/lib/libreoffice/program/resource/uuiast.res + /usr/lib/libreoffice/program/resource/vclast.res + /usr/lib/libreoffice/program/resource/wziast.res + /usr/lib/libreoffice/program/resource/xmlsecast.res + /usr/lib/libreoffice/program/resource/xsltdlgast.res + /usr/lib/libreoffice/share/registry/res/*_ast.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ast.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ast.zip + + + + + libreoffice-be + locale:be + libre-lang-be + libreoffice-be, Belarusian language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_be + /usr/lib/libreoffice/share/autotext/be + /usr/lib/libreoffice/share/registry/*be.xcd + /usr/lib/libreoffice/program/resource/*be.res + /usr/lib/libreoffice/share/registry/res/*_be.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/be.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/be.zip + + + + + libreoffice-bg + locale:bg + libre-lang-bg + libreoffice-bg, Bulgarian language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_bg + /usr/lib/libreoffice/share/autotext/bg + /usr/lib/libreoffice/share/registry/*bg.xcd + /usr/lib/libreoffice/program/resource/*bg.res + /usr/lib/libreoffice/share/registry/res/*_bg.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/bg.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/bg.zip + + + + + libreoffice-bn + locale:bn + libre-lang-bn + libreoffice-bn, Bengali language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_bn + /usr/lib/libreoffice/share/autotext/bn + /usr/lib/libreoffice/share/registry/*bn.xcd + /usr/lib/libreoffice/program/resource/*bn.res + /usr/lib/libreoffice/share/registry/res/*_bn.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/bn.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/bn.zip + + + + + libreoffice-bn-IN + locale:bn-IN + libre-lang-bn-IN + libreoffice-bn-IN, Bengali (India) language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_bn-IN + /usr/lib/libreoffice/share/autotext/bn-IN + /usr/lib/libreoffice/share/registry/*bn-IN.xcd + /usr/lib/libreoffice/program/resource/*bn-IN.res + /usr/lib/libreoffice/share/registry/res/*_bn-IN.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/bn-IN.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/bn-IN.zip + + + + + libreoffice-bo + locale:bo + libre-lang-bo + libreoffice-bo, Tibetan language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_bo + /usr/lib/libreoffice/share/autotext/bo + /usr/lib/libreoffice/share/registry/*bo.xcd + /usr/lib/libreoffice/program/resource/*bo.res + /usr/lib/libreoffice/share/registry/res/*_bo.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/bo.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/bo.zip + + + + + libreoffice-br + locale:br + libre-lang-br + libreoffice-br, Breton language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_br + /usr/lib/libreoffice/share/autotext/br + /usr/lib/libreoffice/share/registry/*br.xcd + /usr/lib/libreoffice/program/resource/*br.res + /usr/lib/libreoffice/share/registry/res/*_br.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/br.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/br.zip + + + + + libreoffice-brx + locale:brx + libre-lang-brx + libreoffice-brx, Bodo language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_brx + /usr/lib/libreoffice/share/autotext/brx + /usr/lib/libreoffice/share/registry/*brx.xcd + /usr/lib/libreoffice/program/resource/*brx.res + /usr/lib/libreoffice/share/registry/res/*_brx.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/brx.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/brx.zip + + + + + libreoffice-bs + locale:bs + libre-lang-bs + libreoffice-bs, Bosnian language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_bs + /usr/lib/libreoffice/share/autotext/bs + /usr/lib/libreoffice/share/registry/*bs.xcd + /usr/lib/libreoffice/program/resource/*bs.res + /usr/lib/libreoffice/share/registry/res/*_bs.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/bs.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/bs.zip + + + + + libreoffice-ca + locale:ca + libre-lang-ca + libreoffice-ca, Catalan language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_ca + /usr/lib/libreoffice/share/autotext/ca + /usr/lib/libreoffice/share/registry/*ca.xcd + /usr/lib/libreoffice/program/resource/*ca.res + /usr/lib/libreoffice/share/registry/res/*_ca.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ca.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ca.zip + + + + + libreoffice-ca-valencia + locale:ca-valencia + libre-lang-ca-valencia + libreoffice-ca-valencia, Catalan (Valencia) language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_ca-valencia + /usr/lib/libreoffice/share/autotext/ca-valencia + /usr/lib/libreoffice/share/registry/*ca-valencia.xcd + /usr/lib/libreoffice/program/resource/*ca-valencia.res + /usr/lib/libreoffice/share/registry/res/*_ca-valencia.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ca-valencia.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ca-valencia.zip + + + + + libreoffice-cs + locale:cs + libre-lang-cs + libreoffice-cs, Czech language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_cs + /usr/lib/libreoffice/share/autotext/cs + /usr/lib/libreoffice/share/registry/*cs.xcd + /usr/lib/libreoffice/program/resource/*cs.res + /usr/lib/libreoffice/share/registry/res/*_cs.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/cs.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/cs.zip + + + + + libreoffice-cy + locale:cy + libre-lang-cy + libreoffice-cy, Welsh language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_cy + /usr/lib/libreoffice/share/autotext/cy + /usr/lib/libreoffice/share/registry/*cy.xcd + /usr/lib/libreoffice/program/resource/*cy.res + /usr/lib/libreoffice/share/registry/res/*_cy.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/cy.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/cy.zip + + + + + libreoffice-da + locale:da + libre-lang-da + libreoffice-da, Danish language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_da + /usr/lib/libreoffice/share/autotext/da + /usr/lib/libreoffice/share/registry/*da.xcd + /usr/lib/libreoffice/program/resource/*da.res + /usr/lib/libreoffice/share/registry/res/*_da.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/da.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/da.zip + + + + + libreoffice-de + locale:de + libre-lang-de + libreoffice-de, German language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_de + /usr/lib/libreoffice/share/autotext/de + /usr/lib/libreoffice/share/registry/*de.xcd + /usr/lib/libreoffice/program/resource/*de.res + /usr/lib/libreoffice/share/registry/res/*_de.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/de.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/de.zip + + + + + libreoffice-dgo + locale:dgo + libre-lang-dgo + libreoffice-dgo, Dogri language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_dgo + /usr/lib/libreoffice/share/autotext/dgo + /usr/lib/libreoffice/share/registry/*dgo.xcd + /usr/lib/libreoffice/program/resource/*dgo.res + /usr/lib/libreoffice/share/registry/res/*_dgo.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/dgo.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/dgo.zip + + + + + libreoffice-dz + locale:dz + libre-lang-dz + libreoffice-dz, Dzongkha language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_dz + /usr/lib/libreoffice/share/autotext/dz + /usr/lib/libreoffice/share/registry/*dz.xcd + /usr/lib/libreoffice/program/resource/*dz.res + /usr/lib/libreoffice/share/registry/res/*_dz.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/dz.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/dz.zip + + + + + libreoffice-el + locale:el + libre-lang-el + libreoffice-el, Greek language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_el + /usr/lib/libreoffice/share/autotext/el + /usr/lib/libreoffice/share/registry/*el.xcd + /usr/lib/libreoffice/program/resource/*el.res + /usr/lib/libreoffice/share/registry/res/*_el.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/el.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/el.zip + + + + + libreoffice-en-GB + locale:en-GB + libre-lang-en-GB + libreoffice-en-GB, English (GB) language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_en-GB + /usr/lib/libreoffice/share/autotext/en-GB + /usr/lib/libreoffice/share/registry/*en-GB.xcd + /usr/lib/libreoffice/program/resource/*en-GB.res + /usr/lib/libreoffice/share/registry/res/*_en-GB.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/en-GB.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/en-GB.zip + + + + + libreoffice-en-US + locale:en-US + libre-lang-en-US + libreoffice-en-US, English (US) language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_en-US + /usr/lib/libreoffice/share/autotext/en-US + /usr/lib/libreoffice/share/registry/*en-US.xcd + /usr/lib/libreoffice/program/resource/*en-US.res + /usr/lib/libreoffice/share/registry/res/*_en-US.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/en-US.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/en-US.zip + + + + + libreoffice-en-ZA + locale:en-ZA + libre-lang-en-ZA + libreoffice-en-ZA, English (ZA) language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_en-ZA + /usr/lib/libreoffice/share/autotext/en-ZA + /usr/lib/libreoffice/share/registry/*en-ZA.xcd + /usr/lib/libreoffice/program/resource/*en-ZA.res + /usr/lib/libreoffice/share/registry/res/*_en-ZA.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/en-ZA.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/en-ZA.zip + + + + + libreoffice-eo + locale:eo + libre-lang-eo + libreoffice-eo, Esperanto language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_eo + /usr/lib/libreoffice/share/autotext/eo + /usr/lib/libreoffice/share/registry/*eo.xcd + /usr/lib/libreoffice/program/resource/*eo.res + /usr/lib/libreoffice/share/registry/res/*_eo.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/eo.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/eo.zip + + + + + libreoffice-es + locale:es + libre-lang-es + libreoffice-es, Spanish language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_es + /usr/lib/libreoffice/share/autotext/es + /usr/lib/libreoffice/share/registry/*es.xcd + /usr/lib/libreoffice/program/resource/*es.res + /usr/lib/libreoffice/share/registry/res/*_es.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/es.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/es.zip + + + + + libreoffice-et + locale:et + libre-lang-et + libreoffice-et, Estonian language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_et + /usr/lib/libreoffice/share/autotext/et + /usr/lib/libreoffice/share/registry/*et.xcd + /usr/lib/libreoffice/program/resource/*et.res + /usr/lib/libreoffice/share/registry/res/*_et.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/et.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/et.zip + + + + + libreoffice-eu + locale:eu + libre-lang-eu + libreoffice-eu, Basque language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_eu + /usr/lib/libreoffice/share/autotext/eu + /usr/lib/libreoffice/share/registry/*eu.xcd + /usr/lib/libreoffice/program/resource/*eu.res + /usr/lib/libreoffice/share/registry/res/*_eu.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/eu.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/eu.zip + + + + + libreoffice-fa + locale:fa + libre-lang-fa + libreoffice-fa, Persian language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_fa + /usr/lib/libreoffice/share/autotext/fa + /usr/lib/libreoffice/share/registry/*fa.xcd + /usr/lib/libreoffice/program/resource/*fa.res + /usr/lib/libreoffice/share/registry/res/*_fa.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/fa.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/fa.zip + + + + + libreoffice-fi + locale:fi + libre-lang-fi + libreoffice-fi, Finnish language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_fi + /usr/lib/libreoffice/share/autotext/fi + /usr/lib/libreoffice/share/registry/*fi.xcd + /usr/lib/libreoffice/program/resource/*fi.res + /usr/lib/libreoffice/share/registry/res/*_fi.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/fi.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/fi.zip + + + + + libreoffice-fr + locale:fr + libre-lang-fr + libreoffice-fr, French language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_fr + /usr/lib/libreoffice/share/autotext/fr + /usr/lib/libreoffice/share/registry/*fr.xcd + /usr/lib/libreoffice/program/resource/*fr.res + /usr/lib/libreoffice/share/registry/res/*_fr.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/fr.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/fr.zip + + + + + libreoffice-ga + locale:ga + libre-lang-ga + libreoffice-ga, Irish language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_ga + /usr/lib/libreoffice/share/autotext/ga + /usr/lib/libreoffice/share/registry/*ga.xcd + /usr/lib/libreoffice/program/resource/*ga.res + /usr/lib/libreoffice/share/registry/res/*_ga.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ga.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ga.zip + + + + + libreoffice-gd + locale:gd + libre-lang-gd + libreoffice-gd, Gaelic (Scottish) language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_gd + /usr/lib/libreoffice/share/autotext/gd + /usr/lib/libreoffice/share/registry/*gd.xcd + /usr/lib/libreoffice/program/resource/*gd.res + /usr/lib/libreoffice/share/registry/res/*_gd.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/gd.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/gd.zip + + + + + libreoffice-gl + locale:gl + libre-lang-gl + libreoffice-gl, Galician language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_gl + /usr/lib/libreoffice/share/autotext/gl + /usr/lib/libreoffice/share/registry/*gl.xcd + /usr/lib/libreoffice/program/resource/*gl.res + /usr/lib/libreoffice/share/registry/res/*_gl.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/gl.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/gl.zip + + + + + libreoffice-gu + locale:gu + libre-lang-gu + libreoffice-gu, Gujarati language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_gu + /usr/lib/libreoffice/share/autotext/gu + /usr/lib/libreoffice/share/registry/*gu.xcd + /usr/lib/libreoffice/program/resource/*gu.res + /usr/lib/libreoffice/share/registry/res/*_gu.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/gu.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/gu.zip + + + + + libreoffice-he + locale:he + libre-lang-he + libreoffice-he, Hebrew language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_he + /usr/lib/libreoffice/share/autotext/he + /usr/lib/libreoffice/share/registry/*he.xcd + /usr/lib/libreoffice/program/resource/*he.res + /usr/lib/libreoffice/share/registry/res/*_he.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/he.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/he.zip + + + + + libreoffice-hi + locale:hi + libre-lang-hi + libreoffice-hi, Hindi language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_hi + /usr/lib/libreoffice/share/autotext/hi + /usr/lib/libreoffice/share/registry/*hi.xcd + /usr/lib/libreoffice/program/resource/*hi.res + /usr/lib/libreoffice/share/registry/res/*_hi.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/hi.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/hi.zip + + + + + libreoffice-hr + locale:hr + libre-lang-hr + libreoffice-hr, Croatian language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_hr + /usr/lib/libreoffice/share/autotext/hr + /usr/lib/libreoffice/share/registry/*hr.xcd + /usr/lib/libreoffice/program/resource/*hr.res + /usr/lib/libreoffice/share/registry/res/*_hr.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/hr.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/hr.zip + + + + + libreoffice-hu + locale:hu + libre-lang-hu + libreoffice-hu, Hungarian language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_hu + /usr/lib/libreoffice/share/autotext/hu + /usr/lib/libreoffice/share/registry/*hu.xcd + /usr/lib/libreoffice/program/resource/*hu.res + /usr/lib/libreoffice/share/registry/res/*_hu.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/hu.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/hu.zip + + + + + libreoffice-id + locale:id + libre-lang-id + libreoffice-id, Indonesian language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_id + /usr/lib/libreoffice/share/autotext/id + /usr/lib/libreoffice/program/resource/abpid.res + /usr/lib/libreoffice/program/resource/accid.res + /usr/lib/libreoffice/program/resource/analysisid.res + /usr/lib/libreoffice/program/resource/avmediaid.res + /usr/lib/libreoffice/program/resource/basctlid.res + /usr/lib/libreoffice/program/resource/bibid.res + /usr/lib/libreoffice/program/resource/chartcontrollerid.res + /usr/lib/libreoffice/program/resource/cnrid.res + /usr/lib/libreoffice/program/resource/cuiid.res + /usr/lib/libreoffice/program/resource/dateid.res + /usr/lib/libreoffice/program/resource/dbaid.res + /usr/lib/libreoffice/program/resource/dbmmid.res + /usr/lib/libreoffice/program/resource/dbpid.res + /usr/lib/libreoffice/program/resource/dbuid.res + /usr/lib/libreoffice/program/resource/dbwid.res + /usr/lib/libreoffice/program/resource/deploymentid.res + /usr/lib/libreoffice/program/resource/deploymentguiid.res + /usr/lib/libreoffice/program/resource/dktid.res + /usr/lib/libreoffice/program/resource/editengid.res + /usr/lib/libreoffice/program/resource/epsid.res + /usr/lib/libreoffice/program/resource/eurid.res + /usr/lib/libreoffice/program/resource/forid.res + /usr/lib/libreoffice/program/resource/foruiid.res + /usr/lib/libreoffice/program/resource/fps_officeid.res + /usr/lib/libreoffice/program/resource/frmid.res + /usr/lib/libreoffice/program/resource/fweid.res + /usr/lib/libreoffice/program/resource/galid.res + /usr/lib/libreoffice/program/resource/impid.res + /usr/lib/libreoffice/program/resource/ofaid.res + /usr/lib/libreoffice/program/resource/pcrid.res + /usr/lib/libreoffice/program/resource/pdffilterid.res + /usr/lib/libreoffice/program/resource/pricingid.res + /usr/lib/libreoffice/program/resource/rptid.res + /usr/lib/libreoffice/program/resource/rptuiid.res + /usr/lib/libreoffice/program/resource/sbid.res + /usr/lib/libreoffice/program/resource/scid.res + /usr/lib/libreoffice/program/resource/scnid.res + /usr/lib/libreoffice/program/resource/sdbclid.res + /usr/lib/libreoffice/program/resource/sdberrid.res + /usr/lib/libreoffice/program/resource/sdid.res + /usr/lib/libreoffice/program/resource/sdbtid.res + /usr/lib/libreoffice/program/resource/sfxid.res + /usr/lib/libreoffice/program/resource/smid.res + /usr/lib/libreoffice/program/resource/solverid.res + /usr/lib/libreoffice/program/resource/svlid.res + /usr/lib/libreoffice/program/resource/svtid.res + /usr/lib/libreoffice/program/resource/svxid.res + /usr/lib/libreoffice/program/resource/swid.res + /usr/lib/libreoffice/program/resource/t602filterid.res + /usr/lib/libreoffice/program/resource/tplid.res + /usr/lib/libreoffice/program/resource/updid.res + /usr/lib/libreoffice/program/resource/uuiid.res + /usr/lib/libreoffice/program/resource/vclid.res + /usr/lib/libreoffice/program/resource/wziid.res + /usr/lib/libreoffice/program/resource/xmlsecid.res + /usr/lib/libreoffice/program/resource/xsltdlgid.res + /usr/lib/libreoffice/share/registry/Langpack-id.xcd + /usr/lib/libreoffice/share/registry/res/Langpack-id.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/id.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/id.zip + + + + + libreoffice-is + locale:is + libre-lang-is + libreoffice-is, Icelandic language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_is + /usr/lib/libreoffice/share/autotext/is + /usr/lib/libreoffice/share/registry/*is.xcd + /usr/lib/libreoffice/program/resource/*is.res + /usr/lib/libreoffice/share/registry/res/*_is.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/is.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/is.zip + + + + + libreoffice-it + locale:it + libre-lang-it + libreoffice-it, Italian language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_it + /usr/lib/libreoffice/share/autotext/it + /usr/lib/libreoffice/share/registry/*it.xcd + /usr/lib/libreoffice/program/resource/*it.res + /usr/lib/libreoffice/share/registry/res/*_it.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/it.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/it.zip + + + + + libreoffice-ja + locale:ja + libre-lang-ja + libreoffice-ja, Japanese language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_ja + /usr/lib/libreoffice/share/autotext/ja + /usr/lib/libreoffice/share/registry/*ja.xcd + /usr/lib/libreoffice/program/resource/*ja.res + /usr/lib/libreoffice/share/registry/res/*_ja.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ja.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ja.zip + + + + + libreoffice-ka + locale:ka + libre-lang-ka + libreoffice-ka, Georgian language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_ka + /usr/lib/libreoffice/share/autotext/ka + /usr/lib/libreoffice/share/registry/*ka.xcd + /usr/lib/libreoffice/program/resource/*ka.res + /usr/lib/libreoffice/share/registry/res/*_ka.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ka.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ka.zip + + + + + libreoffice-kk + locale:kk + libre-lang-kk + libreoffice-kk, Kazakh language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_kk + /usr/lib/libreoffice/share/autotext/kk + /usr/lib/libreoffice/share/registry/*kk.xcd + /usr/lib/libreoffice/program/resource/*kk.res + /usr/lib/libreoffice/share/registry/res/*_kk.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/kk.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/kk.zip + + + + + libreoffice-km + locale:km + libre-lang-km + libreoffice-km, Khmer (Cambodia) language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_km + /usr/lib/libreoffice/share/autotext/km + /usr/lib/libreoffice/share/registry/*km.xcd + /usr/lib/libreoffice/program/resource/*km.res + /usr/lib/libreoffice/share/registry/res/*_km.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/km.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/km.zip + + + + + libreoffice-kmr-Latn + locale:kmr-Latn + libre-lang-kmr-Latn + libreoffice-kmr-Latn, Kurdish language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_kmr-Latn + /usr/lib/libreoffice/share/autotext/kmr-Latn + /usr/lib/libreoffice/share/registry/*kmr-Latn.xcd + /usr/lib/libreoffice/program/resource/*kmr-Latn.res + /usr/lib/libreoffice/share/registry/res/*_kmr-Latn.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/kmr-Latn.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/kmr-Latn.zip + + + + + libreoffice-kn + locale:kn + libre-lang-kn + libreoffice-kn, Kannada language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_kn + /usr/lib/libreoffice/share/autotext/kn + /usr/lib/libreoffice/share/registry/*kn.xcd + /usr/lib/libreoffice/program/resource/*kn.res + /usr/lib/libreoffice/share/registry/res/*_kn.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/kn.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/kn.zip + + + + + libreoffice-ko + locale:ko + libre-lang-ko + libreoffice-ko, Korean language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_ko + /usr/lib/libreoffice/share/autotext/ko + /usr/lib/libreoffice/share/registry/*ko.xcd + /usr/lib/libreoffice/program/resource/*ko.res + /usr/lib/libreoffice/share/registry/res/*_ko.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ko.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ko.zip + + + + + libreoffice-kok + locale:kok + libre-lang-kok + libreoffice-kok, Konkani language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_kok + /usr/lib/libreoffice/share/autotext/kok + /usr/lib/libreoffice/share/registry/*kok.xcd + /usr/lib/libreoffice/program/resource/*kok.res + /usr/lib/libreoffice/share/registry/res/*_kok.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/kok.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/kok.zip + + + + + libreoffice-ks + locale:ks + libre-lang-ks + libreoffice-ks, Kashmiri language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_ks + /usr/lib/libreoffice/share/autotext/ks + /usr/lib/libreoffice/share/registry/*ks.xcd + /usr/lib/libreoffice/program/resource/*ks.res + /usr/lib/libreoffice/share/registry/res/*_ks.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ks.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ks.zip + + + + + libreoffice-lb + locale:lb + libre-lang-lb + libreoffice-lb, Luxembourgish language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_lb + /usr/lib/libreoffice/share/autotext/lb + /usr/lib/libreoffice/share/registry/*lb.xcd + /usr/lib/libreoffice/program/resource/*lb.res + /usr/lib/libreoffice/share/registry/res/*_lb.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/lb.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/lb.zip + + + + + libreoffice-lo + locale:lo + libre-lang-lo + libreoffice-lo, Lao language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_lo + /usr/lib/libreoffice/share/autotext/lo + /usr/lib/libreoffice/share/registry/*lo.xcd + /usr/lib/libreoffice/program/resource/*lo.res + /usr/lib/libreoffice/share/registry/res/*_lo.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/lo.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/lo.zip + + + + + libreoffice-lt + locale:lt + libre-lang-lt + libreoffice-lt, Lithuanian language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_lt + /usr/lib/libreoffice/share/autotext/lt + /usr/lib/libreoffice/share/registry/*lt.xcd + /usr/lib/libreoffice/program/resource/*lt.res + /usr/lib/libreoffice/share/registry/res/*_lt.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/lt.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/lt.zip + + + + + libreoffice-lv + locale:lv + libre-lang-lv + libreoffice-lv, Latvian language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_lv + /usr/lib/libreoffice/share/autotext/lv + /usr/lib/libreoffice/share/registry/*lv.xcd + /usr/lib/libreoffice/program/resource/*lv.res + /usr/lib/libreoffice/share/registry/res/*_lv.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/lv.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/lv.zip + + + + + libreoffice-mai + locale:mai + libre-lang-mai + libreoffice-mai, Maithili language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_mai + /usr/lib/libreoffice/share/autotext/mai + /usr/lib/libreoffice/share/registry/*mai.xcd + /usr/lib/libreoffice/program/resource/*mai.res + /usr/lib/libreoffice/share/registry/res/*_mai.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/mai.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/mai.zip + + + + + libreoffice-mk + locale:mk + libre-lang-mk + libreoffice-mk, Macedonian language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_mk + /usr/lib/libreoffice/share/autotext/mk + /usr/lib/libreoffice/share/registry/*mk.xcd + /usr/lib/libreoffice/program/resource/*mk.res + /usr/lib/libreoffice/share/registry/res/*_mk.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/mk.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/mk.zip + + + + + libreoffice-ml + locale:ml + libre-lang-ml + libreoffice-ml, Malayalam language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_ml + /usr/lib/libreoffice/share/autotext/ml + /usr/lib/libreoffice/share/registry/*ml.xcd + /usr/lib/libreoffice/program/resource/*ml.res + /usr/lib/libreoffice/share/registry/res/*_ml.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ml.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ml.zip + + + + + libreoffice-mn + locale:mn + libre-lang-mn + libreoffice-mn, Mongolian language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_mn + /usr/lib/libreoffice/share/autotext/mn + /usr/lib/libreoffice/share/registry/*mn.xcd + /usr/lib/libreoffice/program/resource/*mn.res + /usr/lib/libreoffice/share/registry/res/*_mn.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/mn.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/mn.zip + + + + + libreoffice-mni + locale:mni + libre-lang-mni + libreoffice-mni, Manipuri language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_mni + /usr/lib/libreoffice/share/autotext/mni + /usr/lib/libreoffice/share/registry/*mni.xcd + /usr/lib/libreoffice/program/resource/*mni.res + /usr/lib/libreoffice/share/registry/res/*_mni.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/mni.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/mni.zip + + + + + libreoffice-mr + locale:mr + libre-lang-mr + libreoffice-mr, Marathi language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_mr + /usr/lib/libreoffice/share/autotext/mr + /usr/lib/libreoffice/share/registry/*mr.xcd + /usr/lib/libreoffice/program/resource/*mr.res + /usr/lib/libreoffice/share/registry/res/*_mr.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/mr.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/mr.zip + + + + + libreoffice-my + locale:my + libre-lang-my + libreoffice-my, Burmese language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_my + /usr/lib/libreoffice/share/autotext/my + /usr/lib/libreoffice/share/registry/*my.xcd + /usr/lib/libreoffice/program/resource/*my.res + /usr/lib/libreoffice/share/registry/res/*_my.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/my.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/my.zip + + + + + libreoffice-nb + locale:nb + libre-lang-nb + libreoffice-nb, Norwegian Bokmal language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_nb + /usr/lib/libreoffice/share/autotext/nb + /usr/lib/libreoffice/share/registry/*nb.xcd + /usr/lib/libreoffice/program/resource/*nb.res + /usr/lib/libreoffice/share/registry/res/*_nb.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/nb.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/nb.zip + + + + + libreoffice-ne + locale:ne + libre-lang-ne + libreoffice-ne, Nepali language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_ne + /usr/lib/libreoffice/share/autotext/ne + /usr/lib/libreoffice/share/registry/*ne.xcd + /usr/lib/libreoffice/program/resource/*ne.res + /usr/lib/libreoffice/share/registry/res/*_ne.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ne.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ne.zip + + + + + libreoffice-nl + locale:nl + libre-lang-nl + libreoffice-nl, Dutch language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_nl + /usr/lib/libreoffice/share/autotext/nl + /usr/lib/libreoffice/share/registry/*nl.xcd + /usr/lib/libreoffice/program/resource/*nl.res + /usr/lib/libreoffice/share/registry/res/*_nl.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/nl.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/nl.zip + + + + + libreoffice-nn + locale:nn + libre-lang-nn + libreoffice-nn, Norwegian Nynorsk language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_nn + /usr/lib/libreoffice/share/autotext/nn + /usr/lib/libreoffice/share/registry/*nn.xcd + /usr/lib/libreoffice/program/resource/*nn.res + /usr/lib/libreoffice/share/registry/res/*_nn.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/nn.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/nn.zip + + + + + libreoffice-nr + locale:nr + libre-lang-nr + libreoffice-nr, Ndebele (South) language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_nr + /usr/lib/libreoffice/share/autotext/nr + /usr/lib/libreoffice/share/registry/*nr.xcd + /usr/lib/libreoffice/program/resource/*nr.res + /usr/lib/libreoffice/share/registry/res/*_nr.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/nr.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/nr.zip + + + + + libreoffice-nso + locale:nso + libre-lang-nso + libreoffice-nso, Northern Sotho language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_nso + /usr/lib/libreoffice/share/autotext/nso + /usr/lib/libreoffice/share/registry/*nso.xcd + /usr/lib/libreoffice/program/resource/*nso.res + /usr/lib/libreoffice/share/registry/res/*_nso.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/nso.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/nso.zip + + + + + libreoffice-oc + locale:oc + libre-lang-oc + libreoffice-oc, Occitan language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_oc + /usr/lib/libreoffice/share/autotext/oc + /usr/lib/libreoffice/share/registry/*oc.xcd + /usr/lib/libreoffice/program/resource/*oc.res + /usr/lib/libreoffice/share/registry/res/*_oc.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/oc.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/oc.zip + + + + + libreoffice-om + locale:om + libre-lang-om + libreoffice-om, Oromo language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_om + /usr/lib/libreoffice/share/autotext/om + /usr/lib/libreoffice/share/registry/*om.xcd + /usr/lib/libreoffice/program/resource/*om.res + /usr/lib/libreoffice/share/registry/res/*_om.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/om.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/om.zip + + + + + libreoffice-or + locale:or + libre-lang-or + libreoffice-or, Oriya language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_or + /usr/lib/libreoffice/share/autotext/or + /usr/lib/libreoffice/share/registry/*or.xcd + /usr/lib/libreoffice/program/resource/*or.res + /usr/lib/libreoffice/share/registry/res/*_or.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/or.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/or.zip + + + + + libreoffice-pa-IN + locale:pa-IN + libre-lang-pa-IN + libreoffice-pa-IN, Punjabi (India) language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_pa-IN + /usr/lib/libreoffice/share/autotext/pa-IN + /usr/lib/libreoffice/share/registry/*pa-IN.xcd + /usr/lib/libreoffice/program/resource/*pa-IN.res + /usr/lib/libreoffice/share/registry/res/*_pa-IN.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/pa-IN.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/pa-IN.zip + + + + + libreoffice-pl + locale:pl + libre-lang-pl + libreoffice-pl, Polish language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_pl + /usr/lib/libreoffice/share/autotext/pl + /usr/lib/libreoffice/share/registry/*pl.xcd + /usr/lib/libreoffice/program/resource/*pl.res + /usr/lib/libreoffice/share/registry/res/*_pl.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/pl.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/pl.zip + + + + + libreoffice-pt + locale:pt + libre-lang-pt + libreoffice-pt, Portuguese language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_pt + /usr/lib/libreoffice/share/autotext/pt + /usr/lib/libreoffice/share/registry/*pt.xcd + /usr/lib/libreoffice/program/resource/*pt.res + /usr/lib/libreoffice/share/registry/res/*_pt.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/pt.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/pt.zip + + + + + libreoffice-pt-BR + locale:pt-BR + libre-lang-pt-BR + libreoffice-pt-BR, Portuguese (Brasil) language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_pt-BR + /usr/lib/libreoffice/share/autotext/pt-BR + /usr/lib/libreoffice/share/registry/*pt-BR.xcd + /usr/lib/libreoffice/program/resource/*pt-BR.res + /usr/lib/libreoffice/share/registry/res/*_pt-BR.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/pt-BR.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/pt-BR.zip + + + + + libreoffice-ro + locale:ro + libre-lang-ro + libreoffice-ro, Romanian language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_ro + /usr/lib/libreoffice/share/autotext/ro + /usr/lib/libreoffice/share/registry/*ro.xcd + /usr/lib/libreoffice/program/resource/*ro.res + /usr/lib/libreoffice/share/registry/res/*_ro.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ro.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ro.zip + + + + + libreoffice-ru + locale:ru + libre-lang-ru + libreoffice-ru, Russian language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_ru + /usr/lib/libreoffice/share/autotext/ru + /usr/lib/libreoffice/share/registry/*ru.xcd + /usr/lib/libreoffice/program/resource/*ru.res + /usr/lib/libreoffice/share/registry/res/*_ru.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ru.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ru.zip + + + + + libreoffice-rw + locale:rw + libre-lang-rw + libreoffice-rw, Kinyarwanda language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_rw + /usr/lib/libreoffice/share/autotext/rw + /usr/lib/libreoffice/share/registry/*rw.xcd + /usr/lib/libreoffice/program/resource/*rw.res + /usr/lib/libreoffice/share/registry/res/*_rw.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/rw.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/rw.zip + + + + + libreoffice-sa-IN + locale:sa-IN + libre-lang-sa-IN + libreoffice-sa-IN, Sanskrit (India) language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_sa-IN + /usr/lib/libreoffice/share/autotext/sa-IN + /usr/lib/libreoffice/share/registry/*sa-IN.xcd + /usr/lib/libreoffice/program/resource/*sa-IN.res + /usr/lib/libreoffice/share/registry/res/*_sa-IN.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/sa-IN.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/sa-IN.zip + + + + + libreoffice-sat + locale:sat + libre-lang-sat + libreoffice-sat, Santali language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_sat + /usr/lib/libreoffice/share/autotext/sat + /usr/lib/libreoffice/share/registry/*sat.xcd + /usr/lib/libreoffice/program/resource/*sat.res + /usr/lib/libreoffice/share/registry/res/*_sat.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/sat.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/sat.zip + + + + + libreoffice-sd + locale:sd + libre-lang-sd + libreoffice-sd, Sindhi language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_sd + /usr/lib/libreoffice/share/autotext/sd + /usr/lib/libreoffice/share/registry/*sd.xcd + /usr/lib/libreoffice/program/resource/*sd.res + /usr/lib/libreoffice/share/registry/res/*_sd.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/sd.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/sd.zip + + + + + libreoffice-si + locale:si + libre-lang-si + libreoffice-si, Singhalese language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_si + /usr/lib/libreoffice/share/autotext/si + /usr/lib/libreoffice/share/registry/*si.xcd + /usr/lib/libreoffice/program/resource/*si.res + /usr/lib/libreoffice/share/registry/res/*_si.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/si.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/si.zip + + + + + libreoffice-sid + locale:sid + libre-lang-sid + libreoffice-sid, Sidama language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_sid + /usr/lib/libreoffice/share/autotext/sid + /usr/lib/libreoffice/share/registry/*sid.xcd + /usr/lib/libreoffice/program/resource/abpsid.res + /usr/lib/libreoffice/program/resource/accsid.res + /usr/lib/libreoffice/program/resource/analysissid.res + /usr/lib/libreoffice/program/resource/avmediasid.res + /usr/lib/libreoffice/program/resource/basctlsid.res + /usr/lib/libreoffice/program/resource/bibsid.res + /usr/lib/libreoffice/program/resource/chartcontrollersid.res + /usr/lib/libreoffice/program/resource/cnrsid.res + /usr/lib/libreoffice/program/resource/cuisid.res + /usr/lib/libreoffice/program/resource/datesid.res + /usr/lib/libreoffice/program/resource/dbasid.res + /usr/lib/libreoffice/program/resource/dbmmsid.res + /usr/lib/libreoffice/program/resource/dbpsid.res + /usr/lib/libreoffice/program/resource/dbusid.res + /usr/lib/libreoffice/program/resource/dbwsid.res + /usr/lib/libreoffice/program/resource/deploymentsid.res + /usr/lib/libreoffice/program/resource/deploymentguisid.res + /usr/lib/libreoffice/program/resource/dktsid.res + /usr/lib/libreoffice/program/resource/editengsid.res + /usr/lib/libreoffice/program/resource/epssid.res + /usr/lib/libreoffice/program/resource/eursid.res + /usr/lib/libreoffice/program/resource/forsid.res + /usr/lib/libreoffice/program/resource/foruisid.res + /usr/lib/libreoffice/program/resource/fps_officesid.res + /usr/lib/libreoffice/program/resource/frmsid.res + /usr/lib/libreoffice/program/resource/fwesid.res + /usr/lib/libreoffice/program/resource/galsid.res + /usr/lib/libreoffice/program/resource/impsid.res + /usr/lib/libreoffice/program/resource/ofasid.res + /usr/lib/libreoffice/program/resource/pcrsid.res + /usr/lib/libreoffice/program/resource/pdffiltersid.res + /usr/lib/libreoffice/program/resource/pricingsid.res + /usr/lib/libreoffice/program/resource/rptsid.res + /usr/lib/libreoffice/program/resource/rptuisid.res + /usr/lib/libreoffice/program/resource/sbsid.res + /usr/lib/libreoffice/program/resource/scsid.res + /usr/lib/libreoffice/program/resource/scnsid.res + /usr/lib/libreoffice/program/resource/sdbclsid.res + /usr/lib/libreoffice/program/resource/sdberrsid.res + /usr/lib/libreoffice/program/resource/sdsid.res + /usr/lib/libreoffice/program/resource/sdbtsid.res + /usr/lib/libreoffice/program/resource/sfxsid.res + /usr/lib/libreoffice/program/resource/smsid.res + /usr/lib/libreoffice/program/resource/solversid.res + /usr/lib/libreoffice/program/resource/svlsid.res + /usr/lib/libreoffice/program/resource/svtsid.res + /usr/lib/libreoffice/program/resource/svxsid.res + /usr/lib/libreoffice/program/resource/swsid.res + /usr/lib/libreoffice/program/resource/t602filtersid.res + /usr/lib/libreoffice/program/resource/tplsid.res + /usr/lib/libreoffice/program/resource/updsid.res + /usr/lib/libreoffice/program/resource/uuisid.res + /usr/lib/libreoffice/program/resource/vclsid.res + /usr/lib/libreoffice/program/resource/wzisid.res + /usr/lib/libreoffice/program/resource/xmlsecsid.res + /usr/lib/libreoffice/program/resource/xsltdlgsid.res + /usr/lib/libreoffice/share/registry/res/Langpack-sid.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/sid.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/sid.zip + + + + + libreoffice-sk + locale:sk + libre-lang-sk + libreoffice-sk, Slovak language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_sk + /usr/lib/libreoffice/share/autotext/sk + /usr/lib/libreoffice/share/registry/*sk.xcd + /usr/lib/libreoffice/program/resource/*sk.res + /usr/lib/libreoffice/share/registry/res/*_sk.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/sk.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/sk.zip + + + + + libreoffice-sl + locale:sl + libre-lang-sl + libreoffice-sl, Slovenian language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_sl + /usr/lib/libreoffice/share/autotext/sl + /usr/lib/libreoffice/share/registry/*sl.xcd + /usr/lib/libreoffice/program/resource/*sl.res + /usr/lib/libreoffice/share/registry/res/*_sl.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/sl.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/sl.zip + + + + + libreoffice-sq + locale:sq + libre-lang-sq + libreoffice-sq, Albanien language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_sq + /usr/lib/libreoffice/share/autotext/sq + /usr/lib/libreoffice/share/registry/*sq.xcd + /usr/lib/libreoffice/program/resource/*sq.res + /usr/lib/libreoffice/share/registry/res/*_sq.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/sq.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/sq.zip + + + + + libreoffice-sr + locale:sr + libre-lang-sl + libreoffice-sr, Serbian language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_sr + /usr/lib/libreoffice/share/autotext/sr + /usr/lib/libreoffice/share/registry/*sr.xcd + /usr/lib/libreoffice/program/resource/*sr.res + /usr/lib/libreoffice/share/registry/res/Langpack_sr.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/sr.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/sr.zip + + + + + libreoffice-sr-Latn + locale:sr-Latn + libre-lang-sl + libreoffice-sr-Latn, Serbian (Latin) language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_sr-Latn + /usr/lib/libreoffice/share/autotext/sr-Latn + /usr/lib/libreoffice/share/registry/*sr-Latn.xcd + /usr/lib/libreoffice/program/resource/abpsr-Latn.res + /usr/lib/libreoffice/program/resource/accsr-Latn.res + /usr/lib/libreoffice/program/resource/analysissr-Latn.res + /usr/lib/libreoffice/program/resource/avmediasr-Latn.res + /usr/lib/libreoffice/program/resource/basctlsr-Latn.res + /usr/lib/libreoffice/program/resource/bibsr-Latn.res + /usr/lib/libreoffice/program/resource/chartcontrollersr-Latn.res + /usr/lib/libreoffice/program/resource/cnrsr-Latn.res + /usr/lib/libreoffice/program/resource/cuisr-Latn.res + /usr/lib/libreoffice/program/resource/datesr-Latn.res + /usr/lib/libreoffice/program/resource/dbasr-Latn.res + /usr/lib/libreoffice/program/resource/dbmmsr-Latn.res + /usr/lib/libreoffice/program/resource/dbpsr-Latn.res + /usr/lib/libreoffice/program/resource/dbusr-Latn.res + /usr/lib/libreoffice/program/resource/dbwsr-Latn.res + /usr/lib/libreoffice/program/resource/deploymentsr-Latn.res + /usr/lib/libreoffice/program/resource/deploymentguisr-Latn.res + /usr/lib/libreoffice/program/resource/dktsr-Latn.res + /usr/lib/libreoffice/program/resource/editengsr-Latn.res + /usr/lib/libreoffice/program/resource/epssr-Latn.res + /usr/lib/libreoffice/program/resource/eursr-Latn.res + /usr/lib/libreoffice/program/resource/forsr-Latn.res + /usr/lib/libreoffice/program/resource/foruisr-Latn.res + /usr/lib/libreoffice/program/resource/fps_officesr-Latn.res + /usr/lib/libreoffice/program/resource/frmsr-Latn.res + /usr/lib/libreoffice/program/resource/fwesr-Latn.res + /usr/lib/libreoffice/program/resource/galsr-Latn.res + /usr/lib/libreoffice/program/resource/impsr-Latn.res + /usr/lib/libreoffice/program/resource/ofasr-Latn.res + /usr/lib/libreoffice/program/resource/pcrsr-Latn.res + /usr/lib/libreoffice/program/resource/pdffiltersr-Latn.res + /usr/lib/libreoffice/program/resource/pricingsr-Latn.res + /usr/lib/libreoffice/program/resource/rptsr-Latn.res + /usr/lib/libreoffice/program/resource/rptuisr-Latn.res + /usr/lib/libreoffice/program/resource/sbsr-Latn.res + /usr/lib/libreoffice/program/resource/scsr-Latn.res + /usr/lib/libreoffice/program/resource/scnsr-Latn.res + /usr/lib/libreoffice/program/resource/sdbclsr-Latn.res + /usr/lib/libreoffice/program/resource/sdberrsr-Latn.res + /usr/lib/libreoffice/program/resource/sdsr-Latn.res + /usr/lib/libreoffice/program/resource/sdbtsr-Latn.res + /usr/lib/libreoffice/program/resource/sfxsr-Latn.res + /usr/lib/libreoffice/program/resource/smsr-Latn.res + /usr/lib/libreoffice/program/resource/solversr-Latn.res + /usr/lib/libreoffice/program/resource/svlsr-Latn.res + /usr/lib/libreoffice/program/resource/svtsr-Latn.res + /usr/lib/libreoffice/program/resource/svxsr-Latn.res + /usr/lib/libreoffice/program/resource/swsr-Latn.res + /usr/lib/libreoffice/program/resource/t602filtersr-Latn.res + /usr/lib/libreoffice/program/resource/tplsr-Latn.res + /usr/lib/libreoffice/program/resource/updsr-Latn.res + /usr/lib/libreoffice/program/resource/uuisr-Latn.res + /usr/lib/libreoffice/program/resource/vclsr-Latn.res + /usr/lib/libreoffice/program/resource/wzisr-Latn.res + /usr/lib/libreoffice/program/resource/xmlsecsr-Latn.res + /usr/lib/libreoffice/program/resource/xsltdlgsr-Latn.res + /usr/lib/libreoffice/share/registry/res/Langpack_sr-Latn.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/sr-Latn.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/sr-Latn.zip + + + + + libreoffice-ss + locale:ss + libre-lang-ss + libreoffice-ss, Swati language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_ss + /usr/lib/libreoffice/share/autotext/ss + /usr/lib/libreoffice/program/resource/*ss.res + /usr/lib/libreoffice/share/registry/res/*_ss.xcd + /usr/lib/libreoffice/share/registry/Langpack-ss.xcd + /usr/lib/libreoffice/share/registry/registry_ss.xcd + /usr/lib/libreoffice/share/registry/fcfg_langpack_ss.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ss.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ss.zip + + + + + libreoffice-st + locale:st + libre-lang-st + libreoffice-st, Southern Sotho language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_st + /usr/lib/libreoffice/share/autotext/st + /usr/lib/libreoffice/program/resource/abpsst.res + /usr/lib/libreoffice/program/resource/accsst.res + /usr/lib/libreoffice/share/registry/Langpack-st.xcd + /usr/lib/libreoffice/program/resource/analysissst.res + /usr/lib/libreoffice/program/resource/avmediasst.res + /usr/lib/libreoffice/program/resource/basctlsst.res + /usr/lib/libreoffice/program/resource/bibsst.res + /usr/lib/libreoffice/program/resource/chartcontrollersst.res + /usr/lib/libreoffice/program/resource/cnrsst.res + /usr/lib/libreoffice/program/resource/cuisst.res + /usr/lib/libreoffice/program/resource/datesst.res + /usr/lib/libreoffice/program/resource/dbasst.res + /usr/lib/libreoffice/program/resource/dbmmsst.res + /usr/lib/libreoffice/program/resource/dbpsst.res + /usr/lib/libreoffice/program/resource/dbusst.res + /usr/lib/libreoffice/program/resource/dbwsst.res + /usr/lib/libreoffice/program/resource/deploymentsst.res + /usr/lib/libreoffice/program/resource/deploymentguisst.res + /usr/lib/libreoffice/program/resource/dktsst.res + /usr/lib/libreoffice/program/resource/editengsst.res + /usr/lib/libreoffice/program/resource/epssst.res + /usr/lib/libreoffice/program/resource/eursst.res + /usr/lib/libreoffice/program/resource/forsst.res + /usr/lib/libreoffice/program/resource/foruisst.res + /usr/lib/libreoffice/program/resource/fps_officesst.res + /usr/lib/libreoffice/program/resource/frmsst.res + /usr/lib/libreoffice/program/resource/fwesst.res + /usr/lib/libreoffice/program/resource/galsst.res + /usr/lib/libreoffice/program/resource/impsst.res + /usr/lib/libreoffice/program/resource/ofasst.res + /usr/lib/libreoffice/program/resource/pcrsst.res + /usr/lib/libreoffice/program/resource/pdffiltersst.res + /usr/lib/libreoffice/program/resource/pricingsst.res + /usr/lib/libreoffice/program/resource/rptsst.res + /usr/lib/libreoffice/program/resource/rptuisst.res + /usr/lib/libreoffice/program/resource/sbsst.res + /usr/lib/libreoffice/program/resource/scsst.res + /usr/lib/libreoffice/program/resource/scnsst.res + /usr/lib/libreoffice/program/resource/sdbclsst.res + /usr/lib/libreoffice/program/resource/sdberrsst.res + /usr/lib/libreoffice/program/resource/sdsst.res + /usr/lib/libreoffice/program/resource/sdbtsst.res + /usr/lib/libreoffice/program/resource/sfxsst.res + /usr/lib/libreoffice/program/resource/smsst.res + /usr/lib/libreoffice/program/resource/solversst.res + /usr/lib/libreoffice/program/resource/svlsst.res + /usr/lib/libreoffice/program/resource/svtsst.res + /usr/lib/libreoffice/program/resource/svxsst.res + /usr/lib/libreoffice/program/resource/swsst.res + /usr/lib/libreoffice/program/resource/t602filtersst.res + /usr/lib/libreoffice/program/resource/tplsst.res + /usr/lib/libreoffice/program/resource/updsst.res + /usr/lib/libreoffice/program/resource/uuisst.res + /usr/lib/libreoffice/program/resource/vclsst.res + /usr/lib/libreoffice/program/resource/wzisst.res + /usr/lib/libreoffice/program/resource/xmlsecsst.res + /usr/lib/libreoffice/program/resource/xsltdlgsst.res + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/st.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/st.zip + + + + + libreoffice-sv + locale:sv + libre-lang-sv + libreoffice-sv, Swedish language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_sv + /usr/lib/libreoffice/share/autotext/sv + /usr/lib/libreoffice/share/registry/*sv.xcd + /usr/lib/libreoffice/program/resource/*sv.res + /usr/lib/libreoffice/share/registry/res/*_sv.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/sv.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/sv.zip + + + + + libreoffice-sw-TZ + locale:sw-TZ + libre-lang-sw-TZ + libreoffice-sw-TZ, Swahili (Tanzania) language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_sw-TZ + /usr/lib/libreoffice/share/autotext/sw-TZ + /usr/lib/libreoffice/share/registry/*sw-TZ.xcd + /usr/lib/libreoffice/program/resource/*sw-TZ.res + /usr/lib/libreoffice/share/registry/res/*_sw-TZ.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/sw-TZ.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/sw-TZ.zip + + + + + libreoffice-ta + locale:ta + libre-lang-ta + libreoffice-ta, Tamil language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_ta + /usr/lib/libreoffice/share/autotext/ta + /usr/lib/libreoffice/share/registry/*ta.xcd + /usr/lib/libreoffice/program/resource/*ta.res + /usr/lib/libreoffice/share/registry/res/*_ta.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ta.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ta.zip + + + + + libreoffice-te + locale:te + libre-lang-te + libreoffice-te, Telugu language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_te + /usr/lib/libreoffice/share/autotext/te + /usr/lib/libreoffice/share/registry/*te.xcd + /usr/lib/libreoffice/program/resource/*te.res + /usr/lib/libreoffice/share/registry/res/*_te.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/te.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/te.zip + + + + + libreoffice-tg + locale:tg + libre-lang-tg + libreoffice-tg, Tajik language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_tg + /usr/lib/libreoffice/share/autotgxt/tg + /usr/lib/libreoffice/share/registry/*tg.xcd + /usr/lib/libreoffice/program/resource/*tg.res + /usr/lib/libreoffice/share/registry/res/*_tg.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/tg.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/tg.zip + + + + + libreoffice-th + locale:th + libre-lang-th + libreoffice-th, Thai language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_th + /usr/lib/libreoffice/share/autothxt/th + /usr/lib/libreoffice/share/registry/*th.xcd + /usr/lib/libreoffice/program/resource/*th.res + /usr/lib/libreoffice/share/registry/res/*_th.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/th.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/th.zip + + + + + libreoffice-tn + locale:tn + libre-lang-tn + libreoffice-tn, Tswana language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_tn + /usr/lib/libreoffice/share/autothxt/tn + /usr/lib/libreoffice/share/registry/Langpack-tn.xcd + /usr/lib/libreoffice/program/resource/abptn.res + /usr/lib/libreoffice/program/resource/acctn.res + /usr/lib/libreoffice/program/resource/analysistn.res + /usr/lib/libreoffice/program/resource/avmediatn.res + /usr/lib/libreoffice/program/resource/basctltn.res + /usr/lib/libreoffice/program/resource/bibtn.res + /usr/lib/libreoffice/program/resource/chartcontrollertn.res + /usr/lib/libreoffice/program/resource/cnrtn.res + /usr/lib/libreoffice/program/resource/cuitn.res + /usr/lib/libreoffice/program/resource/datetn.res + /usr/lib/libreoffice/program/resource/dbatn.res + /usr/lib/libreoffice/program/resource/dbmmtn.res + /usr/lib/libreoffice/program/resource/dbptn.res + /usr/lib/libreoffice/program/resource/dbutn.res + /usr/lib/libreoffice/program/resource/dbwtn.res + /usr/lib/libreoffice/program/resource/deploymenttn.res + /usr/lib/libreoffice/program/resource/deploymentguitn.res + /usr/lib/libreoffice/program/resource/dkttn.res + /usr/lib/libreoffice/program/resource/editengtn.res + /usr/lib/libreoffice/program/resource/epstn.res + /usr/lib/libreoffice/program/resource/eurtn.res + /usr/lib/libreoffice/program/resource/fortn.res + /usr/lib/libreoffice/program/resource/foruitn.res + /usr/lib/libreoffice/program/resource/fps_officetn.res + /usr/lib/libreoffice/program/resource/frmtn.res + /usr/lib/libreoffice/program/resource/fwetn.res + /usr/lib/libreoffice/program/resource/galtn.res + /usr/lib/libreoffice/program/resource/imptn.res + /usr/lib/libreoffice/program/resource/ofatn.res + /usr/lib/libreoffice/program/resource/pcrtn.res + /usr/lib/libreoffice/program/resource/pdffiltertn.res + /usr/lib/libreoffice/program/resource/pricingtn.res + /usr/lib/libreoffice/program/resource/rpttn.res + /usr/lib/libreoffice/program/resource/rptuitn.res + /usr/lib/libreoffice/program/resource/sbtn.res + /usr/lib/libreoffice/program/resource/sctn.res + /usr/lib/libreoffice/program/resource/scntn.res + /usr/lib/libreoffice/program/resource/sdbcltn.res + /usr/lib/libreoffice/program/resource/sdberrtn.res + /usr/lib/libreoffice/program/resource/sdtn.res + /usr/lib/libreoffice/program/resource/sdbttn.res + /usr/lib/libreoffice/program/resource/sfxtn.res + /usr/lib/libreoffice/program/resource/smtn.res + /usr/lib/libreoffice/program/resource/solvertn.res + /usr/lib/libreoffice/program/resource/svltn.res + /usr/lib/libreoffice/program/resource/svttn.res + /usr/lib/libreoffice/program/resource/svxtn.res + /usr/lib/libreoffice/program/resource/swtn.res + /usr/lib/libreoffice/program/resource/t602filtertn.res + /usr/lib/libreoffice/program/resource/tpltn.res + /usr/lib/libreoffice/program/resource/updtn.res + /usr/lib/libreoffice/program/resource/uuitn.res + /usr/lib/libreoffice/program/resource/vcltn.res + /usr/lib/libreoffice/program/resource/wzitn.res + /usr/lib/libreoffice/program/resource/xmlsectn.res + /usr/lib/libreoffice/program/resource/xsltdlgtn.res + /usr/lib/libreoffice/share/registry/res/Langpack-tn.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/tn.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/tn.zip + + + + + libreoffice-tr + locale:tr + libre-lang-tr + libreoffice-tr, Turkish language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_tr + /usr/lib/libreoffice/share/autothxt/tr + /usr/lib/libreoffice/share/registry/*tr.xcd + /usr/lib/libreoffice/program/resource/*tr.res + /usr/lib/libreoffice/share/registry/res/*_tr.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/tr.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/tr.zip + + + + + libreoffice-ts + locale:ts + libre-lang-ts + libreoffice-ts, Tsonga language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_ts + /usr/lib/libreoffice/share/autothxt/ts + /usr/lib/libreoffice/share/registry/*ts.xcd + /usr/lib/libreoffice/program/resource/*ts.res + /usr/lib/libreoffice/share/registry/res/*_ts.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ts.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ts.zip + + + + + libreoffice-tt + locale:tt + libre-lang-tt + libreoffice-tt, Tatar language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_tt + /usr/lib/libreoffice/share/autothxt/tt + /usr/lib/libreoffice/share/registry/*tt.xcd + /usr/lib/libreoffice/program/resource/*tt.res + /usr/lib/libreoffice/share/registry/res/*_tt.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/tt.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/tt.zip + + + + + libreoffice-ug + locale:ug + libre-lang-ug + libreoffice-ug, Uighur language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_ug + /usr/lib/libreoffice/share/autothxt/ug + /usr/lib/libreoffice/share/registry/*ug.xcd + /usr/lib/libreoffice/program/resource/*ug.res + /usr/lib/libreoffice/share/registry/res/*_ug.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ug.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ug.zip + + + + + libreoffice-uk + locale:uk + libre-lang-uk + libreoffice-uk, Ukrainian language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_uk + /usr/lib/libreoffice/share/autothxt/uk + /usr/lib/libreoffice/share/registry/*uk.xcd + /usr/lib/libreoffice/program/resource/*uk.res + /usr/lib/libreoffice/share/registry/res/*_uk.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/uk.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/uk.zip + + + + + libreoffice-uz + locale:uz + libre-lang-uz + libreoffice-uz, Uzbek language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_uz + /usr/lib/libreoffice/share/autothxt/uz + /usr/lib/libreoffice/share/registry/*uz.xcd + /usr/lib/libreoffice/program/resource/*uz.res + /usr/lib/libreoffice/share/registry/res/*_uz.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/uz.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/uz.zip + + + + + libreoffice-ve + locale:ve + libre-lang-ve + libreoffice-ve, Venda language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_ve + /usr/lib/libreoffice/share/autothxt/ve + /usr/lib/libreoffice/share/registry/*ve.xcd + /usr/lib/libreoffice/program/resource/*ve.res + /usr/lib/libreoffice/share/registry/res/*_ve.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ve.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ve.zip + + + + + libreoffice-vi + locale:vi + libre-lang-vi + libreoffice-vi, Vietnamese language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_vi + /usr/lib/libreoffice/share/autothxt/vi + /usr/lib/libreoffice/share/registry/*vi.xcd + /usr/lib/libreoffice/program/resource/*vi.res + /usr/lib/libreoffice/share/registry/res/*_vi.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/vi.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/vi.zip + + + + + libreoffice-xh + locale:xh + libre-lang-xh + libreoffice-xh, Xhosa language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_xh + /usr/lib/libreoffice/share/autothxt/xh + /usr/lib/libreoffice/share/registry/*xh.xcd + /usr/lib/libreoffice/program/resource/*xh.res + /usr/lib/libreoffice/share/registry/res/*_xh.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/xh.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/xh.zip + + + + + libreoffice-zh-CN + locale:zh-CN + libre-lang-zh-CN + libreoffice-zh-CN, Chinese (simplified) language pack for LibreOffice. + + /usr/lib/libreoffice/readmes/*_zh-CN + /usr/lib/libreoffice/share/autothxt/zh-CN + /usr/lib/libreoffice/share/registry/*zh-CN.xcd + /usr/lib/libreoffice/program/resource/*zh-CN.res + /usr/lib/libreoffice/share/registry/res/*_zh-CN.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/zh-CN.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/zh-CN.zip + + + + + libreoffice-zh-TW + locale:zh-TW + libre-lang-zh-TW + libreoffice-zh-TW, Chinese (traditional) language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_zh-TW + /usr/lib/libreoffice/share/autothxt/zh-TW + /usr/lib/libreoffice/share/registry/*zh-TW.xcd + /usr/lib/libreoffice/program/resource/*zh-TW.res + /usr/lib/libreoffice/share/registry/res/*_zh-TW.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/zh-TW.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/zh-TW.zip + + + + + libreoffice-zu + locale:zu + libre-lang-zu + libreoffice-zu, Zulu language pack for LibreOffice. + + libreoffice-writer + + + /usr/lib/libreoffice/readmes/*_zu + /usr/lib/libreoffice/share/autothxt/zu + /usr/lib/libreoffice/share/registry/*zu.xcd + /usr/lib/libreoffice/program/resource/*zu.res + /usr/lib/libreoffice/share/registry/res/*_zu.xcd + /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/zu.zip + /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/zu.zip + + + + + + 2015-08-15 + 5.0.0.5 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-03-07 + 4.3.5.1 + Rebuild for poppler. + PisiLinux Community + admins@pisilinux.org + + + 2014-12-03 + 4.3.5.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-09-25 + 4.3.2.2 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-07-06 + 4.2.5.2 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-06-06 + 4.2.4.2 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-04-21 + 4.2.4.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-29 + 4.2.3.2 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-02-16 + 4.2.1.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-02-16 + 4.1.5.3 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-01-17 + 4.1.4.2 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-11-11 + 4.1.3.2 + Fix build flags, strip libraries + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-06 + 4.1.3.2 + Version bump, fix giant libreoffice packages. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-12 + 4.1.3.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-10-10 + 4.1.2.2 + Rebuild for new poppler. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-21 + 4.1.2.2 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-08-24 + 4.1.1.2 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-06-29 + 4.1.0.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-05-10 + 4.0.3.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-13 + 4.0.3.1 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2013-04-13 + 4.0.2.2 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2013-03-15 + 4.0.1.2 + V.Bump + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-28 + 4.0.0.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + \ No newline at end of file diff --git a/office/libreoffice/libreoffice/translations.xml b/office/libreoffice/libreoffice/translations.xml new file mode 100644 index 0000000000..73b8346eec --- /dev/null +++ b/office/libreoffice/libreoffice/translations.xml @@ -0,0 +1,73 @@ + + + + libreoffice + LibreOffice Türkçe ofis yazılımı + LibreOffice, pek çok farklı işletim sisteminde çalışabilen açık kaynak kodlu bir yazılım projesidir. LibreOffice, kelime işlemci, hesap tablosu, sunum ve çizim programları, formül düzenleyici gibi temel masaüstü ofis uygulamalarını içerir ve alışılmış ofis programlarının özelliklerini sunar. Microsoft Office dosyaları da dahil olmak üzere bilinen ofis dosya formatlarıyla uyumlu çalışır. + + + + libreoffice-common + common files for LibreOffice - a productivity suite that is compatible with other major office suites + + + + libreoffice-base + Database front-end for LibreOffice + + + + libreoffice-calc + Spreadsheet application for LibreOffice. + + + + libreoffice-draw + Drawing Application for LibreOffice. + + + + libreoffice-gnome + Plug-in for LibreOffice that enables integration into the Gnome and other gtk desktop environment. + + + + libreoffice-impress + Presentation Application for LibreOffice. + + + + libreoffice-kde + Plug-in for LibreOffice that enables integration into the KDE4 desktop environment. + + + + libreoffice-math + Equation Editor Application for LibreOffice. + + + + libreoffice-postgresql + A PostgreSQL connector for the database front-end for LibreOffice + + + + libreoffice-rhino + JavaScript support for LibreOffice + + + + libreoffice-sdk + Software Development Kit for LibreOffice. + + + + libreoffice-sdk-doc + Software Development Kit documentation for LibreOffice + + + + libreoffice-writer + Word Processor Application for LibreOffice. + + \ No newline at end of file