diff options
author | daichi <daichi@FreeBSD.org> | 2003-08-19 05:49:57 +0000 |
---|---|---|
committer | daichi <daichi@FreeBSD.org> | 2003-08-19 05:49:57 +0000 |
commit | 81ec59a28424fcc31f5f15cfba1ac0224b1a23f6 (patch) | |
tree | a354ac88b8982f89c66fbbcf3196a53a46cac7fe /security | |
parent | fb85175a40d3e590a6d22bf1e8964f5ddf6e24ca (diff) | |
download | FreeBSD-ports-81ec59a28424fcc31f5f15cfba1ac0224b1a23f6.zip FreeBSD-ports-81ec59a28424fcc31f5f15cfba1ac0224b1a23f6.tar.gz |
update security/p5-Authen-Radius:
- devel/p5-IO is already included in perl 5.6.x and later
PR: 55698
Submitted by: Lars Thegler <lars@thegler.dk>
Diffstat (limited to 'security')
-rw-r--r-- | security/p5-Authen-Radius/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/security/p5-Authen-Radius/Makefile b/security/p5-Authen-Radius/Makefile index 6885892..e3bcb30 100644 --- a/security/p5-Authen-Radius/Makefile +++ b/security/p5-Authen-Radius/Makefile @@ -7,6 +7,7 @@ PORTNAME= Authen-Radius PORTVERSION= 0.09 +PORTREVISION= 1 CATEGORIES= security perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Authen @@ -17,11 +18,17 @@ MAINTAINER= ports@FreeBSD.org COMMENT= A perl5 module to provide simple Radius client facilities BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \ - ${SITE_PERL}/Data/HexDump.pm:${PORTSDIR}/devel/p5-Data-HexDump \ - ${SITE_PERL}/${PERL_ARCH}/IO.pm:${PORTSDIR}/devel/p5-IO + ${SITE_PERL}/Data/HexDump.pm:${PORTSDIR}/devel/p5-Data-HexDump RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= yes MAN3= Authen::Radius.3 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500600 +BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/IO.pm:${PORTSDIR}/devel/p5-IO +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/IO.pm:${PORTSDIR}/devel/p5-IO +.endif + +.include <bsd.port.post.mk> |