diff options
author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2024-01-21 19:22:01 +0100 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2024-01-21 20:25:24 +0100 |
commit | 745b43cb922f64b62d0d57de155e4f57c0fadfb3 (patch) | |
tree | e42044b137b3804d8d76f53478bf3ecaba16f838 | |
parent | 2b9de094fcfffebbc284b53157ad729e7f7a64e5 (diff) | |
download | freebsd-ports-745b43cb922f64b62d0d57de155e4f57c0fadfb3.zip |
emulators/cingb: Sanitize MANPREFIX
Approved by: portmgr (blanket)
-rw-r--r-- | emulators/cingb/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/cingb/Makefile b/emulators/cingb/Makefile index 7e95a9764614..2c9acb16e1b7 100644 --- a/emulators/cingb/Makefile +++ b/emulators/cingb/Makefile @@ -1,7 +1,7 @@ PORTNAME= cingb DISTVERSIONPREFIX= v DISTVERSION= 0.32 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators MAINTAINER= 0mp@FreeBSD.org @@ -23,7 +23,7 @@ LDFLAGS+= -lpthread PLIST_FILES= bin/cingb \ bin/cingb_conf \ - man/man6/cingb.6.gz + share/man/man6/cingb.6.gz PORTDOCS= README.FAQ README.md OPTIONS_DEFINE= DEBUG DOCS @@ -62,7 +62,7 @@ do-configure: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/cingb ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/cingb_conf ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/man/freebsd/cingb.6 ${STAGEDIR}${MANPREFIX}/man/man6/ + ${INSTALL_MAN} ${WRKSRC}/man/freebsd/cingb.6 ${STAGEDIR}${PREFIX}/share/man/man6/ do-install-DEBUG-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} |