mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
# Created by: gmc@sonologic.nl
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Mail-SPF
|
|
PORTVERSION= 2.9.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= mail perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
DISTNAME= ${PORTNAME}-v${PORTVERSION}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Object-oriented implementation of Sender Policy Framework
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
BUILD_DEPENDS= p5-Error>=0:${PORTSDIR}/lang/p5-Error \
|
|
p5-Net-DNS>=0.62:${PORTSDIR}/dns/p5-Net-DNS \
|
|
p5-Net-DNS-Resolver-Programmable>=0.003:${PORTSDIR}/dns/p5-Net-DNS-Resolver-Programmable \
|
|
p5-NetAddr-IP>=4:${PORTSDIR}/net-mgmt/p5-NetAddr-IP \
|
|
p5-URI>=1.13:${PORTSDIR}/net/p5-URI
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
TEST_DEPENDS= p5-Test-Pod>=1:${PORTSDIR}/devel/p5-Test-Pod
|
|
|
|
CONFLICTS_INSTALL= p5-Mail-SPF-Query-[0-9]*
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
CONFIGURE_ARGS= --install_path sbin=${PREFIX}/sbin
|
|
USE_PERL5= modbuild
|
|
USES= perl5 shebangfix
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/p5-Mail-SPF
|
|
PORTDOCS= CHANGES README TODO
|
|
|
|
SHEBANG_FILES= bin/spfquery sbin/spfd
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-patch:
|
|
@${MV} ${WRKSRC}/sbin/spfd ${WRKSRC}/sbin/spfd.pl
|
|
@${MV} ${WRKSRC}/bin/spfquery ${WRKSRC}/bin/spfquery.pl
|
|
@${REINPLACE_CMD} -e 's|spfd|&.pl|; s|spfquery|&.pl|' ${WRKSRC}/Build.PL ${WRKSRC}/MANIFEST ${WRKSRC}/README
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}/
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|