git: 0cffa80c9628 - main - security/oidentd: Move man pages to share/man
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 21 Mar 2024 20:23:22 UTC
The branch main has been updated by eduardo:
URL: https://cgit.FreeBSD.org/ports/commit/?id=0cffa80c9628ae97a0aabf6fb23c46f7d7635982
commit 0cffa80c9628ae97a0aabf6fb23c46f7d7635982
Author: Nuno Teixeira <eduardo@FreeBSD.org>
AuthorDate: 2024-03-21 17:53:15 +0000
Commit: Nuno Teixeira <eduardo@FreeBSD.org>
CommitDate: 2024-03-21 20:22:57 +0000
security/oidentd: Move man pages to share/man
Approved by: portmgr (blanket)
---
security/oidentd/Makefile | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/security/oidentd/Makefile b/security/oidentd/Makefile
index 682d3f042f3d..5ccbfc57bc30 100644
--- a/security/oidentd/Makefile
+++ b/security/oidentd/Makefile
@@ -1,5 +1,6 @@
PORTNAME= oidentd
DISTVERSION= 2.5.1
+PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= https://files.janikrabe.com/pub/oidentd/releases/${DISTVERSION}/
@@ -18,7 +19,7 @@ PLIST_FILES= sbin/oidentd etc/oidentd.conf.sample \
etc/oidentd_masq.conf.sample
MANPAGES= oidentd.conf.5 oidentd_masq.conf.5 oidentd.8
.for man in ${MANPAGES}
-PLIST_FILES+= man/man${man:E}/${man}.gz
+PLIST_FILES+= share/man/man${man:E}/${man}.gz
.endfor
CONFIGURE_ARGS= --disable-masq
@@ -29,7 +30,7 @@ do-install:
${INSTALL_DATA} ${FILESDIR}/oidentd_masq.conf.sample ${STAGEDIR}${PREFIX}/etc
.for MANFILE in ${MANPAGES}
@${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},g' ${WRKSRC}/doc/${MANFILE}
- ${INSTALL_MAN} ${WRKSRC}/doc/${MANFILE} ${STAGEDIR}${PREFIX}/man/man${MANFILE:E}
+ ${INSTALL_MAN} ${WRKSRC}/doc/${MANFILE} ${STAGEDIR}${PREFIX}/share/man/man${MANFILE:E}
.endfor
.include <bsd.port.mk>