blob: 9d4770c33f0a9cdecb94c84731c3e44078a59bff (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# ex:ts=8
# New ports collection makefile for: p5-libservlet
# Date created: Jul 28, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= libservlet
PORTVERSION= 0.9.2
CATEGORIES= www perl5
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMEPREFIX= p5-
MAINTAINER= ports@FreeBSD.org
COMMENT= Servlet API for Perl
BUILD_DEPENDS= ${SITE_PERL}/Exception/Class.pm:${PORTSDIR}/devel/p5-Exception-Class
RUN_DEPENDS= ${BUILD_DEPENDS}
PERL_CONFIGURE= yes
MAN3= Servlet.3 \
Servlet::Http::Cookie.3 \
Servlet::Http::HttpServlet.3 \
Servlet::Http::HttpServletRequest.3 \
Servlet::Http::HttpServletRequestWrapper.3 \
Servlet::Http::HttpServletResponse.3 \
Servlet::Http::HttpServletResponseWrapper.3 \
Servlet::Http::HttpSession.3 \
Servlet::Http::HttpSessionActivationListener.3 \
Servlet::Http::HttpSessionAttributesListener.3 \
Servlet::Http::HttpSessionBindingEvent.3 \
Servlet::Http::HttpSessionBindingListener.3 \
Servlet::Http::HttpSessionEvent.3 \
Servlet::Http::HttpSessionListener.3 \
Servlet::Util::Event.3 \
Servlet::Util::Exception.3 \
Servlet::Util::Principal.3 \
Servlet::Filter.3 \
Servlet::FilterChain.3 \
Servlet::GenericServlet.3 \
Servlet::RequestDispatcher.3 \
Servlet::Servlet.3 \
Servlet::ServletContext.3 \
Servlet::ServletContextAttributeEvent.3 \
Servlet::ServletContextAttributeListener.3 \
Servlet::ServletContextEvent.3 \
Servlet::ServletContextListener.3 \
Servlet::ServletException.3 \
Servlet::ServletInputStream.3 \
Servlet::ServletOutputStream.3 \
Servlet::ServletRequest.3 \
Servlet::ServletRequestWrapper.3 \
Servlet::ServletResponse.3 \
Servlet::ServletResponseWrapper.3 \
Servlet::SingleThreadModel.3 \
Servlet::UnavailableException.3 \
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 500601
IGNORE= "needs at least perl 5.6.1 to build"
.endif
.include <bsd.port.post.mk>
|