| 123456789101112131415161718192021222324252627 | 
							- Subject: Use asciidoctor to build the manpages
 
- Author: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
 
- Date: 2018-08-11
 
- Bug: https://github.com/latchset/tang/issues/32
 
- --- a/Makefile.am
 
- +++ b/Makefile.am
 
- @@ -20,7 +20,7 @@
 
-  
 
-  $(top_builddir)/%.roff: %.adoc
 
-  	$(MKDIR_P) $$(dirname $@)
 
- -	$(A2X) -v -f manpage $^ -D $(top_builddir)/$$(dirname $@)
 
- +	$(A2X) -v --attribute reproducible --backend=manpage $^ -D $(top_builddir)/$$(dirname $@)
 
-  	$(INSTALL) -m 644 $(top_builddir)/$(@:.roff=) $(top_builddir)/$@
 
-  
 
-  man8_MANS = luksmeta.8
 
- --- a/configure.ac
 
- +++ b/configure.ac
 
- @@ -33,7 +33,7 @@
 
-  "
 
-  AC_SUBST([LUKSMETA_CFLAGS])
 
-  
 
- -AC_CHECK_PROGS(A2X, [a2x])
 
- +AC_CHECK_PROGS(A2X, [asciidoctor])
 
-  
 
-  if test "x$A2X" = "x"; then
 
-     AC_MSG_WARN([asciidoc / a2x not found -- man pages will not be generated and installed!])
 
 
  |