mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
ea59090fbb
Approved by: portmgr blanket
46 lines
1.0 KiB
Makefile
46 lines
1.0 KiB
Makefile
# Created by: Oliver Eikemeier
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= swaks
|
|
PORTVERSION= 20130209.0
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://jetmore.org/john/code/swaks/
|
|
|
|
MAINTAINER= beat@FreeBSD.org
|
|
COMMENT= Swiss Army Knife SMTP transaction tester
|
|
|
|
LICENSE= GPLv2
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
OPTIONS_DEFINE= PERL_NET_DNS PERL_NET_SSLEAY PERL_AUTHEN_NTLM
|
|
PERL_NET_DNS_DESC= Add MX lookup support
|
|
PERL_NET_SSLEAY_DESC= Add TLS support
|
|
PERL_AUTHEN_NTLM_DESC= Add support for AUTH NTLM
|
|
|
|
USES= perl5
|
|
USE_PERL5= run
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PORT_OPTIONS:MPERL_NET_DNS}
|
|
RUN_DEPENDS+= p5-Net-DNS>=0:${PORTSDIR}/dns/p5-Net-DNS
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPERL_NET_SSLEAY}
|
|
RUN_DEPENDS+= p5-Net-SSLeay>=0:${PORTSDIR}/security/p5-Net-SSLeay
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPERL_AUTHEN_NTLM}
|
|
RUN_DEPENDS+= p5-Authen-NTLM>=0:${PORTSDIR}/security/p5-Authen-NTLM
|
|
.endif
|
|
|
|
do-build:
|
|
@${SED} -e '1s|/usr/bin/perl|${PERL}|' \
|
|
${WRKSRC}/${PORTNAME} > ${WRKSRC}/${PORTNAME}.pl
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.post.mk>
|