mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
ad3a80d0f3
-Add SHA256 ChangeLog: - Fixed inifinte recursion when adding comparators into bags. That whole area is unpleasant - conceptually as well as implementation-wise. Comparators no longer inherit a compare method, so we only call the specialised compare if it exists, otherwise we just do normal deep comparison. - Removed a debugging print. Noticed by: edwin@
33 lines
833 B
Makefile
33 lines
833 B
Makefile
# New ports collection makefile for: p5-Test-Deep
|
|
# Date created: May 12th 2004
|
|
# Whom: Alex Kapranoff <alex@kapranoff.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Test-Deep
|
|
PORTVERSION= 0.093
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= Test
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= az@FreeBSD.org
|
|
COMMENT= Test data structures for differences deeply
|
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/Test/NoWarnings.pm:${PORTSDIR}/devel/p5-Test-NoWarnings \
|
|
${SITE_PERL}/Test/Tester.pm:${PORTSDIR}/devel/p5-Test-Tester \
|
|
${SITE_PERL}/${PERL_ARCH}/Scalar/Util.pm:${PORTSDIR}/lang/p5-Scalar-List-Utils
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
PERL_CONFIGURE= yes
|
|
INSTALL_TARGET= pure_install
|
|
|
|
MAN3= Test::Deep.3
|
|
|
|
post-patch:
|
|
@${PERL} -i -pe 'm/INSTALLDIRS\s+=>/ and $$_ = ""' \
|
|
${WRKSRC}/Makefile.PL
|
|
|
|
.include <bsd.port.mk>
|