From 48a241b76eec811abc57f7b6cb09e19340fc862c Mon Sep 17 00:00:00 2001 From: edwin Date: Sun, 13 Apr 2003 12:28:23 +0000 Subject: Conditionalize dependencies for moudules included in perl 5.8 Make dependencies on modules included in the perl 5.8 distribution conditional on the perl version installed. While I'm here, remove SITE_PERL and MAN(3)PREFIX. 17 + 29 + 234 = 280 PRs. It's about time he starts doing the work himself! PR: ports/50588 Submitted by: Erwin Lansing --- mail/p5-Net-SMTP-Server/Makefile | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'mail') diff --git a/mail/p5-Net-SMTP-Server/Makefile b/mail/p5-Net-SMTP-Server/Makefile index 88d1cce3627e..68113abf0600 100644 --- a/mail/p5-Net-SMTP-Server/Makefile +++ b/mail/p5-Net-SMTP-Server/Makefile @@ -16,16 +16,22 @@ DISTNAME= SMTP-Server-${PORTVERSION} MAINTAINER= erwin@lansing.dk COMMENT= A native Perl SMTP Server -RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Net/SMTP.pm:${PORTSDIR}/net/p5-Net \ - ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Net/DNS.pm:${PORTSDIR}/net/p5-Net-DNS +BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Net/DNS.pm:${PORTSDIR}/net/p5-Net-DNS +RUN_DEPENDS= ${BUILD_DEPENDS} MASTER_SITE_BACKUP+= http://www.macgyver.org/software/perl/ PERL_CONFIGURE= yes -MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Net::SMTP::Server.3 \ Net::SMTP::Server::Client.3 \ Net::SMTP::Server::Relay.3 -.include +.include + +.if ${PERL_LEVEL} < 500800 +BUILD_DEPENDS+= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Net/SMTP.pm:${PORTSDIR}/net/p5-Net +RUN_DEPENDS+= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Net/SMTP.pm:${PORTSDIR}/net/p5-Net +.endif + +.include -- cgit