34 lines
947 B
Makefile
34 lines
947 B
Makefile
# Created by: Frederic Culot <frederic@culot.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Package-DeprecationManager
|
|
PORTVERSION= 0.15
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= culot@FreeBSD.org
|
|
COMMENT= Manage deprecation warnings for your distribution
|
|
|
|
LICENSE= ART20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= p5-Package-Stash>0:${PORTSDIR}/devel/p5-Package-Stash \
|
|
p5-Params-Util>0:${PORTSDIR}/devel/p5-Params-Util \
|
|
p5-Sub-Install>0:${PORTSDIR}/devel/p5-Sub-Install
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
TEST_DEPENDS= p5-Test-Fatal>0:${PORTSDIR}/devel/p5-Test-Fatal \
|
|
p5-Test-Warnings>0:${PORTSDIR}/devel/p5-Test-Warnings
|
|
|
|
NO_ARCH= yes
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PERL_LEVEL} < 502000
|
|
BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.33:${PORTSDIR}/lang/p5-Scalar-List-Utils
|
|
RUN_DEPENDS+= p5-Scalar-List-Utils>=1.33:${PORTSDIR}/lang/p5-Scalar-List-Utils
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|