mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
73574bb9bc
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
28 lines
629 B
Makefile
28 lines
629 B
Makefile
PORTNAME= dot-forward
|
|
PORTVERSION= 0.71
|
|
PORTREVISION= 1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://cr.yp.to/software/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Dot-forward reads sendmail's .forward files under qmail
|
|
WWW= https://cr.yp.to/dot-forward.html
|
|
|
|
USES= gmake groff
|
|
|
|
ALL_TARGET= default
|
|
|
|
PLIST_FILES= bin/dot-forward \
|
|
share/man/man1/dot-forward.1.gz
|
|
|
|
do-install:
|
|
.for binfile in dot-forward
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${binfile} ${STAGEDIR}${PREFIX}/bin/${binfile}
|
|
.endfor
|
|
|
|
.for manfile in dot-forward.1
|
|
${INSTALL_MAN} ${WRKSRC}/${manfile} ${STAGEDIR}${PREFIX}/share/man/man1/${manfile}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|