diff mbox

qt: install translations

Message ID 1379013156-9918-1-git-send-email-vivien.didelot@savoirfairelinux.com
State Accepted
Headers show

Commit Message

Vivien Didelot Sept. 12, 2013, 7:12 p.m. UTC
The Qt translation files are currently created and moved under
$(STAGING_DIR)/usr/translations but not installed on the target.

This patch defines the translations directory to
/usr/share/qt/translations and defines a QT_INSTALL_TARGET_TRANSLATIONS
macro to deploy them from the staging directory to the target directory.

Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
---
 package/qt/qt.mk | 9 +++++++++
 1 file changed, 9 insertions(+)

Comments

Thomas Petazzoni Sept. 12, 2013, 7:44 p.m. UTC | #1
Dear Vivien Didelot,

On Thu, 12 Sep 2013 15:12:36 -0400, Vivien Didelot wrote:
> The Qt translation files are currently created and moved under
> $(STAGING_DIR)/usr/translations but not installed on the target.
> 
> This patch defines the translations directory to
> /usr/share/qt/translations and defines a QT_INSTALL_TARGET_TRANSLATIONS
> macro to deploy them from the staging directory to the target directory.
> 
> Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>

This looks good, but I'm wondering: the translations that are installed
in /usr/share/qt/translations are the translations of the Qt library
itself, or the translations of the applications using Qt as their
library?

Thanks,

Thomas
Vivien Didelot Sept. 17, 2013, 8:29 p.m. UTC | #2
Hi Thomas,

> On Thu, 12 Sep 2013 15:12:36 -0400, Vivien Didelot wrote:
> > The Qt translation files are currently created and moved under
> > $(STAGING_DIR)/usr/translations but not installed on the target.
> > 
> > This patch defines the translations directory to
> > /usr/share/qt/translations and defines a
> > QT_INSTALL_TARGET_TRANSLATIONS
> > macro to deploy them from the staging directory to the target
> > directory.
> > 
> > Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
> 
> This looks good, but I'm wondering: the translations that are
> installed
> in /usr/share/qt/translations are the translations of the Qt library
> itself, or the translations of the applications using Qt as their
> library?

These are the translations of Qt itself.

Thanks,
Vivien
Thomas Petazzoni Sept. 18, 2013, 4:18 a.m. UTC | #3
Dear Vivien Didelot,

On Thu, 12 Sep 2013 15:12:36 -0400, Vivien Didelot wrote:
> The Qt translation files are currently created and moved under
> $(STAGING_DIR)/usr/translations but not installed on the target.
> 
> This patch defines the translations directory to
> /usr/share/qt/translations and defines a QT_INSTALL_TARGET_TRANSLATIONS
> macro to deploy them from the staging directory to the target directory.
> 
> Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>

Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Peter Korsgaard Sept. 19, 2013, 7:43 p.m. UTC | #4
>>>>> "Vivien" == Vivien Didelot <vivien.didelot@savoirfairelinux.com> writes:

 Vivien> The Qt translation files are currently created and moved under
 Vivien> $(STAGING_DIR)/usr/translations but not installed on the target.

 Vivien> This patch defines the translations directory to
 Vivien> /usr/share/qt/translations and defines a
 Vivien> QT_INSTALL_TARGET_TRANSLATIONS macro to deploy them from the
 Vivien> staging directory to the target directory.

 Vivien> Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>

Committed, thanks.
diff mbox

Patch

diff --git a/package/qt/qt.mk b/package/qt/qt.mk
index daade3c..48d39fc 100644
--- a/package/qt/qt.mk
+++ b/package/qt/qt.mk
@@ -516,6 +516,7 @@  define QT_CONFIGURE_CMDS
 		-prefix /usr \
 		-plugindir /usr/lib/qt/plugins \
 		-importdir /usr/lib/qt/imports \
+		-translationdir /usr/share/qt/translations \
 		-hostprefix $(STAGING_DIR) \
 		-fast \
 		-no-rpath \
@@ -666,6 +667,13 @@  define QT_INSTALL_TARGET_POWERVR
 endef
 endif
 
+define QT_INSTALL_TARGET_TRANSLATIONS
+	if [ -d $(STAGING_DIR)/usr/share/qt/translations/ ] ; then \
+		mkdir -p $(TARGET_DIR)/usr/share/qt/translations ; \
+		cp -dpfr $(STAGING_DIR)/usr/share/qt/translations/* $(TARGET_DIR)/usr/share/qt/translations ; \
+	fi
+endef
+
 define QT_INSTALL_TARGET_CMDS
 	$(QT_INSTALL_TARGET_LIBS)
 	$(QT_INSTALL_TARGET_PLUGINS)
@@ -673,6 +681,7 @@  define QT_INSTALL_TARGET_CMDS
 	$(QT_INSTALL_TARGET_FONTS)
 	$(QT_INSTALL_TARGET_FONTS_TTF)
 	$(QT_INSTALL_TARGET_POWERVR)
+	$(QT_INSTALL_TARGET_TRANSLATIONS)
 endef
 
 define QT_CLEAN_CMDS