Man pages are not installed to correct location.
.1 and .5 man pages should be installed to /usr/share/man/man1 and /usr/share/man/man5 respectively.
The following patch makes the necessary corrections:
--- a/man/CMakeLists.txt
+++ b/man/CMakeLists.txt
@@ -1,4 +1,7 @@
-install(FILES bnbot.1 bnchat.1 bnetd.1 bnetd.conf.5 bnftp.1 bni2tga.1
+install(FILES bnbot.1 bnchat.1 bnetd.1 bnftp.1 bni2tga.1
bnibuild.1 bniextract.1 bnilist.1 bnpass.1 bnpcap.1 bnproxy.1 bnstat.1
- bntext.5 bntrackd.1 tgainfo.1
- DESTINATION ${MANDIR})
+ bntrackd.1 tgainfo.1
+ DESTINATION ${MAN_INSTALL_DIR}/man1)
+
+install(FILES bnetd.conf.5 bntext.5
+ DESTINATION ${MAN_INSTALL_DIR}/man5)
Man pages are not installed to correct location.
.1and.5man pages should be installed to/usr/share/man/man1and/usr/share/man/man5respectively.The following patch makes the necessary corrections: