diff options
author | Sergey Skvortsov <skv@FreeBSD.org> | 2004-08-11 16:31:49 +0000 |
---|---|---|
committer | Sergey Skvortsov <skv@FreeBSD.org> | 2004-08-11 16:31:49 +0000 |
commit | a92d297d8b0d33c85b833cf36da36ca693908d43 (patch) | |
tree | 7862ea83a406100ee0f047c4cecc82588f6e8e3d | |
parent | Update MASTER_SITES and contents of Makefile & pkg-descr (diff) |
Update port:
* mark as IGNORE if perl >= 5.6.0 (already included)
* clean pkg-descr
* change MAINTAINER to perl@FreeBSD.org
Notes
Notes:
svn path=/head/; revision=115935
-rw-r--r-- | devel/p5-Devel-DProf/Makefile | 11 | ||||
-rw-r--r-- | devel/p5-Devel-DProf/pkg-descr | 16 |
2 files changed, 16 insertions, 11 deletions
diff --git a/devel/p5-Devel-DProf/Makefile b/devel/p5-Devel-DProf/Makefile index 5d93e9d99d60..3b7485bc7931 100644 --- a/devel/p5-Devel-DProf/Makefile +++ b/devel/p5-Devel-DProf/Makefile @@ -12,14 +12,19 @@ MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= Devel PKGNAMEPREFIX= p5-Devel- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= perl@FreeBSD.org COMMENT= A Perl code profiler PERL_CONFIGURE= yes MAN1PREFIX= ${PREFIX} MAN1= dprofpp.1 -MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} MAN3= Devel::DProf.3 -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} >= 500600 +IGNORE= "Version included in perl distribution is newer" +.endif + +.include <bsd.port.post.mk> diff --git a/devel/p5-Devel-DProf/pkg-descr b/devel/p5-Devel-DProf/pkg-descr index d09b7912c068..c3efa0ebc241 100644 --- a/devel/p5-Devel-DProf/pkg-descr +++ b/devel/p5-Devel-DProf/pkg-descr @@ -1,8 +1,8 @@ - The Devel::DProf package is a Perl code profiler. This - will collect information on the execution time of a Perl - script and of the subs in that script. This information - can be used to determine which subroutines are using the - most time and which subroutines are being called most - often. This information can also be used to create an - execution graph of the script, showing subroutine - relationships. +The Devel::DProf package is a Perl code profiler. This will collect +information on the execution time of a Perl script and of the subs in +that script. This information can be used to determine which +subroutines are using the most time and which subroutines are being +called most often. This information can also be used to create an +execution graph of the script, showing subroutine relationships. + +WWW: http://search.cpan.org/dist/DProf/ |