diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2004-08-10 06:14:15 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2004-08-10 06:14:15 +0000 |
commit | 5d6396501ec4bb4e2d3d1adebabaf7cdf14fabde (patch) | |
tree | fb749ae48fec33cccfcd8327b18afc197f47bbe3 /devel/p5-Module-Build | |
parent | c9c43066452c8f8ff357b4e48e4330862ec309ac (diff) |
- Make depedency on p5-podolators conditional with perl-5.8.5.
Approved by: mat (maintainer)
Notes
Notes:
svn path=/head/; revision=115793
Diffstat (limited to 'devel/p5-Module-Build')
-rw-r--r-- | devel/p5-Module-Build/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/devel/p5-Module-Build/Makefile b/devel/p5-Module-Build/Makefile index d3b96b3e5d9a..c394ac3ff394 100644 --- a/devel/p5-Module-Build/Makefile +++ b/devel/p5-Module-Build/Makefile @@ -18,7 +18,6 @@ COMMENT= Build and install Perl modules BUILD_DEPENDS= ${SITE_PERL}/Archive/Tar.pm:${PORTSDIR}/archivers/p5-Archive-Tar \ ${SITE_PERL}/YAML.pm:${PORTSDIR}/textproc/p5-YAML \ - ${SITE_PERL}/Pod/Man.pm:${PORTSDIR}/textproc/p5-podlators \ ${SITE_PERL}/ExtUtils/CBuilder.pm:${PORTSDIR}/devel/p5-ExtUtils-CBuilder RUN_DEPENDS= ${BUILD_DEPENDS} @@ -52,5 +51,8 @@ BUILD_DEPENDS+= ${SITE_PERL}/ExtUtils/ParseXS.pm:${PORTSDIR}/devel/p5-ExtUtils-P .if ${PERL_LEVEL} < 500600 BUILD_DEPENDS+= ${SITE_PERL}/File/Spec.pm:${PORTSDIR}/devel/p5-File-Spec .endif +.if ${PERL_LEVEL} < 500805 +BUILD_DEPENDS+= ${SITE_PERL}/Pod/Man.pm:${PORTSDIR}/textproc/p5-podlators +.endif .include <bsd.port.post.mk> |