changeset 16244:b74c4e967f76

gui: remove binary language files from repo and generate them during build * configure.ac: check for lrelease * libgui/Makefile.am: new rule for generating qm-files from ts-files * libgui/languages/*.qm: removed binary language files
author Torsten <ttl@justmail.de>
date Sun, 10 Mar 2013 20:31:16 +0100
parents 428da5debfe4
children b1b01c69967e
files configure.ac libgui/Makefile.am libgui/languages/be_BY.qm libgui/languages/de_DE.qm libgui/languages/en_US.qm libgui/languages/es_ES.qm libgui/languages/nl_NL.qm libgui/languages/pt_BR.qm libgui/languages/ru_RU.qm libgui/languages/uk_UA.qm
diffstat 10 files changed, 6 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/configure.ac	Sun Mar 10 09:11:44 2013 -0700
+++ b/configure.ac	Sun Mar 10 20:31:16 2013 +0100
@@ -2587,11 +2587,12 @@
     AC_CHECK_PROGS(MOC, [moc-qt5 moc-qt4 moc])
     AC_CHECK_PROGS(UIC, [uic-qt5 uic-qt4 uic])
     AC_CHECK_PROGS(RCC, [rcc])
-    if test -n "$MOC" && test -n "$UIC" && test -n "$RCC"; then
+    AC_CHECK_PROGS(LRELEASE, [lrelease])
+    if test -n "$MOC" && test -n "$UIC" && test -n "$RCC" && test -n "$LRELEASE"; then
       AC_DEFINE(HAVE_QT, 1, 
-        [Define to 1 if Qt is available (libraries, developer header files, utility programs (moc, uic, and rcc))])
+        [Define to 1 if Qt is available (libraries, developer header files, utility programs (moc, uic, rcc, and lrelease))])
     else
-      AC_MSG_WARN([Qt utility programs moc, uic, and rcc not found -- disabling GUI])
+      AC_MSG_WARN([Qt utility programs moc, uic, rcc, and lrelease not found -- disabling GUI])
       build_gui=no
     fi
   fi
--- a/libgui/Makefile.am	Sun Mar 10 09:11:44 2013 -0700
+++ b/libgui/Makefile.am	Sun Mar 10 20:31:16 2013 +0100
@@ -90,3 +90,5 @@
 qrc-%.cc: %.qrc
 	@RCC@ -o $@ $<
 
+%.qm: %.ts
+	@LRELEASE@ $<
Binary file libgui/languages/be_BY.qm has changed
Binary file libgui/languages/de_DE.qm has changed
--- a/libgui/languages/en_US.qm	Sun Mar 10 09:11:44 2013 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-<¸dÊÍ!¿`¡½Ý
\ No newline at end of file
Binary file libgui/languages/es_ES.qm has changed
Binary file libgui/languages/nl_NL.qm has changed
Binary file libgui/languages/pt_BR.qm has changed
Binary file libgui/languages/ru_RU.qm has changed
Binary file libgui/languages/uk_UA.qm has changed