30d7d310d3
- Mark as IGNORE with perl > 5.16 devel/p5-Devel-Profiler need dprofpp utility which part of Devel::DProf which has been removed from the Perl core since Perl 5.16 and Devel::DProf also is deprecated in favor of Devel::NYTProf So it's normal for this port to suicide after perl 5.16 as default Perl version in tree.
25 lines
550 B
Makefile
25 lines
550 B
Makefile
# Created by: Sergey Skvortsov <skv@protey.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Devel-Profiler
|
|
PORTVERSION= 0.04
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Perl profiler compatible with dprofpp
|
|
|
|
BUILD_DEPENDS= p5-Time-HiRes>=0:${PORTSDIR}/devel/p5-Time-HiRes
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PERL_LEVEL} > 501600
|
|
IGNORE= Devel::DProf has been removed from the Perl core, use Devel::NYTProf instead
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|