mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +00:00
48585a89c3
Framework (SPF) e-mail sender authentication system. This release of Mail::SPF fully conforms to RFC 4408 and passes the 2006.11 release of the official test-suite <http://www.openspf.org/Test_Suite>. The Mail::SPF source package includes the following additional tools: * spfquery: A command-line tool for performing SPF checks. * spfd: A daemon for services that perform SPF checks frequently. WWW: http://www.openspf.org/ - Koen Martens gmc@sonologic.nl PR: ports/109020 Submitted by: gmc at sonologic.nl
55 lines
1.8 KiB
Makefile
55 lines
1.8 KiB
Makefile
# New ports collection makefile for: p5-Mail-SPF
|
|
# Date created: Thu Feb 8 18:46:25 CET 2007
|
|
# Whom: gmc@sonologic.nl
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Mail-SPF
|
|
PORTVERSION= 2.004
|
|
CATEGORIES= mail perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= Mail
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= gmc@sonologic.nl
|
|
COMMENT= Reference implementation of the RFC 4408 SPF protocol
|
|
|
|
RUN_DEPENDS= ${SITE_PERL}/Net/DNS/Resolver/Programmable.pm:${PORTSDIR}/dns/p5-Net-DNS-Resolver-Programmable \
|
|
${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS \
|
|
${SITE_PERL}/${PERL_ARCH}/version.pm:${PORTSDIR}/devel/p5-version \
|
|
${SITE_PERL}/Error.pm:${PORTSDIR}/lang/p5-Error \
|
|
${SITE_PERL}/${PERL_ARCH}/NetAddr/IP.pm:${PORTSDIR}/net-mgmt/p5-NetAddr-IP \
|
|
${SITE_PERL}/URI.pm:${PORTSDIR}/net/p5-URI \
|
|
${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
PERL_MODBUILD= yes
|
|
CONFIGURE_ARGS= --install_path sbin=${PREFIX}/sbin
|
|
|
|
MAN1= spfquery.1
|
|
MAN3= Mail::SPF.3 Mail::SPF::Mech::PTR.3 Mail::SPF::Mech.3 \
|
|
Mail::SPF::SenderIPAddrMech.3 Mail::SPF::MacroString.3 \
|
|
Mail::SPF::Mech::IP4.3 Mail::SPF::Mech::A.3 \
|
|
Mail::SPF::Request.3 Mail::SPF::Result.3 Mail::SPF::Mod.3 \
|
|
Mail::SPF::Mod::Exp.3 Mail::SPF::Mech::MX.3 \
|
|
Mail::SPF::Server.3 Mail::SPF::Util.3 Mail::SPF::Mech::IP6.3 \
|
|
Mail::SPF::Record.3 Mail::SPF::Mech::Include.3 \
|
|
Mail::SPF::v2::Record.3 Mail::SPF::Mod::Redirect.3 \
|
|
Mail::SPF::Base.3 Mail::SPF::Mech::All.3 Mail::SPF::Term.3 \
|
|
Mail::SPF::v1::Record.3 Mail::SPF::Mech::Exists.3
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/p5-Mail-SPF
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for doc in CHANGES LICENSE README TODO
|
|
${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|