Makevars 984 B

12345678910111213141516171819202122232425262728293031
  1. # Makefile variables for PO directory in any package using GNU gettext.
  2. # This domain contains only translations of package synopses and descriptions.
  3. DOMAIN = guix-packages
  4. subdir = po/packages
  5. top_builddir = ../..
  6. # These options get passed to xgettext. We want to catch exclusively package
  7. # synopses and descriptions.
  8. XGETTEXT_OPTIONS = \
  9. --language=Scheme --from-code=UTF-8 \
  10. --keyword=synopsis --keyword=description \
  11. --keyword=output-synopsis:2
  12. COPYRIGHT_HOLDER = the authors of Guix (msgids)
  13. MSGID_BUGS_ADDRESS = bug-guix@gnu.org
  14. EXTRA_LOCALE_CATEGORIES =
  15. # Disable PO update upon "make dist", which sometimes fails when doing
  16. # "make distcheck -j4".
  17. # See <https://lists.gnu.org/archive/html/bug-gettext/2014-08/msg00005.html>.
  18. DIST_DEPENDS_ON_UPDATE_PO = no
  19. # Ignore the timestamp of the .pot file, as .po files are updated by
  20. # `make download-po` only. This ensures po files are not modified on the
  21. # first `make` invocation.
  22. PO_DEPENDS_ON_POT = no