Add p5-HTTP-Request-Params-1.01

This software does all the dirty work of parsing HTTP Requests to find incoming
query parameters.

Incoming query parameters come from two places. The first place is the query
portion of the URL. Second is the content portion of an HTTP request as is the
case when parsing a POST request, for example.
This commit is contained in:
Mathieu Arnold 2005-11-22 13:10:26 +00:00
parent d72bdd7d1b
commit 1a5091d4e8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=149048
5 changed files with 57 additions and 0 deletions

View File

@ -567,6 +567,7 @@
SUBDIR += p5-HTTP-Proxy
SUBDIR += p5-HTTP-Recorder
SUBDIR += p5-HTTP-Request-AsCGI
SUBDIR += p5-HTTP-Request-Params
SUBDIR += p5-HTTP-Server-Simple
SUBDIR += p5-HTTP-Server-Simple-Mason
SUBDIR += p5-HTTP-Server-Simple-Static

View File

@ -0,0 +1,37 @@
# New ports collection makefile for: p5-HTTP-Request-Params
# Date created: 22 Nov 2005
# Whom: mat
#
# $FreeBSD$
#
PORTNAME= HTTP-Request-Params
PORTVERSION= 1.01
CATEGORIES= www perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= HTTP
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= Retrieve GET/POST Parameters from HTTP Requests
BUILD_DEPENDS= ${SITE_PERL}/CGI.pm:${PORTSDIR}/www/p5-CGI.pm \
${SITE_PERL}/Class/Accessor.pm:${PORTSDIR}/devel/p5-Class-Accessor \
${SITE_PERL}/Email/MIME/Modifier.pm:${PORTSDIR}/mail/p5-Email-MIME-Modifier \
${SITE_PERL}/HTTP/Request/Common.pm:${PORTSDIR}/www/p5-libwww
RUN_DEPENDS= ${BUILD_DEPENDS}
PERL_CONFIGURE= yes
MAN3= HTTP::Request::Params.3
.if !defined(NOPORTDOCS)
PORTDOCS= Changes README
post-install:
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (HTTP-Request-Params-1.01.tar.gz) = fccd255a2992c77b5c40cb5e1e75b256
SHA256 (HTTP-Request-Params-1.01.tar.gz) = 0ca6d66e0f87bccac54f06147af4aa93f4f65f683b3191320f0b846a7449bc09
SIZE (HTTP-Request-Params-1.01.tar.gz) = 3427

View File

@ -0,0 +1,8 @@
This software does all the dirty work of parsing HTTP Requests to find incoming
query parameters.
Incoming query parameters come from two places. The first place is the query
portion of the URL. Second is the content portion of an HTTP request as is the
case when parsing a POST request, for example.
WWW: http://search.cpan.org/dist/HTTP-Request-Params/

View File

@ -0,0 +1,8 @@
@comment $FreeBSD$
%%SITE_PERL%%/HTTP/Request/Params.pm
%%SITE_PERL%%/%%PERL_ARCH%%/auto/HTTP/Request/Params/.packlist
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/HTTP/Request/Params
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/HTTP/Request 2>/dev/null || true
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/HTTP 2>/dev/null || true
@unexec rmdir %D/%%SITE_PERL%%/HTTP/Request 2>/dev/null || true
@unexec rmdir %D/%%SITE_PERL%%/HTTP 2>/dev/null || true