git: 579e5a9c212e - main - misc/ondir: Update manpages path
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 08 Jan 2024 16:44:47 UTC
The branch main has been updated by garga:
URL: https://cgit.FreeBSD.org/ports/commit/?id=579e5a9c212e998c32fe9969c6ed12f17bdb4623
commit 579e5a9c212e998c32fe9969c6ed12f17bdb4623
Author: Renato Botelho <garga@FreeBSD.org>
AuthorDate: 2024-01-08 15:08:46 +0000
Commit: Renato Botelho <garga@FreeBSD.org>
CommitDate: 2024-01-08 16:43:51 +0000
misc/ondir: Update manpages path
Move manpages to ${PREFIX}/share/man
Sponsored by: Rubicon Communications, LLC ("Netgate")
---
misc/ondir/Makefile | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/misc/ondir/Makefile b/misc/ondir/Makefile
index c6a138f6049b..63cb2d2ca4dd 100644
--- a/misc/ondir/Makefile
+++ b/misc/ondir/Makefile
@@ -1,6 +1,6 @@
PORTNAME= ondir
PORTVERSION= 0.2.4
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= misc
MASTER_SITES= http://swapoff.org/files/${PORTNAME}/
@@ -17,10 +17,11 @@ MAKE_ARGS= PREFIX="${PREFIX}" \
CFLAGS="${CFLAGS} -DVERSION=\\\"${PORTVERSION}\\\" -DGLOBAL_CONF=\\\"${PREFIX}/etc/ondirrc\\\"" \
LDFLAGS="${LDFLAGS}"
-PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
+PLIST_FILES= bin/${PORTNAME} share/man/man1/${PORTNAME}.1.gz
do-install:
- ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1
+ ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 \
+ ${STAGEDIR}${PREFIX}/share/man/man1
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>