1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00

- Fix dependency on converters/p5-MIME-Base64 [1]

- Mark for perl > 5.6.x due to its dependency on p5-MIME-Base64

Submitted by:	pointyhat (kris)
This commit is contained in:
Erwin Lansing 2005-12-05 14:30:07 +00:00
parent 9bed7b635b
commit ccd8b1f710
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=150471

View File

@ -14,7 +14,7 @@ MAINTAINER= trevor@FreeBSD.org
COMMENT= Download e-mail from a Yahoo account to a Berkeley mailbox
RUN_DEPENDS= \
encode-base64:${PORTSDIR}/converters/p5-MIME-Base64 \
${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 \
${SITE_PERL}/IO/Lines.pm:${PORTSDIR}/devel/p5-IO-stringy \
${SITE_PERL}/MIME/Body.pm:${PORTSDIR}/mail/p5-MIME-Tools \
${SITE_PERL}/Mail/Address.pm:${PORTSDIR}/mail/p5-Mail-Tools \
@ -32,6 +32,10 @@ USE_PERL5= yes
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500600
IGNORE= requires Perl 5.6 or newer. Install lang/perl5.8 and try again.
.endif
.if ${PERL_LEVEL} < 500800
RUN_DEPENDS+= ${SITE_PERL}/Net/Cmd.pm:${PORTSDIR}/net/p5-Net
.endif