2018-03-02 22:05:28 +00:00
|
|
|
# GNU Guix --- Functional package management for GNU
|
|
|
|
# Copyright © 2018 Julien Lepiller <julien@lepiller.eu>
|
2021-04-29 13:45:39 +00:00
|
|
|
# Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
2018-03-02 22:05:28 +00:00
|
|
|
#
|
|
|
|
# This file is part of GNU Guix.
|
|
|
|
#
|
|
|
|
# GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
# your option) any later version.
|
|
|
|
#
|
|
|
|
# GNU Guix is distributed in the hope that it will be useful, 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 GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2021-04-29 13:45:39 +00:00
|
|
|
DOC_PO_FILES = \
|
2019-04-23 22:26:15 +00:00
|
|
|
%D%/guix-manual.de.po \
|
2022-03-08 18:14:47 +00:00
|
|
|
%D%/guix-manual.es.po \
|
2019-04-23 22:26:15 +00:00
|
|
|
%D%/guix-manual.fr.po \
|
2021-04-18 01:45:44 +00:00
|
|
|
%D%/guix-manual.pt_BR.po \
|
2019-05-13 08:45:17 +00:00
|
|
|
%D%/guix-manual.ru.po \
|
2021-04-18 20:28:06 +00:00
|
|
|
%D%/guix-manual.zh_CN.po
|
2018-03-02 22:05:28 +00:00
|
|
|
|
2021-04-29 13:45:39 +00:00
|
|
|
DOC_COOKBOOK_PO_FILES = \
|
|
|
|
%D%/guix-cookbook.de.po \
|
|
|
|
%D%/guix-cookbook.fr.po \
|
|
|
|
%D%/guix-cookbook.ko.po \
|
2022-03-08 18:14:47 +00:00
|
|
|
%D%/guix-cookbook.sk.po
|
2019-09-08 12:35:44 +00:00
|
|
|
|
2018-11-28 21:20:08 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
%D%/guix-manual.pot \
|
2019-09-08 12:35:44 +00:00
|
|
|
%D%/guix-cookbook.pot \
|
|
|
|
$(DOC_PO_FILES) \
|
|
|
|
$(DOC_COOKBOOK_PO_FILES)
|
2018-11-28 21:20:08 +00:00
|
|
|
|
2021-04-29 13:45:39 +00:00
|
|
|
POT_OPTIONS = \
|
|
|
|
--package-name "guix manual" --package-version "$(VERSION)" \
|
|
|
|
--copyright-holder "the authors of Guix (msgids)" \
|
|
|
|
--msgid-bugs-address "bug-guix@gnu.org"
|
2018-03-02 22:05:28 +00:00
|
|
|
|
2021-04-29 13:45:39 +00:00
|
|
|
%D%/%.pot: $(srcdir)/doc/%.texi
|
2018-03-02 22:05:28 +00:00
|
|
|
$(AM_V_PO4A)$(PO4A_UPDATEPO) -M UTF-8 -f texinfo -m "$<" \
|
2021-04-29 13:45:39 +00:00
|
|
|
-p "$@" $(POT_OPTIONS) && \
|
|
|
|
touch $@
|
2018-11-28 21:20:08 +00:00
|
|
|
|
2021-04-29 13:45:39 +00:00
|
|
|
%D%/guix-manual.pot: %D%/guix.pot %D%/contributing.pot
|
2021-04-30 13:49:46 +00:00
|
|
|
msgcat $^ > $@
|
2019-09-08 12:35:44 +00:00
|
|
|
|
2021-04-29 13:45:39 +00:00
|
|
|
doc-pot-update: %D%/guix-manual.pot %D%/guix-cookbook.pot
|
2021-05-03 04:54:12 +00:00
|
|
|
.PHONY: doc-pot-update
|