1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00

Asynch HttpClient is a HTTP/1.1 compliant HTTP agent implementation based

on HttpCore NIO and HttpClient components. It is a complementary module
to Apache HttpClient intended for special cases where ability to handle a
great number of concurrent connections is more important than performance
in terms of a raw data throughput.

WWW: http://hc.apache.org/httpcomponents-asyncclient-4.0.x/
This commit is contained in:
Alex Dupre 2014-02-28 13:13:09 +00:00
parent c260e8de25
commit 41df6f9f7c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=346507
4 changed files with 66 additions and 0 deletions

View File

@ -350,6 +350,7 @@
SUBDIR += http_get
SUBDIR += http_load
SUBDIR += http_post
SUBDIR += httpasyncclient
SUBDIR += httpclient
SUBDIR += httpcore
SUBDIR += httpsqs

View File

@ -0,0 +1,56 @@
# Created by: Alex Dupre <ale@FreeBSD.org>
# $FreeBSD$
PORTNAME= httpasyncclient
DISTVERSION= 4.0.1
CATEGORIES= www java
MASTER_SITES= ${MASTER_SITE_APACHE}
MASTER_SITE_SUBDIR= httpcomponents/${PORTNAME}/binary
DISTNAME= httpcomponents-asyncclient-${DISTVERSION}-bin
MAINTAINER= ale@FreeBSD.org
COMMENT= Java components implementing an asynchronous HTTP client
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
RUN_DEPENDS= ${JAVAJARDIR}/httpclient.jar:${PORTSDIR}/www/httpclient
OPTIONS_DEFINE= DOCS EXAMPLES
USE_JAVA= yes
JAVA_VERSION= 1.6+
NO_BUILD= yes
WRKSRC= ${WRKDIR}/httpcomponents-asyncclient-${DISTVERSION}
PLIST_FILES= %%JAVAJARDIR%%/${PORTNAME}.jar \
%%JAVAJARDIR%%/${PORTNAME}-cache.jar
PORTDOCS= *
PORTEXAMPLES= *
.include <bsd.port.options.mk>
do-install:
@${ECHO_MSG} -n ">> Installing JAR file as ${JAVAJARDIR}/${PORTNAME}.jar..."
@${INSTALL_DATA} ${WRKSRC}/lib/${PORTNAME}-${DISTVERSION}.jar \
${STAGEDIR}/${JAVAJARDIR}/${PORTNAME}.jar
@${ECHO_MSG} " [DONE]"
@${ECHO_MSG} -n ">> Installing JAR file as ${JAVAJARDIR}/${PORTNAME}-cache.jar..."
@${INSTALL_DATA} ${WRKSRC}/lib/${PORTNAME}-cache-${DISTVERSION}.jar \
${STAGEDIR}/${JAVAJARDIR}/${PORTNAME}-cache.jar
@${ECHO_MSG} " [DONE]"
.if ${PORT_OPTIONS:MDOCS}
@${ECHO_MSG} -n ">> Installing documentation..."
@${MKDIR} ${STAGEDIR}/${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/RELEASE_NOTES.txt ${STAGEDIR}/${DOCSDIR}/
@${ECHO_MSG} " [DONE]"
.endif
.if ${PORT_OPTIONS:MEXAMPLES}
@${ECHO_MSG} -n ">> Installing examples..."
@${MKDIR} ${STAGEDIR}/${EXAMPLESDIR}
@cd ${WRKSRC}/examples && ${FIND} . \
| ${CPIO} -pdmu -R ${SHAREOWN}:${SHAREGRP} ${STAGEDIR}/${EXAMPLESDIR} > /dev/null 2>&1
@${ECHO_MSG} " [DONE]"
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (httpcomponents-asyncclient-4.0.1-bin.tar.gz) = f04e59f71ffa70f008bb30e3e64b87e1bdf3c20d878b9816c5744393ded6f826
SIZE (httpcomponents-asyncclient-4.0.1-bin.tar.gz) = 1636887

View File

@ -0,0 +1,7 @@
Asynch HttpClient is a HTTP/1.1 compliant HTTP agent implementation based
on HttpCore NIO and HttpClient components. It is a complementary module
to Apache HttpClient intended for special cases where ability to handle a
great number of concurrent connections is more important than performance
in terms of a raw data throughput.
WWW: http://hc.apache.org/httpcomponents-asyncclient-4.0.x/