doc: add automatically generated man pages for gpio-tools
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Mon, 18 Feb 2019 12:44:38 +0000 (13:44 +0100)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Mon, 18 Feb 2019 13:27:16 +0000 (14:27 +0100)
Extend the build files to automatically generate man pages for
gpio-tools using help2man if it's present in the system and we're not
cross-compiling (as the built programs must be executable for help2man
to work).

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
.gitignore
Makefile.am
configure.ac
man/Makefile.am [new file with mode: 0644]
man/template [new file with mode: 0644]

index f39717ae8cdf77f9cd68e3f26848c1ba0ccf6f84..2dad3059723cf5d4cfeac48c7f613b164651adb1 100644 (file)
@@ -43,3 +43,6 @@ stamp-h1
 
 # unit tests
 gpiod-test
+
+# man pages
+*.man
index e7af4299b38e0d492424a0173d1a59efb0cbcd94..03f844ba45373c5f56f503f0dbee701a67ae3b81 100644 (file)
@@ -3,7 +3,7 @@
 #
 # This file is part of libgpiod.
 #
-# Copyright (C) 2017-2018 Bartosz Golaszewski <bartekgola@gmail.com>
+# Copyright (C) 2017-2019 Bartosz Golaszewski <bartekgola@gmail.com>
 #
 
 ACLOCAL_AMFLAGS = -I m4
@@ -19,6 +19,12 @@ SUBDIRS += tests
 
 endif
 
+if WITH_TOOLS
+
+SUBDIRS += man
+
+endif
+
 if HAS_DOXYGEN
 
 doc:
index 49bedf4d2410984acaf645a2fcdbbcf067c0671f..4d86c2f92217e20adb5a39e84cf4cb97a3011c71 100644 (file)
@@ -3,7 +3,7 @@
 #
 # This file is part of libgpiod.
 #
-# Copyright (C) 2017-2018 Bartosz Golaszewski <bartekgola@gmail.com>
+# Copyright (C) 2017-2019 Bartosz Golaszewski <bartekgola@gmail.com>
 #
 
 AC_PREREQ(2.61)
@@ -191,6 +191,16 @@ then
        AC_MSG_NOTICE([doxygen not found - documentation cannot be generated])
 fi
 
+if test "x$cross_compiling" = xno
+then
+       AC_CHECK_PROG([has_help2man], [help2man], [true], [false])
+       AM_CONDITIONAL([WITH_MANPAGES], [test "x$has_help2man" = xtrue])
+       if test "x$has_help2man" = xfalse
+       then
+               AC_MSG_NOTICE([help2man not found - man pages cannot be generated automatically])
+       fi
+fi
+
 AC_CONFIG_FILES([libgpiod.pc
                 Makefile
                 include/Makefile
@@ -203,6 +213,7 @@ AC_CONFIG_FILES([libgpiod.pc
                 bindings/cxx/Makefile
                 bindings/cxx/examples/Makefile
                 bindings/python/Makefile
-                bindings/python/examples/Makefile])
+                bindings/python/examples/Makefile
+                man/Makefile])
 
 AC_OUTPUT
diff --git a/man/Makefile.am b/man/Makefile.am
new file mode 100644 (file)
index 0000000..426d6f5
--- /dev/null
@@ -0,0 +1,19 @@
+# SPDX-License-Identifier: LGPL-2.1-or-later
+
+#
+# This file is part of libgpiod.
+#
+# Copyright (C) 2019 Bartosz Golaszewski <bartekgola@gmail.com>
+#
+
+if WITH_MANPAGES
+
+dist_man1_MANS = gpiodetect.man gpioinfo.man gpioget.man gpioset.man gpiofind.man gpiomon.man
+
+%.man: $(top_srcdir)/src/tools/$(*F)
+       help2man $(top_srcdir)/src/tools/$(*F) --include=./template --output=./$@ --no-info
+
+clean-local:
+       rm -f $(dist_man1_MANS)
+
+endif
diff --git a/man/template b/man/template
new file mode 100644 (file)
index 0000000..f1040ff
--- /dev/null
@@ -0,0 +1,7 @@
+[AUTHOR]
+Bartosz Golaszewski <bartekgola@gmail.com>
+
+[REPORTING BUGS]
+Report bugs to:
+    Bartosz Golaszewski <bartekgola@gmail.com>
+    linux-gpio <linux-gpio@vger.kernel.org>