blob: b20c80f2526a1d96069a61315012b98d6e911d34 (
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
36
37
38
39
|
# New ports collection makefile for: Plack::Middleware::Session
# Date created: 17 Mar 2010
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= Plack-Middleware-Session
PORTVERSION= 0.14
CATEGORIES= www perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= kuriyama@FreeBSD.org
COMMENT= Perl extension for session management middleware for Plack
RUN_DEPENDS= \
p5-Digest-SHA1>0:${PORTSDIR}/security/p5-Digest-SHA1 \
p5-Plack>=0.9910:${PORTSDIR}/www/p5-Plack
BUILD_DEPENDS= ${RUN_DEPENDS}
TEST_DEPENDS= \
p5-Test-Exception>0:${PORTSDIR}/devel/p5-Test-Exception \
p5-Test-Requires>0:${PORTSDIR}/devel/p5-Test-Requires \
p5-Test-TCP>0:${PORTSDIR}/devel/p5-Test-TCP
PERL_CONFIGURE= yes
MAN3= Plack::Middleware::Session.3 \
Plack::Middleware::Session::Cookie.3 \
Plack::Session.3 \
Plack::Session::State.3 \
Plack::Session::State::Cookie.3 \
Plack::Session::Store.3 \
Plack::Session::Store::Cache.3 \
Plack::Session::Store::DBI.3 \
Plack::Session::Store::File.3 \
Plack::Session::Store::Null.3
.include <bsd.port.mk>
|