freebsd-ports/mail/postfix-postfwd/Makefile
Olli Hauer bdce151e56 - add stage support
- add pkg-plist
- fix LICENSE
- use shebangfix
2014-08-31 14:23:26 +00:00

51 lines
1.4 KiB
Makefile

# Created by: Sahil Tandon <sahil@tandon.net>
# $FreeBSD$
PORTNAME= postfwd
PORTVERSION= 1.35
PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= http://www.${PORTNAME}.org/old/
PKGNAMEPREFIX= postfix-
MAINTAINER= ports@FreeBSD.org
COMMENT= Postfix firewall policy daemon
LICENSE= BSD3CLAUSE
RUN_DEPENDS= p5-Net-DNS>=0:${PORTSDIR}/dns/p5-Net-DNS \
p5-Net-Server>=0:${PORTSDIR}/net/p5-Net-Server \
p5-Storable>=0:${PORTSDIR}/devel/p5-Storable \
p5-Time-HiRes>=0:${PORTSDIR}/devel/p5-Time-HiRes
SUB_FILES= pkg-message
USE_RC_SUBR= ${PORTNAME}
USES= perl5 shebangfix
SHEBANG_LANG= perl
SHEBANG_FILES= sbin/* tools/*.pl tools/hapolicy/*
USE_PERL5= run
NO_BUILD= yes
OPTIONS_DEFINE= EXAMPLES DOCS POSTFWD2
POSTFWD2_DESC= Install postfwd v2 rather than v1
.include <bsd.port.options.mk>
do-install:
.if ${PORT_OPTIONS:MPOSTFWD2}
@${INSTALL_SCRIPT} ${WRKSRC}/sbin/${PORTNAME}2 ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
.else
@${INSTALL_SCRIPT} ${WRKSRC}/sbin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
.endif
@${INSTALL_DATA} ${WRKSRC}/etc/${PORTNAME}.cf.sample ${STAGEDIR}${ETCDIR}
@${INSTALL_MAN} ${WRKSRC}/man/man8/* ${STAGEDIR}${MANPREFIX}/man/man8
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/tools/request.sample ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/plugins/postfwd.plugins.sample ${STAGEDIR}${EXAMPLESDIR}
.include <bsd.port.mk>