git: eaa4e2748da8 - main - security/bdes: Sanitize MANPREFIX

From: Muhammad Moinur Rahman <bofh_at_FreeBSD.org>
Date: Mon, 22 Jan 2024 00:06:52 UTC
The branch main has been updated by bofh:

URL: https://cgit.FreeBSD.org/ports/commit/?id=eaa4e2748da8148af57e80c1f2672f34bf1ad0bb

commit eaa4e2748da8148af57e80c1f2672f34bf1ad0bb
Author:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2024-01-21 22:55:12 +0000
Commit:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2024-01-22 00:06:43 +0000

    security/bdes: Sanitize MANPREFIX
    
    Approved by:    portmgr (blanket)
---
 security/bdes/Makefile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/security/bdes/Makefile b/security/bdes/Makefile
index 12b7d84a9c13..aa5c7df5758b 100644
--- a/security/bdes/Makefile
+++ b/security/bdes/Makefile
@@ -1,5 +1,6 @@
 PORTNAME=	bdes
 PORTVERSION=	1993
+PORTREVISION=	1
 CATEGORIES=	security
 MASTER_SITES=	http://phobos69.inf.uni-konstanz.de/download/tools/ \
 		LOCAL/brnrd
@@ -13,7 +14,7 @@ LICENSE=	BSD2CLAUSE
 USES=		ssl tar
 WRKSRC=		${WRKDIR}/bdes.src
 
-PLIST_FILES=	bin/bdes man/man1/bdes.1.gz
+PLIST_FILES=	bin/bdes share/man/man1/bdes.1.gz
 
 do-build:
 	cd ${WRKSRC} && ${CC} ${CFLAGS} -I${OPENSSLINC} -c bdes.c
@@ -21,6 +22,6 @@ do-build:
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/bdes ${STAGEDIR}${PREFIX}/bin/bdes
-	${INSTALL_MAN} ${WRKSRC}/bdes.1 ${STAGEDIR}${MANPREFIX}/man/man1/bdes.1
+	${INSTALL_MAN} ${WRKSRC}/bdes.1 ${STAGEDIR}${PREFIX}/share/man/man1/bdes.1
 
 .include <bsd.port.mk>