diff options
author | swills <swills@FreeBSD.org> | 2012-05-19 23:19:26 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2012-05-19 23:19:26 +0800 |
commit | 88e48989c8b29bd404cf6e8f87eb16b85795af85 (patch) | |
tree | 43fb2d2f2007cd9cfad4609b52bc8b4106a739c4 /devel | |
parent | f293bdf23adc581a760d357516b45bdccfa39ea9 (diff) | |
download | freebsd-ports-gnome-88e48989c8b29bd404cf6e8f87eb16b85795af85.tar.gz freebsd-ports-gnome-88e48989c8b29bd404cf6e8f87eb16b85795af85.tar.zst freebsd-ports-gnome-88e48989c8b29bd404cf6e8f87eb16b85795af85.zip |
- Avoid use of SITE_PERL in DEPENDS
- Don't use += when not needed
PR: ports/167307
Approved by: maintainer timeout (lippe, >2 weeks)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/p5-Test-YAML-Meta/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/devel/p5-Test-YAML-Meta/Makefile b/devel/p5-Test-YAML-Meta/Makefile index 3b4b7d53b0cd..82d1806e3ddd 100644 --- a/devel/p5-Test-YAML-Meta/Makefile +++ b/devel/p5-Test-YAML-Meta/Makefile @@ -14,10 +14,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= lippe@FreeBSD.org COMMENT= Validation of the META.yml file in a distribution -BUILD_DEPENDS+= ${SITE_PERL}/Test/YAML/Valid.pm:${PORTSDIR}/devel/p5-Test-YAML-Valid \ - ${SITE_PERL}/Test/Pod.pm:${PORTSDIR}/devel/p5-Test-Pod \ - ${SITE_PERL}/Test/Pod/Coverage.pm:${PORTSDIR}/devel/p5-Test-Pod-Coverage -RUN_DEPENDS+= ${BUILD_DEPENDS} +BUILD_DEPENDS= p5-Test-YAML-Valid>=0:${PORTSDIR}/devel/p5-Test-YAML-Valid \ + p5-Test-Pod>=0:${PORTSDIR}/devel/p5-Test-Pod \ + p5-Test-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Test-Pod-Coverage +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes |