1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
commit 64e2246f20c1d2ab3dfae93c3f67b2920f532943
Author: François Trahay <francois.trahay@telecom-sudparis.eu>
Date: Mon Aug 22 13:42:43 2022 +0200
install man pages
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 852843f9..1a416821 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -184,6 +184,9 @@ add_subdirectory (test/unit_tests)
include(PrintOpts)
+set(EZTRACE_MAN_PAGES ${CMAKE_CURRENT_SOURCE_DIR}/doc/man/)
+install(DIRECTORY ${EZTRACE_MAN_PAGES} DESTINATION "${CMAKE_INSTALL_MANDIR}")
+
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/eztrace.pc.in
${CMAKE_CURRENT_BINARY_DIR}/eztrace.pc)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/eztrace.pc DESTINATION "${INSTALL_PKGCONFIG_DIR}")
diff --git a/doc/man/eztrace.1 b/doc/man/man1/eztrace.1
similarity index 94%
rename from doc/man/eztrace.1
rename to doc/man/man1/eztrace.1
index 9ab21482..a2b82b74 100644
--- a/doc/man/eztrace.1
+++ b/doc/man/man1/eztrace.1
@@ -38,4 +38,4 @@ Report eztrace bugs to https://gitlab.com/eztrace/eztrace
.br
EZTrace home page: <https://eztrace.gitlab.io/eztrace>
.SH AUTHOR
-Francois Trahay (francois.trahay@telecom-sduparis.eu)
+Francois Trahay (francois.trahay@telecom-sudparis.eu)
diff --git a/doc/man/eztrace.preload.1 b/doc/man/man1/eztrace.preload.1
similarity index 95%
rename from doc/man/eztrace.preload.1
rename to doc/man/man1/eztrace.preload.1
index d9d30c6a..61783e0c 100644
--- a/doc/man/eztrace.preload.1
+++ b/doc/man/man1/eztrace.preload.1
@@ -51,4 +51,4 @@ Report eztrace bugs to https://gitlab.com/eztrace/eztrace
.br
EZTrace home page: <https://eztrace.gitlab.io/eztrace>
.SH AUTHOR
-Francois Trahay (francois.trahay@telecom-sduparis.eu)
+Francois Trahay (francois.trahay@telecom-sudparis.eu)
diff --git a/doc/man/eztrace_avail.1 b/doc/man/man1/eztrace_avail.1
similarity index 95%
rename from doc/man/eztrace_avail.1
rename to doc/man/man1/eztrace_avail.1
index 4f66d493..d3c1dd50 100644
--- a/doc/man/eztrace_avail.1
+++ b/doc/man/man1/eztrace_avail.1
@@ -36,4 +36,4 @@ Report eztrace bugs to https://gitlab.com/eztrace/eztrace
.br
EZTrace home page: <https://eztrace.gitlab.io/eztrace>
.SH AUTHOR
-Francois Trahay (francois.trahay@telecom-sduparis.eu)
+Francois Trahay (francois.trahay@telecom-sudparis.eu)
diff --git a/doc/man/eztrace_cc.1 b/doc/man/man1/eztrace_cc.1
similarity index 91%
rename from doc/man/eztrace_cc.1
rename to doc/man/man1/eztrace_cc.1
index 2dac32d7..c7442431 100644
--- a/doc/man/eztrace_cc.1
+++ b/doc/man/man1/eztrace_cc.1
@@ -17,4 +17,4 @@ Report eztrace bugs to https://gitlab.com/eztrace/eztrace
.br
EZTrace home page: <https://eztrace.gitlab.io/eztrace>
.SH AUTHOR
-Francois Trahay (francois.trahay@telecom-sduparis.eu)
+Francois Trahay (francois.trahay@telecom-sudparis.eu)
|