From 95da97cbc4aa27620f4e19370c47ab366866b497 Mon Sep 17 00:00:00 2001 From: db Date: Wed, 28 May 2008 21:01:11 +0000 Subject: The serf library is a C-based HTTP client library built upon the Apache Portable Runtime (APR) library. It multiplexes connections, running the read/write communication asynchronously. Memory copies and transformations are kept to a minimum to provide high performance operation. WWW: http://serf.googlecode.com PR: ports/124059 Submitted by: Craig Rodrigues --- www/Makefile | 1 + www/serf/Makefile | 35 +++++++++++++++++++++++++++++++++++ www/serf/distinfo | 3 +++ www/serf/pkg-descr | 7 +++++++ www/serf/pkg-plist | 9 +++++++++ 5 files changed, 55 insertions(+) create mode 100644 www/serf/Makefile create mode 100644 www/serf/distinfo create mode 100644 www/serf/pkg-descr create mode 100644 www/serf/pkg-plist diff --git a/www/Makefile b/www/Makefile index a17de915f615..5ead9afcfb58 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1224,6 +1224,7 @@ SUBDIR += selenium SUBDIR += serendipity SUBDIR += serendipity-devel + SUBDIR += serf SUBDIR += servlet-api SUBDIR += session2 SUBDIR += shttpd diff --git a/www/serf/Makefile b/www/serf/Makefile new file mode 100644 index 000000000000..af58e6c82d13 --- /dev/null +++ b/www/serf/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: apr +# Date created: 28 May 2008 +# Whom: Craig Rodrigues +# +# $FreeBSD$ +# + +PORTNAME= serf +PORTVERSION= 0.1.2 +CATEGORIES= www +MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} \ + ${MASTER_SITE_LOCAL} +MASTER_SITE_SUBDIR= db + +MAINTAINER= rodrigc@FreeBSD.org +COMMENT= Serf HTTP client library + +LIB_DEPENDS+= apr:${PORTSDIR}/devel/apr + +PROJECTHOST= serf +PORTDOCS= design-guide.txt +USE_BZIP2= yes +USE_GMAKE= yes +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +CONFIGURE_ARGS+= --with-apr=${PREFIX}/bin/apr-1-config \ + --with-apr-util=${PREFIX}/bin/apu-1-config + +post-install: + ${MKDIR} ${DOCSDIR} +.if !defined(NOPORTDOCS) + ${INSTALL_DATA} ${WRKSRC}/design-guide.txt ${DOCSDIR} +.endif + +.include diff --git a/www/serf/distinfo b/www/serf/distinfo new file mode 100644 index 000000000000..4fc23ab194b1 --- /dev/null +++ b/www/serf/distinfo @@ -0,0 +1,3 @@ +MD5 (serf-0.1.2.tar.bz2) = 9578f4b40d4ae7ea799bb0067d6b1c7c +SHA256 (serf-0.1.2.tar.bz2) = 44c852c9135914b85c7a1f36ef41f88c63de52faab98493a6e59008b7060f89c +SIZE (serf-0.1.2.tar.bz2) = 117871 diff --git a/www/serf/pkg-descr b/www/serf/pkg-descr new file mode 100644 index 000000000000..bad5f25a9a7d --- /dev/null +++ b/www/serf/pkg-descr @@ -0,0 +1,7 @@ +The serf library is a C-based HTTP client library built upon the +Apache Portable Runtime (APR) library. It multiplexes connections, +running the read/write communication asynchronously. Memory copies +and transformations are kept to a minimum to provide high +performance operation. + +WWW: http://serf.googlecode.com diff --git a/www/serf/pkg-plist b/www/serf/pkg-plist new file mode 100644 index 000000000000..ce4ec05c4fab --- /dev/null +++ b/www/serf/pkg-plist @@ -0,0 +1,9 @@ +include/serf-0/serf.h +include/serf-0/serf_bucket_types.h +include/serf-0/serf_bucket_util.h +include/serf-0/serf_declare.h +lib/libserf-0.so.0 +lib/libserf-0.so +lib/libserf-0.la +lib/libserf-0.a +@dirrm include/serf-0 -- cgit