diff options
author | leeym <leeym@FreeBSD.org> | 2008-10-26 00:43:20 +0800 |
---|---|---|
committer | leeym <leeym@FreeBSD.org> | 2008-10-26 00:43:20 +0800 |
commit | 20b5ec32290691044c9232a45b746b3d684cb204 (patch) | |
tree | 7a656068172c588866d83d1addc8de4c35743cba /mail/p5-Net-SMTP-TLS | |
parent | 6f5ba8479469262b6b297970a98ccf10533857cc (diff) | |
download | freebsd-ports-gnome-20b5ec32290691044c9232a45b746b3d684cb204.tar.gz freebsd-ports-gnome-20b5ec32290691044c9232a45b746b3d684cb204.tar.zst freebsd-ports-gnome-20b5ec32290691044c9232a45b746b3d684cb204.zip |
- fix dependencies
- bump PORTREVISION
PR: 127758
Submitted by: leeym
Approved by: maintainer timeout
Diffstat (limited to 'mail/p5-Net-SMTP-TLS')
-rw-r--r-- | mail/p5-Net-SMTP-TLS/Makefile | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/mail/p5-Net-SMTP-TLS/Makefile b/mail/p5-Net-SMTP-TLS/Makefile index fbb977822b1d..7807df8a5ec1 100644 --- a/mail/p5-Net-SMTP-TLS/Makefile +++ b/mail/p5-Net-SMTP-TLS/Makefile @@ -7,6 +7,7 @@ PORTNAME= Net-SMTP-TLS PORTVERSION= 0.12 +PORTREVISION= 1 CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,13 +15,18 @@ PKGNAMEPREFIX= p5- MAINTAINER= gslin@gslin.org COMMENT= An SMTP client supporting TLS and AUTH -BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 \ - ${SITE_PERL}/${PERL_ARCH}/Net/SSLeay.pm:${PORTSDIR}/security/p5-Net-SSLeay \ - ${SITE_PERL}/Digest/HMAC_MD5.pm:${PORTSDIR}/security/p5-Digest-HMAC \ - ${SITE_PERL}/IO/Socket/SSL.pm:${PORTSDIR}/security/p5-IO-Socket-SSL +RUN_DEPENDS= p5-Digest-HMAC>=0:${PORTSDIR}/security/p5-Digest-HMAC \ + p5-IO-Socket-SSL>=0:${PORTSDIR}/security/p5-IO-Socket-SSL \ + p5-Net-SSLeay>=0:${PORTSDIR}/security/p5-Net-SSLeay PERL_CONFIGURE= yes MAN3= Net::SMTP::TLS.3 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500703 +RUN_DEPENDS+= p5-MIME-Base64>=0:${PORTSDIR}/converters/p5-MIME-Base64 +.endif + +.include <bsd.port.post.mk> |