From 6f98fbfb0cd4f2c9be5149266732171fbb8342bd Mon Sep 17 00:00:00 2001 From: François Andriot Date: Sat, 15 Nov 2014 12:03:46 +0100 Subject: RPM packaging: update libkdcraw --- redhat/libraries/libkdcraw/libkdcraw-14.0.0.spec | 202 +++++++++++++++-------- 1 file changed, 132 insertions(+), 70 deletions(-) diff --git a/redhat/libraries/libkdcraw/libkdcraw-14.0.0.spec b/redhat/libraries/libkdcraw/libkdcraw-14.0.0.spec index 179ff4e53..732a3cb9e 100644 --- a/redhat/libraries/libkdcraw/libkdcraw-14.0.0.spec +++ b/redhat/libraries/libkdcraw/libkdcraw-14.0.0.spec @@ -1,61 +1,78 @@ -# Default version for this component -%define tde_pkg libkdcraw +# +# spec file for package libkdcraw (version R14.0.0) +# +# Copyright (c) 2014 Trinity Desktop Environment +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. +# +# Please submit bugfixes or comments via http:/www.trinitydesktop.org/ +# + +# TDE variables +%define tde_epoch 2 %define tde_version 14.0.0 - -# If TDE is built in a specific prefix (e.g. /opt/trinity), the release will be suffixed with ".opt". -%if "%{?tde_prefix}" != "/usr" -%define _variant .opt -%endif - -# TDE specific building variables -%define tde_bindir %{tde_prefix}/bin +%define tde_pkg libkdcraw +%define tde_prefix /opt/trinity %define tde_datadir %{tde_prefix}/share -%define tde_docdir %{tde_datadir}/doc %define tde_includedir %{tde_prefix}/include -%define tde_libdir %{tde_prefix}/%{_lib} -%define tde_mandir %{tde_datadir}/man - -%define tde_tdeappdir %{tde_datadir}/applications/tde -%define tde_tdedocdir %{tde_docdir}/tde %define tde_tdeincludedir %{tde_includedir}/tde -%define tde_tdelibdir %{tde_libdir}/trinity +%define tde_libdir %{tde_prefix}/%{_lib} -%define _docdir %{tde_docdir} +%if 0%{?mdkversion} || 0%{?mgaversion} || 0%{?pclinuxos} +%define libkdcraw %{_lib}kdcraw +%else +%define libkdcraw libkdcraw +%endif Name: trinity-%{tde_pkg} -Summary: Raw picture decoding C++ library (runtime) [Trinity] - -Epoch: 2 +Epoch: %{tde_epoch} Version: 0.1.9 Release: %{?!preversion:1}%{?preversion:0_%{preversion}}%{?dist}%{?_variant} +Summary: Raw picture decoding C++ library (runtime) [Trinity] +Group: System/Libraries +URL: http://www.trinitydesktop.org/ +%if 0%{?suse_version} +License: GPL-2.0+ +%else License: GPLv2+ -Group: Environment/Libraries +%endif -Vendor: Trinity Project -Packager: Francois Andriot -URL: http://www.trinitydesktop.org/ +#Vendor: Trinity Desktop +#Packager: Francois Andriot -Prefix: %{_prefix} +Prefix: /usr BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source0: %{name}-%{tde_version}%{?preversion:~%{preversion}}.tar.gz -BuildRequires: trinity-tqtinterface-devel >= %{tde_version} BuildRequires: trinity-tdelibs-devel >= %{tde_version} + +BuildRequires: automake autoconf libtool +BuildRequires: gcc-c++ BuildRequires: desktop-file-utils +BuildRequires: pkgconfig +BuildRequires: gettext + +# LCMS support %if 0%{?suse_version} BuildRequires: liblcms-devel %else BuildRequires: lcms-devel %endif + +# JPEG support BuildRequires: libjpeg-devel -BuildRequires: pkgconfig -BuildRequires: gettext # AUTOTOOLS -BuildRequires: automake autoconf libtool %if 0%{?mgaversion} || 0%{?mdkversion} BuildRequires: %{_lib}ltdl-devel %endif @@ -69,22 +86,101 @@ picture files. This library is used by kipi-plugins, digiKam and others kipi host programs. libkdcraw contains the library of libkdcraw. -%package devel -Group: Development/Libraries +########## + +%package -n trinity-%{libkdcraw}4 +Summary: Raw picture decoding C++ library (runtime) [Trinity] +Group: System/Libraries +Requires: trinity-libkdcraw-common = %{?epoch:%{epoch}:}%{version}-%{release} + +%if "%{libkdcraw}" != "libkdcraw" +Obsoletes: trinity-libkdcraw < %{?epoch:%{epoch}:}%{version}-%{release} +Provides: trinity-libkdcraw = %{?epoch:%{epoch}:}%{version}-%{release} +%endif + +%description -n trinity-%{libkdcraw}4 +C++ interface around dcraw binary program used to decode RAW +picture files. +This library is used by kipi-plugins, digiKam and others kipi host programs. +libkdcraw contains the library of libkdcraw. + +%files -n trinity-%{libkdcraw}4 +%defattr(-,root,root,-) +%{tde_libdir}/libkdcraw.so.4 +%{tde_libdir}/libkdcraw.so.4.0.3 + +%post -n trinity-%{libkdcraw}4 +/sbin/ldconfig || : + +%postun -n trinity-%{libkdcraw}4 +/sbin/ldconfig || : + +########## + +%package -n trinity-libkdcraw-common +Summary: Raw picture decoding C++ library (runtime) [Trinity] +Group: System/Libraries + +%description -n trinity-libkdcraw-common +C++ interface around dcraw binary program used to decode RAW +picture files. +This library is used by kipi-plugins, digiKam and others kipi host programs. +libkdcraw contains the library of libkdcraw. + +%files -n trinity-libkdcraw-common -f %{tde_pkg}.lang +%defattr(-,root,root,-) +%{tde_datadir}/icons/hicolor/*/apps/kdcraw.png + +%post -n trinity-libkdcraw-common +for f in hicolor ; do + touch --no-create %{tde_datadir}/icons/${f} 2> /dev/null ||: + gtk-update-icon-cache -q %{tde_datadir}/icons/${f} 2> /dev/null ||: +done + +%postun -n trinity-libkdcraw-common +for f in hicolor ; do + touch --no-create %{tde_datadir}/icons/${f} 2> /dev/null ||: + gtk-update-icon-cache -q %{tde_datadir}/icons/${f} 2> /dev/null ||: +done + +########## + +%package -n trinity-%{libkdcraw}-devel Summary: RAW picture decoding C++ library (development) [Trinity] -Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release} +Group: Development/Libraries/Other +Requires: trinity-%{libkdcraw}4 = %{?epoch:%{epoch}:}%{version}-%{release} -%description devel +%if "%{libkdcraw}" != "libkdcraw" +Obsoletes: trinity-libkdcraw-devel < %{?epoch:%{epoch}:}%{version}-%{release} +Provides: trinity-libkdcraw-devel = %{?epoch:%{epoch}:}%{version}-%{release} +%endif + +%description -n trinity-%{libkdcraw}-devel Libkdcraw is a C++ interface around dcraw binary program used to decode Raw picture files. libkdcraw-devel contains development files and documentation. The library documentation is available on kdcraw.h header file. +%files -n trinity-%{libkdcraw}-devel +%defattr(-,root,root,-) +%{tde_libdir}/libkdcraw.so +%{tde_libdir}/libkdcraw.la +%{tde_tdeincludedir}/libkdcraw/ +%{tde_libdir}/pkgconfig/libkdcraw.pc -%if 0%{?suse_version} || 0%{?pclinuxos} +%post -n trinity-%{libkdcraw}-devel +/sbin/ldconfig || : + +%postun -n trinity-%{libkdcraw}-devel +/sbin/ldconfig || : + +########## + +%if 0%{?pclinuxos} || 0%{?suse_version} && 0%{?opensuse_bs} == 0 %debug_package %endif +########## %prep %setup -q -n %{name}-%{tde_version}%{?preversion:~%{preversion}} @@ -134,40 +230,6 @@ export PATH="%{tde_bindir}:${PATH}" %__rm -rf %{buildroot} -%post -for f in hicolor ; do - touch --no-create %{tde_datadir}/icons/${f} 2> /dev/null ||: - gtk-update-icon-cache -q %{tde_datadir}/icons/${f} 2> /dev/null ||: -done -/sbin/ldconfig || : - -%postun -for f in hicolor ; do - touch --no-create %{tde_datadir}/icons/${f} 2> /dev/null ||: - gtk-update-icon-cache -q %{tde_datadir}/icons/${f} 2> /dev/null ||: -done -/sbin/ldconfig || : - -%post devel -/sbin/ldconfig || : - -%postun devel -/sbin/ldconfig || : - - -%files -f %{tde_pkg}.lang -%defattr(-,root,root,-) -%{tde_libdir}/libkdcraw.so.4 -%{tde_libdir}/libkdcraw.so.4.0.3 -%{tde_datadir}/icons/hicolor/*/apps/kdcraw.png - -%files devel -%defattr(-,root,root,-) -%{tde_libdir}/libkdcraw.so -%{tde_libdir}/libkdcraw.la -%{tde_tdeincludedir}/libkdcraw/ -%{tde_libdir}/pkgconfig/libkdcraw.pc - %Changelog -* Fri Jul 05 2013 Francois Andriot - 1:0.1.9-2 +* Fri Jul 05 2013 Francois Andriot - 2:0.1.9-1 - Initial release for TDE R14.0.0 -- cgit v1.2.3 From 0d0117ad89de4b30ac09b25637d955e844bd09ee Mon Sep 17 00:00:00 2001 From: François Andriot Date: Sat, 15 Nov 2014 12:20:31 +0100 Subject: RPM packaging: update filesystem --- .../trinity-filesystem-14.0.0.spec | 41 +++++++++++++++++++--- 1 file changed, 37 insertions(+), 4 deletions(-) diff --git a/redhat/extras/trinity-filesystem/trinity-filesystem-14.0.0.spec b/redhat/extras/trinity-filesystem/trinity-filesystem-14.0.0.spec index 4870f26c7..f94e17147 100644 --- a/redhat/extras/trinity-filesystem/trinity-filesystem-14.0.0.spec +++ b/redhat/extras/trinity-filesystem/trinity-filesystem-14.0.0.spec @@ -104,9 +104,8 @@ This package installs the Trinity directory structure. %dir %{tde_datadir}/icons/locolor/* %dir %{tde_datadir}/icons/locolor/*/* %dir %{tde_datadir}/locale -%dir %{tde_datadir}/locale/en_US -%dir %{tde_datadir}/locale/l10n -%dir %{tde_datadir}/locale/l10n/* +%dir %{tde_datadir}/locale/* +%dir %{tde_datadir}/locale/*/* %dir %{tde_datadir}/man %dir %{tde_datadir}/man/* %dir %{tde_datadir}/mimelnk @@ -470,10 +469,44 @@ done %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/l10n/zm %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/l10n/zw +# Directories for LC_MESSAGES (from *-i18n packages) +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ar/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/bg/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/br/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/cs/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/cy/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/da/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/de/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/el/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/en/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/en_GB/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/en_US/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/es/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/et/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/fr/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ga/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/gl/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/hu/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/it/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ja/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ka/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/lt/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/nl/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/pl/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/pt/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/pt_BR/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ru/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/rw/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sk/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sr/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sr@Latn/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sv/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/tr/ + %post %if 0%{?suse_version} # Add setuid files in '/etc/permissions.local' -for b in kcheckpass kgrantpty kpac_dhcp_helper start_tdeinit tdmtsak tdekbdledsync ; do +for b in kcheckpass kgrantpty kpac_dhcp_helper kppp start_tdeinit tdmtsak tdekbdledsync ; do if ! grep -q "^%{tde_bindir}/${b}" "/etc/permissions.local"; then echo "%{tde_bindir}/${b} root:root 4711" >>/etc/permissions.local fi -- cgit v1.2.3 From b64d5d9ed67f80b3f584faeddb31d1fef859987e Mon Sep 17 00:00:00 2001 From: François Andriot Date: Sat, 15 Nov 2014 12:23:16 +0100 Subject: RPM packaging: update filesystem --- .../trinity-filesystem-14.0.0.spec | 64 +++++++++++----------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/redhat/extras/trinity-filesystem/trinity-filesystem-14.0.0.spec b/redhat/extras/trinity-filesystem/trinity-filesystem-14.0.0.spec index f94e17147..573eb594a 100644 --- a/redhat/extras/trinity-filesystem/trinity-filesystem-14.0.0.spec +++ b/redhat/extras/trinity-filesystem/trinity-filesystem-14.0.0.spec @@ -470,38 +470,38 @@ done %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/l10n/zw # Directories for LC_MESSAGES (from *-i18n packages) -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ar/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/bg/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/br/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/cs/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/cy/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/da/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/de/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/el/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/en/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/en_GB/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/en_US/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/es/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/et/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/fr/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ga/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/gl/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/hu/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/it/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ja/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ka/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/lt/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/nl/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/pl/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/pt/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/pt_BR/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ru/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/rw/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sk/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sr/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sr@Latn/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sv/ -%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/tr/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ar/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/bg/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/br/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/cs/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/cy/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/da/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/de/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/el/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/en/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/en_GB/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/en_US/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/es/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/et/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/fr/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ga/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/gl/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/hu/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/it/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ja/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ka/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/lt/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/nl/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/pl/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/pt/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/pt_BR/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ru/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/rw/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sk/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sr/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sr@Latn/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sv/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/tr/LC_MESSAGES/ %post %if 0%{?suse_version} -- cgit v1.2.3 From 479911863be039550e3b4720a2a4c34f553b76c6 Mon Sep 17 00:00:00 2001 From: François Andriot Date: Sat, 15 Nov 2014 13:00:51 +0100 Subject: RPM packaging: update libkdcraw --- redhat/libraries/libkdcraw/libkdcraw-14.0.0.spec | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/redhat/libraries/libkdcraw/libkdcraw-14.0.0.spec b/redhat/libraries/libkdcraw/libkdcraw-14.0.0.spec index 732a3cb9e..70f8c67f7 100644 --- a/redhat/libraries/libkdcraw/libkdcraw-14.0.0.spec +++ b/redhat/libraries/libkdcraw/libkdcraw-14.0.0.spec @@ -54,7 +54,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Source0: %{name}-%{tde_version}%{?preversion:~%{preversion}}.tar.gz -BuildRequires: trinity-tdelibs-devel >= %{tde_version} +BuildRequires: trinity-tdelibs-devel >= %{tde_version} +BuildRequires: trinity-filesystem >= %{tde_version} BuildRequires: automake autoconf libtool BuildRequires: gcc-c++ @@ -120,6 +121,7 @@ libkdcraw contains the library of libkdcraw. %package -n trinity-libkdcraw-common Summary: Raw picture decoding C++ library (runtime) [Trinity] Group: System/Libraries +Requires: trinity-filesystem >= %{tde_version} %description -n trinity-libkdcraw-common C++ interface around dcraw binary program used to decode RAW -- cgit v1.2.3 From ab50bfe2766faac4cca48e77f83fb29d3dc636d1 Mon Sep 17 00:00:00 2001 From: François Andriot Date: Sat, 15 Nov 2014 16:31:55 +0100 Subject: RPM packaging: update filesystem --- redhat/extras/trinity-filesystem/trinity-filesystem-14.0.0.spec | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/redhat/extras/trinity-filesystem/trinity-filesystem-14.0.0.spec b/redhat/extras/trinity-filesystem/trinity-filesystem-14.0.0.spec index 573eb594a..ca79817d1 100644 --- a/redhat/extras/trinity-filesystem/trinity-filesystem-14.0.0.spec +++ b/redhat/extras/trinity-filesystem/trinity-filesystem-14.0.0.spec @@ -473,6 +473,7 @@ done %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ar/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/bg/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/br/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ca/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/cs/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/cy/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/da/LC_MESSAGES/ @@ -487,11 +488,15 @@ done %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ga/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/gl/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/hu/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/is/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/it/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ja/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ka/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/lt/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/ms/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/nds/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/nl/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/pa/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/pl/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/pt/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/pt_BR/LC_MESSAGES/ @@ -500,8 +505,10 @@ done %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sk/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sr/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sr@Latn/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/th/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/sv/LC_MESSAGES/ %__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/tr/LC_MESSAGES/ +%__install -d -m 755 %{?buildroot}%{tde_datadir}/locale/uk/LC_MESSAGES/ %post %if 0%{?suse_version} -- cgit v1.2.3