5ffc2c172d
You can run it in the qmail startup script to support all your existing .forward files automatically. Individual users can switch to the .qmail mechanism at their leisure. dot-forward supports forwarding, program deliveries, and comments. It does not support file deliveries or :include:. (However, it recognizes file delivery attempts, and defers delivery to give you a chance to set up a .qmail file.) WWW: http://cr.yp.to/dot-forward.html PR: ports/184480 Submitted by: Uffe Jakobsen <uffe@uffe.org>
36 lines
804 B
Makefile
36 lines
804 B
Makefile
# Created by: Uffe Jakobsen <uffe@uffe.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dot-forward
|
|
PORTVERSION= 0.71
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://cr.yp.to/software/
|
|
|
|
MAINTAINER= uffe@uffe.org
|
|
COMMENT= Dot-forward reads sendmail's .forward files under qmail
|
|
|
|
USES= gmake
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
ALL_TARGET= default
|
|
|
|
PLIST_FILES= bin/dot-forward \
|
|
man/man1/dot-forward.1.gz \
|
|
man/cat1/dot-forward.0.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}/man/man1/${manfile}
|
|
.endfor
|
|
|
|
.for catfile in dot-forward.0
|
|
${INSTALL_MAN} ${WRKSRC}/${catfile} ${STAGEDIR}${MAN1PREFIX}/man/cat1/${catfile}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|