local.mk 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. # GNU Guix --- Functional package management for GNU
  2. # Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
  3. # Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
  4. # Copyright © 2013 Andreas Enge <andreas@enge.fr>
  5. # Copyright © 2016 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
  6. # Copyright © 2016, 2018 Mathieu Lirzin <mthl@gnu.org>
  7. # Copyright © 2018, 2021 Julien Lepiller <julien@lepiller.eu>
  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. # If adding a language, update the following variables, and info_TEXINFOS.
  24. MANUAL_LANGUAGES = de es fa fr it ko pt_BR ru sk zh_CN
  25. COOKBOOK_LANGUAGES = de fa fr ko ru sk zh_Hans
  26. # Arg1: A list of languages codes.
  27. # Arg2: The file name stem.
  28. lang_to_texinfo = $(foreach lang,$(1),%D%/$(2).$(lang).texi)
  29. # Automake does not understand GNU Make non-standard extensions,
  30. # unfortunately, so we cannot use the above patsubst-based function here.
  31. info_TEXINFOS = %D%/guix.texi \
  32. %D%/guix.de.texi \
  33. %D%/guix.es.texi \
  34. %D%/guix.fa.texi \
  35. %D%/guix.fr.texi \
  36. %D%/guix.it.texi \
  37. %D%/guix.ko.texi \
  38. %D%/guix.pt_BR.texi \
  39. %D%/guix.ru.texi \
  40. %D%/guix.sk.texi \
  41. %D%/guix.zh_CN.texi \
  42. %D%/guix-cookbook.texi \
  43. %D%/guix-cookbook.de.texi \
  44. %D%/guix-cookbook.fa.texi \
  45. %D%/guix-cookbook.fr.texi \
  46. %D%/guix-cookbook.ko.texi \
  47. %D%/guix-cookbook.ru.texi \
  48. %D%/guix-cookbook.sk.texi \
  49. %D%/guix-cookbook.zh_Hans.texi
  50. %C%_guix_TEXINFOS = \
  51. %D%/contributing.texi \
  52. %D%/fdl-1.3.texi
  53. DOT_FILES = \
  54. %D%/images/bootstrap-graph.dot \
  55. %D%/images/bootstrap-packages.dot \
  56. %D%/images/coreutils-graph.dot \
  57. %D%/images/coreutils-bag-graph.dot \
  58. %D%/images/gcc-core-mesboot0-graph.dot \
  59. %D%/images/service-graph.dot \
  60. %D%/images/shepherd-graph.dot
  61. DOT_VECTOR_GRAPHICS = \
  62. $(DOT_FILES:%.dot=%.eps) \
  63. $(DOT_FILES:%.dot=%.pdf)
  64. EXTRA_DIST += \
  65. %D%/htmlxref.cnf \
  66. $(DOT_FILES) \
  67. $(DOT_VECTOR_GRAPHICS) \
  68. %D%/images/coreutils-size-map.eps \
  69. %D%/environment-gdb.scm \
  70. %D%/package-hello.scm \
  71. %D%/package-hello.json
  72. OS_CONFIG_EXAMPLES_TEXI = \
  73. %D%/os-config-bare-bones.texi \
  74. %D%/os-config-desktop.texi \
  75. %D%/os-config-lightweight-desktop.texi
  76. TRANSLATED_INFO = \
  77. $(call lang_to_texinfo,$(MANUAL_LANGUAGES),guix) \
  78. $(call lang_to_texinfo,$(MANUAL_LANGUAGES),contributing) \
  79. $(call lang_to_texinfo,$(COOKBOOK_LANGUAGES),guix-cookbook)
  80. # Bundle this file so that makeinfo finds it in out-of-source-tree builds.
  81. BUILT_SOURCES += $(OS_CONFIG_EXAMPLES_TEXI) $(TRANSLATED_INFO)
  82. EXTRA_DIST += $(OS_CONFIG_EXAMPLES_TEXI) $(TRANSLATED_INFO)
  83. MAINTAINERCLEANFILES = $(OS_CONFIG_EXAMPLES_TEXI) $(TRANSLATED_INFO)
  84. PO4A_PARAMS := -M UTF-8 -L UTF-8 #master and localized encoding
  85. PO4A_PARAMS += -k 0 # produce an output even if the translation is not complete
  86. PO4A_PARAMS += -f texinfo # texinfo format
  87. # When a change to guix.texi occurs, it is not translated immediately.
  88. # Because @pxref and @xref commands are references to sections by name, they
  89. # should be translated. If a modification adds a reference to a section, this
  90. # reference is not translated, which means it references a section that does not
  91. # exist.
  92. define xref_command
  93. $(top_srcdir)/pre-inst-env $(GUILE) --no-auto-compile \
  94. "$(top_srcdir)/build-aux/convert-xref.scm" \
  95. $@.tmp $<
  96. endef
  97. $(srcdir)/%D%/guix.%.texi: po/doc/guix-manual.%.po $(srcdir)/%D%/contributing.%.texi guix/build/po.go
  98. -$(AM_V_PO4A)$(PO4A_TRANSLATE) $(PO4A_PARAMS) -m "%D%/guix.texi" -p "$<" -l "$@.tmp"
  99. -sed -i "s|guix\.info|$$(basename "$@" | sed 's|texi$$|info|')|" "$@.tmp"
  100. -$(AM_V_POXREF)$(xref_command)
  101. -mv "$@.tmp" "$@"
  102. $(srcdir)/%D%/guix-cookbook.%.texi: po/doc/guix-cookbook.%.po guix/build/po.go
  103. -$(AM_V_PO4A)$(PO4A_TRANSLATE) $(PO4A_PARAMS) -m "%D%/guix-cookbook.texi" -p "$<" -l "$@.tmp"
  104. -sed -i "s|guix-cookbook\.info|$$(basename "$@" | sed 's|texi$$|info|')|" "$@.tmp"
  105. -$(AM_V_POXREF)$(xref_command)
  106. -mv "$@.tmp" "$@"
  107. $(srcdir)/%D%/contributing.%.texi: po/doc/guix-manual.%.po guix/build/po.go
  108. -$(AM_V_PO4A)$(PO4A_TRANSLATE) $(PO4A_PARAMS) -m "%D%/contributing.texi" -p "$<" -l "$@.tmp"
  109. -$(AM_V_POXREF)$(xref_command)
  110. -mv "$@.tmp" "$@"
  111. %D%/os-config-%.texi: gnu/system/examples/%.tmpl
  112. $(AM_V_GEN)$(MKDIR_P) "`dirname $@`"; \
  113. cp "$<" "$@"
  114. infoimagedir = $(infodir)/images
  115. dist_infoimage_DATA = \
  116. $(DOT_FILES:%.dot=%.png) \
  117. %D%/images/coreutils-size-map.png \
  118. %D%/images/installer-network.png \
  119. %D%/images/installer-partitions.png \
  120. %D%/images/installer-resume.png
  121. # Ask for warnings about cross-referenced manuals that are not listed in
  122. # htmlxref.cnf.
  123. AM_MAKEINFOHTMLFLAGS = --set-customization-variable CHECK_HTMLXREF=true
  124. # Try hard to obtain an image size and aspect that's reasonable for inclusion
  125. # in an Info or PDF document.
  126. DOT_OPTIONS = \
  127. -Gratio=.9 -Gnodesep=.005 -Granksep=.00005 \
  128. -Nfontsize=9 -Nheight=.1 -Nwidth=.1
  129. .dot.png:
  130. $(AM_V_DOT)$(DOT) -Tpng $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"; \
  131. mv "$(srcdir)/$@.tmp" "$(srcdir)/$@"
  132. .dot.pdf:
  133. $(AM_V_DOT)$(DOT) -Tpdf $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"; \
  134. mv "$(srcdir)/$@.tmp" "$(srcdir)/$@"
  135. .dot.eps:
  136. $(AM_V_DOT)$(DOT) -Teps $(DOT_OPTIONS) < "$<" > "$(srcdir)/$@.tmp"; \
  137. mv "$(srcdir)/$@.tmp" "$(srcdir)/$@"
  138. .png.eps:
  139. $(AM_V_GEN)convert "$<" "$@-tmp.eps"; \
  140. mv "$@-tmp.eps" "$@"
  141. # We cannot add new dependencies to `%D%/guix.pdf' & co. (info "(automake)
  142. # Extending"). Using the `-local' rules is imperfect, because they may be
  143. # triggered after the main rule. Oh, well.
  144. pdf-local: $(DOT_FILES=%.dot=$(top_srcdir)/%.pdf)
  145. info-local: $(DOT_FILES=%.dot=$(top_srcdir)/%.png)
  146. ps-local: $(DOT_FILES=%.dot=$(top_srcdir)/%.eps) \
  147. $(top_srcdir)/%D%/images/coreutils-size-map.eps
  148. dvi-local: ps-local
  149. ## ----------- ##
  150. ## Man pages. ##
  151. ## ----------- ##
  152. # The man pages are generated using GNU Help2man. In makefiles rules they
  153. # depend not on the binary, but on the source files. This usage allows a
  154. # manual page to be generated by the maintainer and included in the
  155. # distribution without requiring the end-user to have 'help2man' installed.
  156. # They are built in $(srcdir) like info manuals.
  157. sub_commands_mans = \
  158. $(srcdir)/%D%/guix-archive.1 \
  159. $(srcdir)/%D%/guix-build.1 \
  160. $(srcdir)/%D%/guix-challenge.1 \
  161. $(srcdir)/%D%/guix-deploy.1 \
  162. $(srcdir)/%D%/guix-download.1 \
  163. $(srcdir)/%D%/guix-edit.1 \
  164. $(srcdir)/%D%/guix-environment.1 \
  165. $(srcdir)/%D%/guix-gc.1 \
  166. $(srcdir)/%D%/guix-hash.1 \
  167. $(srcdir)/%D%/guix-import.1 \
  168. $(srcdir)/%D%/guix-lint.1 \
  169. $(srcdir)/%D%/guix-package.1 \
  170. $(srcdir)/%D%/guix-publish.1 \
  171. $(srcdir)/%D%/guix-pull.1 \
  172. $(srcdir)/%D%/guix-refresh.1 \
  173. $(srcdir)/%D%/guix-size.1 \
  174. $(srcdir)/%D%/guix-system.1 \
  175. $(srcdir)/%D%/guix-time-machine.1 \
  176. $(srcdir)/%D%/guix-weather.1
  177. # Assume that cross-compiled commands cannot be executed.
  178. if !CROSS_COMPILING
  179. dist_man1_MANS = \
  180. $(srcdir)/%D%/guix.1 \
  181. $(sub_commands_mans)
  182. endif
  183. gen_man = \
  184. LANGUAGE= $(top_builddir)/pre-inst-env $(HELP2MAN) \
  185. $(HELP2MANFLAGS)
  186. HELP2MANFLAGS = --source=GNU --info-page=$(PACKAGE_TARNAME)
  187. $(srcdir)/%D%/guix.1: scripts/guix.in $(sub_commands_mans)
  188. -$(AM_V_HELP2MAN)$(gen_man) --output="$@" `basename "$@" .1`
  189. # The 'case' ensures the man pages are only generated if the corresponding
  190. # source script (the first prerequisite) has been changed. The $(GOBJECTS)
  191. # prerequisite is solely meant to force these docs to be made only after all
  192. # Guile modules have been compiled.
  193. $(srcdir)/%D%/guix-%.1: guix/scripts/%.scm $(GOBJECTS)
  194. -@case '$?' in \
  195. *$<*) $(AM_V_P) && set -x || echo " HELP2MAN $@"; \
  196. $(gen_man) --output="$@" "guix $*";; \
  197. *) : ;; \
  198. esac
  199. if BUILD_DAEMON
  200. if !CROSS_COMPILING
  201. dist_man1_MANS += $(srcdir)/%D%/guix-daemon.1
  202. $(srcdir)/%D%/guix-daemon.1: guix-daemon$(EXEEXT)
  203. -$(AM_V_HELP2MAN)$(gen_man) --output="$@" `basename "$@" .1`
  204. endif
  205. endif