weechat/po/CMakeLists.txt

105 lines
3.8 KiB
CMake
Raw Normal View History

2007-05-21 16:30:04 +00:00
#
2013-01-01 13:12:49 +01:00
# Copyright (C) 2003-2013 Sebastien Helleu <flashcode@flashtux.org>
#
# This file is part of WeeChat, the extensible chat client.
#
# WeeChat is free software; you can redistribute it and/or modify
2007-05-21 16:30:04 +00:00
# it under the terms of the GNU General Public License as published by
2007-07-02 12:25:13 +00:00
# the Free Software Foundation; either version 3 of the License, or
2007-05-21 16:30:04 +00:00
# (at your option) any later version.
#
# WeeChat is distributed in the hope that it will be useful,
2007-05-21 16:30:04 +00:00
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
2007-05-21 16:30:04 +00:00
#
SET(PO_FILES
fr.po
es.po
cs.po
hu.po
de.po
ru.po
2009-04-28 11:13:16 +02:00
pl.po
it.po
2012-02-26 07:54:44 +01:00
ja.po
pt_BR.po
tr.po
2007-05-21 16:30:04 +00:00
)
SET(BUGS_ADDRESS "flashcode@flashtux.org")
SET(POT_FILE ${PROJECT_NAME}.pot)
SET(POT_FILE_PATH ${CMAKE_CURRENT_BINARY_DIR}/${POT_FILE})
2007-05-21 16:30:04 +00:00
INCLUDE(srcfiles.cmake)
# Looking for xgettext, msgmerge and msgfmt
FIND_PROGRAM(XGETTEXT_EXECUTABLE xgettext)
FIND_PROGRAM(MSGMERGE_EXECUTABLE msgmerge)
FIND_PROGRAM(MSGFMT_EXECUTABLE msgfmt)
IF(XGETTEXT_EXECUTABLE AND MSGMERGE_EXECUTABLE AND MSGFMT_EXECUTABLE)
2011-10-26 20:37:03 +02:00
2007-05-21 16:30:04 +00:00
# Create PO template file weechat.pot
SET(SRC_FILES)
SET(POT_DEPENDS)
FOREACH(srcfile ${WEECHAT_SOURCES})
SET(SRC_FILES ${SRC_FILES} ${srcfile})
SET(POT_DEPENDS ${POT_DEPENDS} ${CMAKE_SOURCE_DIR}/${srcfile})
ENDFOREACH(srcfile ${WEECHAT_SOURCES})
ADD_CUSTOM_COMMAND(
OUTPUT ${POT_FILE_PATH}
2007-05-21 16:30:04 +00:00
COMMAND ${XGETTEXT_EXECUTABLE}
ARGS -o ${POT_FILE_PATH} --add-comments='TRANSLATORS:' --keyword='_' --keyword='weechat_gettext' --keyword='N_' --keyword='NG_:1,2' --keyword='weechat_ngettext:1,2' --no-location --directory=${CMAKE_SOURCE_DIR} --package-name='WeeChat' --package-version=${VERSION} --msgid-bugs-address=${BUGS_ADDRESS} --copyright-holder='NAME' ${SRC_FILES}
2007-05-21 16:30:04 +00:00
DEPENDS ${POT_DEPENDS}
COMMENT "Generating ${POT_FILE}"
2007-05-21 16:30:04 +00:00
)
SET(GMO_FILES)
SET(UPDATE_PO_TARGETS)
2007-05-21 16:30:04 +00:00
FOREACH(pofile ${PO_FILES})
GET_FILENAME_COMPONENT(polang ${pofile} NAME_WE)
2011-10-26 20:37:03 +02:00
# Compile .po files in build directory (to binary .gmo files)
2007-05-21 16:30:04 +00:00
SET(gmofile ${CMAKE_CURRENT_BINARY_DIR}/${polang}.gmo)
ADD_CUSTOM_COMMAND(
OUTPUT ${gmofile}
COMMAND ${MSGMERGE_EXECUTABLE} ARGS --quiet -o ${CMAKE_CURRENT_BINARY_DIR}/${pofile} ${CMAKE_CURRENT_SOURCE_DIR}/${pofile} ${POT_FILE_PATH}
2007-05-21 16:30:04 +00:00
COMMAND ${MSGFMT_EXECUTABLE} ARGS -o ${gmofile} ${CMAKE_CURRENT_BINARY_DIR}/${pofile}
COMMAND ${MSGFMT_EXECUTABLE} ARGS -c --statistics --verbose --output-file=/dev/null ${CMAKE_CURRENT_BINARY_DIR}/${pofile}
DEPENDS ${POT_FILE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/${pofile}
COMMENT "Compiling ${polang}.po"
)
# Update .po files in source directory (if needed)
ADD_CUSTOM_TARGET(
update-${pofile}
COMMAND ${MSGMERGE_EXECUTABLE} --quiet --update --backup=none ${CMAKE_CURRENT_SOURCE_DIR}/${pofile} ${POT_FILE_PATH}
COMMENT "Updating ${polang}.po"
2007-05-21 16:30:04 +00:00
)
SET(UPDATE_PO_TARGETS ${UPDATE_PO_TARGETS} update-${pofile})
2011-10-26 20:37:03 +02:00
INSTALL(FILES ${gmofile} DESTINATION ${LOCALEDIR}/${polang}/LC_MESSAGES RENAME ${PROJECT_NAME}.mo)
2007-05-21 16:30:04 +00:00
SET(GMO_FILES ${GMO_FILES} ${gmofile})
ENDFOREACH(pofile ${PO_FILES})
ADD_CUSTOM_TARGET(translations ALL DEPENDS ${GMO_FILES})
# Update weechat.pot in source directory (if needed)
ADD_CUSTOM_TARGET(
update-${POT_FILE}
COMMAND ${MSGMERGE_EXECUTABLE} --quiet --update --backup=none ${CMAKE_CURRENT_SOURCE_DIR}/${POT_FILE} ${POT_FILE_PATH}
COMMENT "Updating ${POT_FILE}"
)
# Update all .po and weechat.pot in source directory (if needed)
ADD_CUSTOM_TARGET(update-po DEPENDS update-${POT_FILE} ${UPDATE_PO_TARGETS})
2007-05-21 16:30:04 +00:00
ENDIF(XGETTEXT_EXECUTABLE AND MSGMERGE_EXECUTABLE AND MSGFMT_EXECUTABLE)