import/print: Don't factorize URI if there's no version match.
[jackhill/guix/guix.git] / doc / local.mk
CommitLineData
575ed8d5 1# GNU Guix --- Functional package management for GNU
36629097 2# Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
e1c15e8b 3# Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
575ed8d5 4# Copyright © 2013 Andreas Enge <andreas@enge.fr>
ce9a3042 5# Copyright © 2016 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
523790d1 6# Copyright © 2016, 2018 Mathieu Lirzin <mthl@gnu.org>
b9fe8fd6 7# Copyright © 2018 Julien Lepiller <julien@lepiller.eu>
575ed8d5
AE
8#
9# This file is part of GNU Guix.
10#
11# GNU Guix is free software; you can redistribute it and/or modify it
12# under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 3 of the License, or (at
14# your option) any later version.
15#
16# GNU Guix is distributed in the hope that it will be useful, but
17# WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
23
de712e52 24info_TEXINFOS = %D%/guix.texi \
3bac7e64 25 %D%/guix.de.texi \
de712e52
LC
26 %D%/guix.es.texi \
27 %D%/guix.fr.texi \
3bac7e64 28 %D%/guix.ru.texi \
7bc46ecc 29 %D%/guix.zh_CN.texi \
f98e83a1
FP
30 %D%/guix-cookbook.texi \
31 %D%/guix-cookbook.de.texi
88856916 32
523790d1
ML
33%C%_guix_TEXINFOS = \
34 %D%/contributing.texi \
35 %D%/fdl-1.3.texi
36
88856916 37DOT_FILES = \
c0d2e7b1
ML
38 %D%/images/bootstrap-graph.dot \
39 %D%/images/bootstrap-packages.dot \
40 %D%/images/coreutils-graph.dot \
41 %D%/images/coreutils-bag-graph.dot \
a243722c 42 %D%/images/gcc-mesboot-bag-graph.dot \
c0d2e7b1
ML
43 %D%/images/service-graph.dot \
44 %D%/images/shepherd-graph.dot
88856916
LC
45
46DOT_VECTOR_GRAPHICS = \
47 $(DOT_FILES:%.dot=%.eps) \
48 $(DOT_FILES:%.dot=%.pdf)
49
a9424c08 50EXTRA_DIST += \
c0d2e7b1 51 %D%/htmlxref.cnf \
88856916
LC
52 $(DOT_FILES) \
53 $(DOT_VECTOR_GRAPHICS) \
c0d2e7b1
ML
54 %D%/images/coreutils-size-map.eps \
55 %D%/environment-gdb.scm \
56 %D%/package-hello.scm
575ed8d5 57
dd51caac 58OS_CONFIG_EXAMPLES_TEXI = \
c0d2e7b1
ML
59 %D%/os-config-bare-bones.texi \
60 %D%/os-config-desktop.texi \
61 %D%/os-config-lightweight-desktop.texi
dd51caac 62
de712e52
LC
63TRANSLATED_INFO = \
64 %D%/guix.de.texi \
65 %D%/guix.es.texi \
66 %D%/guix.fr.texi \
3bac7e64 67 %D%/guix.ru.texi \
de712e52
LC
68 %D%/guix.zh_CN.texi \
69 %D%/contributing.de.texi \
70 %D%/contributing.es.texi \
71 %D%/contributing.fr.texi \
3bac7e64 72 %D%/contributing.ru.texi \
f98e83a1
FP
73 %D%/contributing.zh_CN.texi \
74 %D%/guix-cookbook.de.texi
b9fe8fd6 75
931c132a 76# Bundle this file so that makeinfo finds it in out-of-source-tree builds.
b9fe8fd6
JL
77BUILT_SOURCES += $(OS_CONFIG_EXAMPLES_TEXI) $(TRANSLATED_INFO)
78EXTRA_DIST += $(OS_CONFIG_EXAMPLES_TEXI) $(TRANSLATED_INFO)
79MAINTAINERCLEANFILES = $(OS_CONFIG_EXAMPLES_TEXI) $(TRANSLATED_INFO)
80
81PO4A_PARAMS := -M UTF-8 -L UTF-8 #master and localized encoding
82PO4A_PARAMS += -k 0 # produce an output even if the translation is not complete
83PO4A_PARAMS += -f texinfo # texinfo format
84
85# When a change to guix.texi occurs, it is not translated immediately.
86# Because @pxref and @xref commands are reference to a section by name, they
87# should be translated. If a modification adds a reference to a section, this
88# reference is not translated, which means it references a section that does not
89# exist.
90# This command loops through the translated files looking for references. For
91# each of these references, it tries to find the translation and replaces the
92# reference name, even in untranslated strings.
93# The last sed is a multiline sed because some references span multiple lines.
94define xref_command
95cat "$@.tmp" | egrep '@p?x?ref' -A1 | sed 'N;s|--\n||g;P;D' | sed 's|^| |g' | \
96 tr -d '\012' | sed 's|\(@p\?x\?ref\)|\n\1|g' | egrep '@p?x?ref' | \
97 sed 's|^.*@p\?x\?ref{\([^,}]*\).*$$|\1|g' | sort | uniq | while read e; do \
98 line=$$(grep -n "^msgid \"$$e\"" "$<" | cut -f1 --delimiter=":") ;\
99 ((line++)) ;\
100 if [ "$$line" != "1" ]; then \
101 translation=$$(head -n $$line "$<" | tail -1 | grep msgstr | sed 's|msgstr "\(.*\)"|\1|') ;\
102 if [ "$$translation" != "" ]; then \
103 sed "N;s@\(p\?x\?ref\){$$(echo $$e | sed 's| |[\\n ]|g')\(,\|}\)@\1{$$translation\2@g;P;D" -i "$@.tmp" ;\
104 fi ;\
105 fi ;\
106done
107endef
108
39764ef8 109$(srcdir)/%D%/guix.%.texi: po/doc/guix-manual.%.po $(srcdir)/%D%/contributing.%.texi
b9fe8fd6
JL
110 -$(AM_V_PO4A)$(PO4A_TRANSLATE) $(PO4A_PARAMS) -m "%D%/guix.texi" -p "$<" -l "$@.tmp"
111 -sed -i "s|guix\.info|$$(basename "$@" | sed 's|texi$$|info|')|" "$@.tmp"
06c4778a 112 -$(AM_V_POXREF)$(xref_command)
b9fe8fd6
JL
113 -mv "$@.tmp" "$@"
114
7bc46ecc
RW
115$(srcdir)/%D%/guix-cookbook.%.texi: po/doc/guix-cookbook.%.po
116 -$(AM_V_PO4A)$(PO4A_TRANSLATE) $(PO4A_PARAMS) -m "%D%/guix-cookbook.texi" -p "$<" -l "$@.tmp"
117 -sed -i "s|guix-cookbook\.info|$$(basename "$@" | sed 's|texi$$|info|')|" "$@.tmp"
118 -$(AM_V_POXREF)$(xref_command)
119 -mv "$@.tmp" "$@"
120
39764ef8
JL
121$(srcdir)/%D%/contributing.%.texi: po/doc/guix-manual.%.po
122 -$(AM_V_PO4A)$(PO4A_TRANSLATE) $(PO4A_PARAMS) -m "%D%/contributing.texi" -p "$<" -l "$@.tmp"
06c4778a 123 -$(AM_V_POXREF)$(xref_command)
b9fe8fd6 124 -mv "$@.tmp" "$@"
931c132a 125
c0d2e7b1 126%D%/os-config-%.texi: gnu/system/examples/%.tmpl
e71ad29d 127 $(AM_V_GEN)$(MKDIR_P) "`dirname $@`"; \
931c132a
LC
128 cp "$<" "$@"
129
575ed8d5 130infoimagedir = $(infodir)/images
a8f996c6 131dist_infoimage_DATA = \
88856916 132 $(DOT_FILES:%.dot=%.png) \
e1c15e8b
LC
133 %D%/images/coreutils-size-map.png \
134 %D%/images/installer-network.png \
135 %D%/images/installer-partitions.png \
136 %D%/images/installer-resume.png
575ed8d5 137
227ff747
LC
138# Ask for warnings about cross-referenced manuals that are not listed in
139# htmlxref.cnf.
140AM_MAKEINFOHTMLFLAGS = --set-customization-variable CHECK_HTMLXREF=true
141
575ed8d5
AE
142# Try hard to obtain an image size and aspect that's reasonable for inclusion
143# in an Info or PDF document.
54461ce7
LC
144DOT_OPTIONS = \
145 -Gratio=.9 -Gnodesep=.005 -Granksep=.00005 \
575ed8d5
AE
146 -Nfontsize=9 -Nheight=.1 -Nwidth=.1
147
148.dot.png:
4c48878d 149 $(AM_V_DOT)$(DOT) -Tpng $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"; \
ce9a3042 150 mv "$(srcdir)/$@.tmp" "$(srcdir)/$@"
575ed8d5 151
54461ce7 152.dot.pdf:
4c48878d 153 $(AM_V_DOT)$(DOT) -Tpdf $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"; \
ce9a3042 154 mv "$(srcdir)/$@.tmp" "$(srcdir)/$@"
54461ce7 155
575ed8d5 156.dot.eps:
4c48878d 157 $(AM_V_DOT)$(DOT) -Teps $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"; \
ce9a3042 158 mv "$(srcdir)/$@.tmp" "$(srcdir)/$@"
575ed8d5 159
66c8ea47 160.png.eps:
e71ad29d 161 $(AM_V_GEN)convert "$<" "$@-tmp.eps"; \
66c8ea47
LC
162 mv "$@-tmp.eps" "$@"
163
c0d2e7b1 164# We cannot add new dependencies to `%D%/guix.pdf' & co. (info "(automake)
a9424c08
LC
165# Extending"). Using the `-local' rules is imperfect, because they may be
166# triggered after the main rule. Oh, well.
88856916
LC
167pdf-local: $(DOT_FILES=%.dot=$(top_srcdir)/%.pdf)
168info-local: $(DOT_FILES=%.dot=$(top_srcdir)/%.png)
169ps-local: $(DOT_FILES=%.dot=$(top_srcdir)/%.eps) \
c0d2e7b1 170 $(top_srcdir)/%D%/images/coreutils-size-map.eps
66c8ea47 171dvi-local: ps-local
52eca736 172
36629097
EB
173## ----------- ##
174## Man pages. ##
175## ----------- ##
176
39118b5e
ML
177# The man pages are generated using GNU Help2man. In makefiles rules they
178# depend not on the binary, but on the source files. This usage allows a
179# manual page to be generated by the maintainer and included in the
180# distribution without requiring the end-user to have 'help2man' installed.
181# They are built in $(srcdir) like info manuals.
182
36629097 183sub_commands_mans = \
c0d2e7b1
ML
184 $(srcdir)/%D%/guix-archive.1 \
185 $(srcdir)/%D%/guix-build.1 \
186 $(srcdir)/%D%/guix-challenge.1 \
187 $(srcdir)/%D%/guix-download.1 \
188 $(srcdir)/%D%/guix-edit.1 \
189 $(srcdir)/%D%/guix-environment.1 \
190 $(srcdir)/%D%/guix-gc.1 \
191 $(srcdir)/%D%/guix-hash.1 \
192 $(srcdir)/%D%/guix-import.1 \
193 $(srcdir)/%D%/guix-lint.1 \
194 $(srcdir)/%D%/guix-package.1 \
195 $(srcdir)/%D%/guix-publish.1 \
196 $(srcdir)/%D%/guix-pull.1 \
197 $(srcdir)/%D%/guix-refresh.1 \
198 $(srcdir)/%D%/guix-size.1 \
199 $(srcdir)/%D%/guix-system.1
52eca736
LC
200
201dist_man1_MANS = \
c0d2e7b1 202 $(srcdir)/%D%/guix.1 \
36629097
EB
203 $(sub_commands_mans)
204
ff853a2a
LC
205gen_man = \
206 LANGUAGE= $(top_builddir)/pre-inst-env $(HELP2MAN) \
207 $(HELP2MANFLAGS)
208
209HELP2MANFLAGS = --source=GNU --info-page=$(PACKAGE_TARNAME)
36629097 210
c0d2e7b1 211$(srcdir)/%D%/guix.1: scripts/guix.in $(sub_commands_mans)
92d40a68 212 -$(AM_V_HELP2MAN)$(gen_man) --output="$@" `basename "$@" .1`
36629097 213
39118b5e
ML
214# The 'case' ensures the man pages are only generated if the corresponding
215# source script (the first prerequisite) has been changed. The $(GOBJECTS)
216# prerequisite is solely meant to force these docs to be made only after all
217# Guile modules have been compiled.
c0d2e7b1 218$(srcdir)/%D%/guix-%.1: guix/scripts/%.scm $(GOBJECTS)
36629097
EB
219 -@case '$?' in \
220 *$<*) $(AM_V_P) && set -x || echo " HELP2MAN $@"; \
221 $(gen_man) --output="$@" "guix $*";; \
222 *) : ;; \
223 esac
acec3beb
LC
224
225if BUILD_DAEMON
226
c0d2e7b1 227dist_man1_MANS += $(srcdir)/%D%/guix-daemon.1
36629097 228
c0d2e7b1 229$(srcdir)/%D%/guix-daemon.1: nix/nix-daemon/guix-daemon.cc
36629097 230 -$(AM_V_HELP2MAN)$(gen_man) --output="$@" `basename "$@" .1`
acec3beb
LC
231
232endif