diff options
Diffstat (limited to 'mail/p5-Mail-SPF/Makefile')
-rw-r--r-- | mail/p5-Mail-SPF/Makefile | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/mail/p5-Mail-SPF/Makefile b/mail/p5-Mail-SPF/Makefile new file mode 100644 index 00000000000..c5d8f7e3dd5 --- /dev/null +++ b/mail/p5-Mail-SPF/Makefile @@ -0,0 +1,54 @@ +# 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> |