Add pear-HTTP_Request 1.2, PEAR classes providing an easy way to

perform HTTP requests.

Approved by:	pav (mentor).
This commit is contained in:
Thierry Thomas 2004-04-06 19:15:30 +00:00
parent 27f3d6050f
commit 27de4c5c9c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=106339
4 changed files with 33 additions and 0 deletions

View File

@ -471,6 +471,7 @@
SUBDIR += pear-APC
SUBDIR += pear-HTTP
SUBDIR += pear-HTTP_Header
SUBDIR += pear-HTTP_Request
SUBDIR += pear-HTTP_Session
SUBDIR += pear-HTTP_Upload
SUBDIR += pgdriver

View File

@ -0,0 +1,26 @@
# Ports collection makefile for: pear-HTTP_Request
# Date created: 04 April 2004
# Whom: Thierry Thomas (<thierry@FreeBSD.org>)
#
# $FreeBSD$
#
PORTNAME= HTTP_Request
PORTVERSION= 1.2
CATEGORIES= www pear
MAINTAINER= ports@FreeBSD.org
COMMENT= PEAR classes providing an easy way to perform HTTP requests
BUILD_DEPENDS= ${PEARDIR}/Net/URL.php:${PORTSDIR}/net/pear-Net_URL \
${PEARDIR}/Net/Socket.php:${PORTSDIR}/net/pear-Net_Socket
RUN_DEPENDS= ${BUILD_DEPENDS}
CATEGORY= HTTP
FILES= Request.php Request/Listener.php
EXAMPLES= download-progress.php example.php
_EXAMPLESDIR= docs
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common"
.include <bsd.port.post.mk>

View File

@ -0,0 +1,2 @@
MD5 (PEAR/HTTP_Request-1.2.tgz) = 103f7599fc2d4f6be8920340571fd361
SIZE (PEAR/HTTP_Request-1.2.tgz) = 11856

View File

@ -0,0 +1,4 @@
Supports GET/POST/HEAD/TRACE/PUT/DELETE, Basic authentication, Proxy,
Proxy Authentication, SSL, redirection etc.
WWW: http://pear.php.net/package/HTTP_Request/