freebsd-ports/devel/p5-Any-Moose/Makefile

36 lines
768 B
Makefile
Raw Normal View History

# $FreeBSD$
PORTNAME= Any-Moose
2013-03-03 14:44:53 +01:00
PORTVERSION= 0.21
CATEGORIES= devel perl5
MASTER_SITES= CPAN
2011-05-19 15:16:21 +02:00
MASTER_SITE_SUBDIR= CPAN:SARTAK
PKGNAMEPREFIX= p5-
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= Perl extension for/to use Moose or Mouse modules
#TEST_DEPENDS= p5-Moose>0:${PORTSDIR}/devel/p5-Moose
USES= perl5
USE_PERL5= configure
2013-05-11 15:49:05 +02:00
OPTIONS_DEFINE= MOOSE MOUSE
OPTIONS_DEFAULT= MOUSE
MOOSE_DESC= Use Moose
MOUSE_DESC= Use Mouse
.include <bsd.port.options.mk>
2013-05-11 15:49:05 +02:00
.if ${PORT_OPTIONS:MMOOSE}
BUILD_DEPENDS+= p5-Moose>0:${PORTSDIR}/devel/p5-Moose
RUN_DEPENDS+= p5-Moose>0:${PORTSDIR}/devel/p5-Moose
.endif
2013-05-11 15:49:05 +02:00
.if ${PORT_OPTIONS:MMOUSE}
BUILD_DEPENDS+= p5-Mouse>=0.40:${PORTSDIR}/devel/p5-Mouse
2009-12-15 09:51:48 +01:00
RUN_DEPENDS+= p5-Mouse>=0.40:${PORTSDIR}/devel/p5-Mouse
.endif
.include <bsd.port.mk>