2018-03-02 17:05:28 -05:00
|
|
|
# GNU Guix --- Functional package management for GNU
|
|
|
|
# Copyright © 2018 Julien Lepiller <julien@lepiller.eu>
|
2021-04-29 09:45:39 -04:00
|
|
|
# Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
2024-04-03 02:08:12 -04:00
|
|
|
# Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
|
2024-04-14 03:18:51 -04:00
|
|
|
# Copyright © 2024 gemmaro <gemmaro.dev@gmail.com>
|
2018-03-02 17:05:28 -05: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 09:45:39 -04:00
|
|
|
DOC_PO_FILES = \
|
2019-04-23 18:26:15 -04:00
|
|
|
%D%/guix-manual.de.po \
|
2022-03-08 13:14:47 -05:00
|
|
|
%D%/guix-manual.es.po \
|
2019-04-23 18:26:15 -04:00
|
|
|
%D%/guix-manual.fr.po \
|
2021-04-17 21:45:44 -04:00
|
|
|
%D%/guix-manual.pt_BR.po \
|
2019-05-13 04:45:17 -04:00
|
|
|
%D%/guix-manual.ru.po \
|
2021-04-18 16:28:06 -04:00
|
|
|
%D%/guix-manual.zh_CN.po
|
2018-03-02 17:05:28 -05:00
|
|
|
|
2021-04-29 09:45:39 -04:00
|
|
|
DOC_COOKBOOK_PO_FILES = \
|
|
|
|
%D%/guix-cookbook.de.po \
|
|
|
|
%D%/guix-cookbook.fr.po \
|
|
|
|
%D%/guix-cookbook.ko.po \
|
2024-03-31 18:54:32 -04:00
|
|
|
%D%/guix-cookbook.pt_BR.po \
|
2024-06-02 12:34:06 -04:00
|
|
|
%D%/guix-cookbook.sk.po \
|
|
|
|
%D%/guix-cookbook.sv.po
|
2019-09-08 08:35:44 -04:00
|
|
|
|
2018-11-28 16:20:08 -05:00
|
|
|
EXTRA_DIST = \
|
|
|
|
%D%/guix-manual.pot \
|
2019-09-08 08:35:44 -04:00
|
|
|
%D%/guix-cookbook.pot \
|
|
|
|
$(DOC_PO_FILES) \
|
|
|
|
$(DOC_COOKBOOK_PO_FILES)
|
2018-11-28 16:20:08 -05:00
|
|
|
|
2021-04-29 09:45:39 -04:00
|
|
|
%D%/%.pot: $(srcdir)/doc/%.texi
|
2024-04-14 03:18:51 -04:00
|
|
|
$(AM_V_PO4A)$(PO4A) --no-translations -M UTF-8 \
|
|
|
|
--package-version "$(VERSION)" \
|
|
|
|
--variable master="$<" \
|
|
|
|
--variable pot="$@-t" \
|
|
|
|
--variable po=/dev/null \
|
|
|
|
--variable localized=/dev/null \
|
|
|
|
$(POT_OPTIONS) %D%/po4a.cfg
|
2024-04-03 02:08:12 -04:00
|
|
|
date="$$(git log --pretty=format:%ci -n 1 -- $< 2>/dev/null \
|
|
|
|
|| echo $(SOURCE_DATE_EPOCH))" \
|
|
|
|
sed -ri -e "s,^(.POT-Creation-Date: )[^\]*,\1$$date," "$@-t"
|
|
|
|
mv "$@-t" "$@"
|
2018-11-28 16:20:08 -05:00
|
|
|
|
2021-04-29 09:45:39 -04:00
|
|
|
%D%/guix-manual.pot: %D%/guix.pot %D%/contributing.pot
|
2024-04-03 02:08:12 -04:00
|
|
|
msgcat $^ > "$@-t"
|
|
|
|
date="$$(git log --pretty=format:%ci -n 1 -- $< 2>/dev/null \
|
|
|
|
|| echo $(SOURCE_DATE_EPOCH))" \
|
|
|
|
sed -ri "s,^(.POT-Creation-Date: )[^\]*,\1$$date," "$@-t"
|
|
|
|
mv "$@-t" "$@"
|
2019-09-08 08:35:44 -04:00
|
|
|
|
2021-04-29 09:45:39 -04:00
|
|
|
doc-pot-update: %D%/guix-manual.pot %D%/guix-cookbook.pot
|
2021-05-03 00:54:12 -04:00
|
|
|
.PHONY: doc-pot-update
|