diff options
author | swills <swills@FreeBSD.org> | 2012-02-21 18:17:26 +0000 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2012-02-21 18:17:26 +0000 |
commit | a65356d01e5d7d4d0133f9474f1236df8f0060ed (patch) | |
tree | 48fa00342eceb3ec2c22124ae5fe412caf7078a4 | |
parent | 862c7b688b17aafc2b80aaabe88502358143462f (diff) | |
download | FreeBSD-ports-a65356d01e5d7d4d0133f9474f1236df8f0060ed.zip FreeBSD-ports-a65356d01e5d7d4d0133f9474f1236df8f0060ed.tar.gz |
- Add BUILD_DEPENDS to silence build warnings
- Add TEST_DEPENDS to enable testing
- Avoid use of SITE_PERL in DEPENDS
-rw-r--r-- | devel/p5-Term-VT102-Boundless/Makefile | 4 | ||||
-rw-r--r-- | www/p5-HTML-FromANSI/Makefile | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/devel/p5-Term-VT102-Boundless/Makefile b/devel/p5-Term-VT102-Boundless/Makefile index e8f3f05..3336e3e 100644 --- a/devel/p5-Term-VT102-Boundless/Makefile +++ b/devel/p5-Term-VT102-Boundless/Makefile @@ -15,7 +15,9 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= A subclass to emulate boundless DEC VT102 terminal -RUN_DEPENDS= ${SITE_PERL}/Term/VT102.pm:${PORTSDIR}/devel/p5-Term-VT102 +BUILD_DEPENDS= p5-Term-VT102>=0:${PORTSDIR}/devel/p5-Term-VT102 +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-use-ok>=0:${PORTSDIR}/devel/p5-Test-use-ok PERL_CONFIGURE= yes diff --git a/www/p5-HTML-FromANSI/Makefile b/www/p5-HTML-FromANSI/Makefile index 0e87740..3eb5190 100644 --- a/www/p5-HTML-FromANSI/Makefile +++ b/www/p5-HTML-FromANSI/Makefile @@ -15,8 +15,10 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Mark up ANSI sequences as HTML -RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/HTML/Entities.pm:${PORTSDIR}/www/p5-HTML-Parser \ - ${SITE_PERL}/Term/VT102/Boundless.pm:${PORTSDIR}/devel/p5-Term-VT102-Boundless +BUILD_DEPENDS= p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser \ + p5-Term-VT102-Boundless>=0:${PORTSDIR}/devel/p5-Term-VT102-Boundless +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-use-ok>=0:${PORTSDIR}/devel/p5-Test-use-ok PERL_CONFIGURE= yes |