diff --git a/databases/mytop/Makefile b/databases/mytop/Makefile index dcd6c1f24e5b..e0513e31192f 100644 --- a/databases/mytop/Makefile +++ b/databases/mytop/Makefile @@ -7,6 +7,7 @@ PORTNAME= mytop PORTVERSION= 1.4 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://jeremy.zawodny.com/mysql/mytop/ @@ -15,15 +16,23 @@ COMMENT= A top clone for MySQL RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Term/ReadKey.pm:${PORTSDIR}/devel/p5-Term-ReadKey \ ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql \ - ${SITE_PERL}/Term/ANSIColor.pm:${PORTSDIR}/devel/p5-Term-ANSIColor \ - ${SITE_PERL}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes + ${SITE_PERL}/Term/ANSIColor.pm:${PORTSDIR}/devel/p5-Term-ANSIColor PERL_CONFIGURE= yes -USE_REINPLACE= yes MAN1= mytop.1 +.include + +.if ${PERL_LEVEL} < 500805 +RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes +.endif + +.if ${PERL_LEVEL} < 500600 +USE_REINPLACE= yes + post-patch: @${REINPLACE_CMD} -e 's, -P , B<-P> ,g' ${WRKSRC}/mytop +.endif -.include +.include