2003-02-05 10:45:20 +01:00
|
|
|
# New ports collection makefile for: p5-Test-Class
|
|
|
|
# Date created: January 27th 2003
|
2003-06-12 18:41:16 +02:00
|
|
|
# Whom: Erwin Lansing <erwin@FreeBSD.org>
|
2003-02-05 10:45:20 +01:00
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= Test-Class
|
2005-02-22 10:05:49 +01:00
|
|
|
PORTVERSION= 0.11
|
2003-02-05 10:45:20 +01:00
|
|
|
CATEGORIES= devel perl5
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
|
|
MASTER_SITE_SUBDIR= Test
|
|
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
|
2005-02-15 12:26:29 +01:00
|
|
|
MAINTAINER= perl@FreeBSD.org
|
2003-02-21 12:23:04 +01:00
|
|
|
COMMENT= Test::Class - Easily create test classes in an xUnit style
|
2003-02-05 10:45:20 +01:00
|
|
|
|
2003-10-24 14:05:09 +02:00
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/Test/Builder/Tester.pm:${PORTSDIR}/devel/p5-Test-Builder-Tester \
|
|
|
|
${SITE_PERL}/Test/Exception.pm:${PORTSDIR}/devel/p5-Test-Exception \
|
2005-02-15 12:26:29 +01:00
|
|
|
${SITE_PERL}/Devel/Symdump.pm:${PORTSDIR}/devel/p5-Devel-Symdump \
|
2003-10-24 14:05:09 +02:00
|
|
|
${SITE_PERL}/Test/Differences.pm:${PORTSDIR}/devel/p5-Test-Differences
|
2003-02-05 10:45:20 +01:00
|
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
|
|
|
|
MAN3= Test::Class.3
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
##
|
|
|
|
## this port requires PERL 5.6.x or later
|
|
|
|
##
|
2003-02-12 23:36:10 +01:00
|
|
|
.if ${PERL_LEVEL} < 500601
|
|
|
|
IGNORE= Port requires perl 5.6.x or later. Install lang/perl5 then try again
|
2003-02-05 10:45:20 +01:00
|
|
|
.endif
|
|
|
|
|
2003-04-13 14:28:23 +02:00
|
|
|
.if ${PERL_LEVEL} < 500800
|
2003-10-24 14:05:09 +02:00
|
|
|
BUILD_DEPENDS+= ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple \
|
|
|
|
${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable \
|
|
|
|
${SITE_PERL}/Class/ISA.pm:${PORTSDIR}/devel/p5-Class-ISA \
|
|
|
|
${SITE_PERL}/Attribute/Handlers.pm:${PORTSDIR}/devel/p5-Attribute-Handlers
|
|
|
|
RUN_DEPENDS+= ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple \
|
|
|
|
${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable \
|
|
|
|
${SITE_PERL}/Class/ISA.pm:${PORTSDIR}/devel/p5-Class-ISA \
|
|
|
|
${SITE_PERL}/Attribute/Handlers.pm:${PORTSDIR}/devel/p5-Attribute-Handlers
|
2003-04-13 14:28:23 +02:00
|
|
|
.endif
|
|
|
|
|
2003-02-05 10:45:20 +01:00
|
|
|
.include <bsd.port.post.mk>
|