mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
add p5-libservlet
Servlet API for Perl
This commit is contained in:
parent
c52a62a4db
commit
4fc97ee6cb
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=45558
@ -239,6 +239,7 @@
|
||||
SUBDIR += p5-WWW-Search
|
||||
SUBDIR += p5-WWW-Search-Google
|
||||
SUBDIR += p5-libapreq
|
||||
SUBDIR += p5-libservlet
|
||||
SUBDIR += p5-libwww
|
||||
SUBDIR += peacock
|
||||
SUBDIR += pgdriver
|
||||
|
61
www/p5-libservlet/Makefile
Normal file
61
www/p5-libservlet/Makefile
Normal file
@ -0,0 +1,61 @@
|
||||
# ex:ts=8
|
||||
# New ports collection makefile for: p5-libservlet
|
||||
# Date created: Jul 28, 2001
|
||||
# Whom: ijliao
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= libservlet
|
||||
PORTVERSION= 0.9.1
|
||||
CATEGORIES= www perl5
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= ijliao@FreeBSD.org
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Exception/Class.pm:${PORTSDIR}/devel/p5-Exception-Class
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
USE_PERL5= yes
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||
MAN3= Servlet.3 \
|
||||
Servlet::ServletException.3 \
|
||||
Servlet::Util::Event.3 \
|
||||
Servlet::Http::HttpSession.3 \
|
||||
Servlet::Http::HttpServletRequestWrapper.3 \
|
||||
Servlet::Http::HttpServletResponse.3 \
|
||||
Servlet::Http::HttpServlet.3 \
|
||||
Servlet::Http::HttpSessionEvent.3 \
|
||||
Servlet::ServletContextEvent.3 \
|
||||
Servlet::ServletContextListener.3 \
|
||||
Servlet::ServletContextAttributeListener.3 \
|
||||
Servlet::Http::Cookie.3 \
|
||||
Servlet::ServletOutputStream.3 \
|
||||
Servlet::Servlet.3 \
|
||||
Servlet::GenericServlet.3 \
|
||||
Servlet::ServletResponse.3 \
|
||||
Servlet::UnavailableException.3 \
|
||||
Servlet::Http::HttpSessionAttributesListener.3 \
|
||||
Servlet::Filter.3 \
|
||||
Servlet::ServletRequestWrapper.3 \
|
||||
Servlet::Http::HttpSessionListener.3 \
|
||||
Servlet::Http::HttpServletResponseWrapper.3 \
|
||||
Servlet::Util::Exception.3 \
|
||||
Servlet::SingleThreadModel.3 \
|
||||
Servlet::FilterChain.3 \
|
||||
Servlet::Http::HttpServletRequest.3 \
|
||||
Servlet::Http::HttpSessionBindingEvent.3 \
|
||||
Servlet::ServletContextAttributeEvent.3 \
|
||||
Servlet::ServletContext.3 \
|
||||
Servlet::Http::HttpSessionActivationListener.3 \
|
||||
Servlet::ServletRequest.3 \
|
||||
Servlet::ServletInputStream.3 \
|
||||
Servlet::Http::HttpSessionBindingListener.3 \
|
||||
Servlet::ServletResponseWrapper.3 \
|
||||
Servlet::RequestDispatcher.3
|
||||
|
||||
.include <bsd.port.mk>
|
1
www/p5-libservlet/distinfo
Normal file
1
www/p5-libservlet/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (libservlet-0.9.1.tar.gz) = b091b143fe57bc05214ec9db6eb40d6d
|
1
www/p5-libservlet/pkg-comment
Normal file
1
www/p5-libservlet/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
Servlet API for Perl
|
15
www/p5-libservlet/pkg-descr
Normal file
15
www/p5-libservlet/pkg-descr
Normal file
@ -0,0 +1,15 @@
|
||||
The Servlet API for Perl (libservlet) is a formulation of the Java (TM)
|
||||
Servlet API in Perl.
|
||||
|
||||
While the servlet concept originated with Java (TM), its component model is
|
||||
quite natural for Perl as well. By writing servlet applications and deploying
|
||||
them in a servlet container, application authors can spare themselves the
|
||||
effort of writing commonly needed web application infrastructure components
|
||||
for each new project. Furthermore, servlet applications are portable between
|
||||
deployment environments; they can be executed in any servlet container using
|
||||
any process model with only a few configuration changes and no application
|
||||
code changes. Servlet applications are insulated from changes in vendor or
|
||||
platform and are able to portably take advantage of standard web
|
||||
infrastructure services offered by any servlet container.
|
||||
|
||||
WWW: http://libservlet.sourceforge.net/
|
43
www/p5-libservlet/pkg-plist
Normal file
43
www/p5-libservlet/pkg-plist
Normal file
@ -0,0 +1,43 @@
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Http/HttpSession.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Http/HttpServletRequestWrapper.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Http/HttpServletResponse.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Http/HttpServlet.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Http/HttpSessionEvent.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Http/Cookie.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Http/HttpSessionAttributesListener.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Http/HttpSessionListener.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Http/HttpServletResponseWrapper.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Http/HttpServletRequest.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Http/HttpSessionBindingEvent.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Http/HttpSessionActivationListener.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Http/HttpSessionBindingListener.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Util/Event.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Util/Exception.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Config.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Filter.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/FilterChain.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/FilterConfig.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/GenericServlet.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/RequestDispatcher.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/Servlet.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/ServletConfig.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/ServletContext.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/ServletContextAttributeEvent.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/ServletContextAttributeListener.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/ServletContextEvent.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/ServletContextListener.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/ServletException.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/ServletInputStream.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/ServletOutputStream.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/ServletRequest.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/ServletRequestWrapper.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/ServletResponse.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/ServletResponseWrapper.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/SingleThreadModel.pm
|
||||
lib/perl5/site_perl/%%PERL_VER%%/Servlet/UnavailableException.pm
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/Servlet/Http
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/Servlet/Util
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/Servlet
|
||||
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/libservlet/.packlist
|
||||
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/libservlet
|
Loading…
Reference in New Issue
Block a user