git: 709a5115b2ac - main - math/hexcalc: Sanitize MANPREFIX
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 22 Jan 2024 17:34:37 UTC
The branch main has been updated by bofh: URL: https://cgit.FreeBSD.org/ports/commit/?id=709a5115b2ac067568748e368768c0662c4c1176 commit 709a5115b2ac067568748e368768c0662c4c1176 Author: Muhammad Moinur Rahman <bofh@FreeBSD.org> AuthorDate: 2024-01-22 16:59:29 +0000 Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org> CommitDate: 2024-01-22 17:34:24 +0000 math/hexcalc: Sanitize MANPREFIX Approved by: portmgr (blanket) --- math/hexcalc/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/math/hexcalc/Makefile b/math/hexcalc/Makefile index db9c14a276bc..56858b8f6a9b 100644 --- a/math/hexcalc/Makefile +++ b/math/hexcalc/Makefile @@ -1,6 +1,6 @@ PORTNAME= hexcalc PORTVERSION= 1.11 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MASTER_SITES= http://www.berklix.com/~jhs/ftp/FreeBSD/ports/distfiles/ DISTNAME= ${PORTNAME} @@ -21,12 +21,12 @@ COMMENT= Multi-radix calculator for x11 USES= xorg USE_XORG= ice sm x11 xaw xext xmu xt -PLIST_FILES= bin/hexcalc man/man1/hexcalc.1.gz +PLIST_FILES= bin/hexcalc share/man/man1/hexcalc.1.gz do-install: ${INSTALL_PROGRAM} ${WRKSRC}/hexcalc ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/hexcalc.man \ - ${STAGEDIR}${MANPREFIX}/man/man1/hexcalc.1 + ${STAGEDIR}${PREFIX}/share/man/man1/hexcalc.1 @# The manual installed OK on 9.1-RELEASE without do-install, @# but manual install failed on 9.2-RELEASE & 10.0-RELEASE, @# so I added do-install, which does no harm on 9.1 & 9.2.