diff options
author | Yen-Ming Lee <leeym@FreeBSD.org> | 2006-04-20 18:42:09 +0000 |
---|---|---|
committer | Yen-Ming Lee <leeym@FreeBSD.org> | 2006-04-20 18:42:09 +0000 |
commit | c8e82e9932a497826d80757c6bffadebd0c3fe80 (patch) | |
tree | b0e61578909220ce48949d36e7fa9ff7ac48bfd4 /devel/p5-Module-Build | |
parent | 84b712c9bce649bcec3d0494a24b7fc7a7f1b6dc (diff) | |
download | ports-c8e82e9932a497826d80757c6bffadebd0c3fe80.tar.gz ports-c8e82e9932a497826d80757c6bffadebd0c3fe80.zip |
- fix missing MAN3 problem under old perl
Noticed by: kris
Notes
Notes:
svn path=/head/; revision=160034
Diffstat (limited to 'devel/p5-Module-Build')
-rw-r--r-- | devel/p5-Module-Build/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/devel/p5-Module-Build/Makefile b/devel/p5-Module-Build/Makefile index 9b5b965453ad..74bf74b1cf1e 100644 --- a/devel/p5-Module-Build/Makefile +++ b/devel/p5-Module-Build/Makefile @@ -16,9 +16,9 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:C/\.(..)$/\1/} MAINTAINER= perl@FreeBSD.org COMMENT= Build and install Perl modules -BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/File/Spec.pm:${PORTSDIR}/devel/p5-PathTools \ +RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/File/Spec.pm:${PORTSDIR}/devel/p5-PathTools \ ${SITE_PERL}/ExtUtils/CBuilder.pm:${PORTSDIR}/devel/p5-ExtUtils-CBuilder -RUN_DEPENDS= ${BUILD_DEPENDS} +BUILD_DEPENDS= ${RUN_DEPENDS} PERL_MODBUILD= yes @@ -34,9 +34,10 @@ post-install: .include <bsd.port.pre.mk> .if ${PERL_LEVEL} > 500600 -BUILD_DEPENDS+= ${SITE_PERL}/ExtUtils/ParseXS.pm:${PORTSDIR}/devel/p5-ExtUtils-ParseXS -BUILD_DEPENDS+= ${SITE_PERL}/Archive/Tar.pm:${PORTSDIR}/archivers/p5-Archive-Tar -BUILD_DEPENDS+= ${SITE_PERL}/YAML.pm:${PORTSDIR}/textproc/p5-YAML +RUN_DEPENDS+= ${SITE_PERL}/ExtUtils/ParseXS.pm:${PORTSDIR}/devel/p5-ExtUtils-ParseXS +RUN_DEPENDS+= ${SITE_PERL}/Archive/Tar.pm:${PORTSDIR}/archivers/p5-Archive-Tar +RUN_DEPENDS+= ${SITE_PERL}/YAML.pm:${PORTSDIR}/textproc/p5-YAML +.endif MAN3= Module::Build.3 \ Module::Build::Base.3 \ @@ -60,9 +61,8 @@ MAN3= Module::Build.3 \ Module::Build::Platform::os2.3 MAN1= config_data.1 -.endif .if ${PERL_LEVEL} < 500805 -BUILD_DEPENDS+= ${SITE_PERL}/Pod/Man.pm:${PORTSDIR}/textproc/p5-podlators +RUN_DEPENDS+= ${SITE_PERL}/Pod/Man.pm:${PORTSDIR}/textproc/p5-podlators .endif .include <bsd.port.post.mk> |