diff options
author | Frederic Culot <culot@FreeBSD.org> | 2011-07-17 07:28:22 +0000 |
---|---|---|
committer | Frederic Culot <culot@FreeBSD.org> | 2011-07-17 07:28:22 +0000 |
commit | 5f328e3fef5a1a98ecab4c3e89c536cab21ad4bd (patch) | |
tree | 5a711afef962688f9e218e0002aa6c13752162c5 | |
parent | b379d26e769062755c0c768a2db37429897f7877 (diff) |
Notes
-rw-r--r-- | devel/p5-Dist-CheckConflicts/Makefile | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/devel/p5-Dist-CheckConflicts/Makefile b/devel/p5-Dist-CheckConflicts/Makefile index 8bd2e758b183..d9efad5b7192 100644 --- a/devel/p5-Dist-CheckConflicts/Makefile +++ b/devel/p5-Dist-CheckConflicts/Makefile @@ -9,20 +9,28 @@ PORTNAME= Dist-CheckConflicts PORTVERSION= 0.02 CATEGORIES= devel perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= ../by-authors/id/D/DO/DOY +MASTER_SITE_SUBDIR= CPAN:DOY PKGNAMEPREFIX= p5- MAINTAINER= milki@rescomp.berkeley.edu COMMENT= Declare version conflicts for your dist +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + RUN_DEPENDS= p5-List-MoreUtils>=0.12:${PORTSDIR}/lang/p5-List-MoreUtils \ - p5-Sub-Exporter>=0:${PORTSDIR}/devel/p5-Sub-Exporter + p5-Sub-Exporter>=0:${PORTSDIR}/devel/p5-Sub-Exporter + +TEST_DEPENDS= p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal + +.include <bsd.port.pre.mk> -TEST_DEPENDS= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple \ - p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal \ +.if ${PERL_LEVEL} < 501001 +TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple +.endif PERL_CONFIGURE= YES MAN3= Dist::CheckConflicts.3 -.include <bsd.port.mk> +.include <bsd.port.post.mk> |