blob: 876a2036c83c7b416afac795ac125c05d7c3a711 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# New ports collection makefile for: Any::Moose
# Date created: 23 Feb 2009
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= Any-Moose
PORTVERSION= 0.04
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= ../../authors/id/S/SA/SARTAK
PKGNAMEPREFIX= p5-
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= Perl extension for/to use Moose or Mouse modules
PERL_CONFIGURE= yes
MAN3= Any::Moose.3
OPTIONS= MOOSE "Use Moose" off \
MOUSE "Use Mouse" on
.include <bsd.port.pre.mk>
.if defined(WITH_MOOSE)
RUN_DEPENDS+= p5-Moose>0:${PORTSDIR}/devel/p5-Moose
.endif
.if defined(WITH_MOUSE)
RUN_DEPENDS+= p5-Mouse>=0.15:${PORTSDIR}/devel/p5-Mouse
.endif
.include <bsd.port.post.mk>
|