Date: Sun, 21 Jan 2024 11:54:19 GMT From: Emanuel Haupt <ehaupt@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 12a45e7f8df3 - main - editors/dhex: Move manpages to share/man Message-ID: <202401211154.40LBsJc5005411@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by ehaupt: URL: https://cgit.FreeBSD.org/ports/commit/?id=12a45e7f8df35afa196e1c1d9634dbf06f4ada9e commit 12a45e7f8df35afa196e1c1d9634dbf06f4ada9e Author: Emanuel Haupt <ehaupt@FreeBSD.org> AuthorDate: 2024-01-21 11:54:10 +0000 Commit: Emanuel Haupt <ehaupt@FreeBSD.org> CommitDate: 2024-01-21 11:54:15 +0000 editors/dhex: Move manpages to share/man --- editors/dhex/Makefile | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/editors/dhex/Makefile b/editors/dhex/Makefile index 419dbb73cc94..278b71bf8865 100644 --- a/editors/dhex/Makefile +++ b/editors/dhex/Makefile @@ -1,5 +1,6 @@ PORTNAME= dhex -PORTVERSION= 0.69 +DISTVERSION= 0.69 +PORTREVISION= 1 CATEGORIES= editors MASTER_SITES= http://www.dettus.net/dhex/ \ LOCAL/ehaupt @@ -16,14 +17,17 @@ USES= ncurses MANPAGE1= dhex.1 MANPAGE5= dhexrc.5 dhex_markers.5 dhex_searchlog.5 -PLIST_FILES= bin/dhex man/man1/dhex.1.gz man/man5/dhex_markers.5.gz \ - man/man5/dhex_searchlog.5.gz man/man5/dhexrc.5.gz +PLIST_FILES= bin/dhex \ + share/man/man1/dhex.1.gz \ + share/man/man5/dhex_markers.5.gz \ + share/man/man5/dhex_searchlog.5.gz \ + share/man/man5/dhexrc.5.gz do-install: ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/${MANPAGE1} ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/${MANPAGE1} ${STAGEDIR}${MANPREFIX}/share/man/man1 .for f in ${MANPAGE5} - ${INSTALL_MAN} ${WRKSRC}/${f} ${STAGEDIR}${MANPREFIX}/man/man5 + ${INSTALL_MAN} ${WRKSRC}/${f} ${STAGEDIR}${MANPREFIX}/share/man/man5 .endfor .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202401211154.40LBsJc5005411>