mail/dot-forward: remove cat files

cat files have been removed from base long ago, brings no values in 2023
while here remove usage of MANPREFIX and move manpages to share/man
This commit is contained in:
Baptiste Daroussin 2024-01-09 16:02:40 +01:00
parent e235318f91
commit 73574bb9bc
1 changed files with 3 additions and 7 deletions

View File

@ -1,5 +1,6 @@
PORTNAME= dot-forward
PORTVERSION= 0.71
PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= http://cr.yp.to/software/
@ -12,8 +13,7 @@ USES= gmake groff
ALL_TARGET= default
PLIST_FILES= bin/dot-forward \
man/man1/dot-forward.1.gz \
man/cat1/dot-forward.0.gz
share/man/man1/dot-forward.1.gz
do-install:
.for binfile in dot-forward
@ -21,11 +21,7 @@ do-install:
.endfor
.for manfile in dot-forward.1
${INSTALL_MAN} ${WRKSRC}/${manfile} ${STAGEDIR}${PREFIX}/man/man1/${manfile}
.endfor
.for catfile in dot-forward.0
${INSTALL_MAN} ${WRKSRC}/${catfile} ${STAGEDIR}${MAN1PREFIX}/man/cat1/${catfile}
${INSTALL_MAN} ${WRKSRC}/${manfile} ${STAGEDIR}${PREFIX}/share/man/man1/${manfile}
.endfor
.include <bsd.port.mk>