aboutsummaryrefslogtreecommitdiff
path: root/www/httest
diff options
context:
space:
mode:
authorEmanuel Haupt <ehaupt@FreeBSD.org>2012-11-28 20:31:09 +0000
committerEmanuel Haupt <ehaupt@FreeBSD.org>2012-11-28 20:31:09 +0000
commit6ca92df11ea7b4bc94cf228efc545c93b56ca3df (patch)
treee7bf6efbbc047c8de60d51fd25d510db424ebda5 /www/httest
parentd41a2b94d18f409991e489b5ad04f66d38cde296 (diff)
downloadports-6ca92df11ea7b4bc94cf228efc545c93b56ca3df.tar.gz
ports-6ca92df11ea7b4bc94cf228efc545c93b56ca3df.zip
- Update to 2.2.11
- Fix build on 7.x/amd64 - Trim header - Take maintainership Feature safe: yes
Notes
Notes: svn path=/head/; revision=307935
Diffstat (limited to 'www/httest')
-rw-r--r--www/httest/Makefile14
-rw-r--r--www/httest/distinfo4
-rw-r--r--www/httest/files/patch-src-regex.c12
3 files changed, 5 insertions, 25 deletions
diff --git a/www/httest/Makefile b/www/httest/Makefile
index 073aa43e75ea..da3c927cfc7e 100644
--- a/www/httest/Makefile
+++ b/www/httest/Makefile
@@ -1,16 +1,12 @@
-# New ports collection makefile for: httest
-# Date created: Jun 15, 2011
-# Whom: Martin Matuska <mm@FreeBSD.org>
-#
+# Created by: Martin Matuska <mm@FreeBSD.org>
# $FreeBSD$
-#
PORTNAME= httest
-PORTVERSION= 2.2.7
+PORTVERSION= 2.2.11
CATEGORIES= www
MASTER_SITES= SF/htt/htt${PORTVERSION:R}/${PORTNAME}-${PORTVERSION}
-MAINTAINER= ports@FreeBSD.org
+MAINTAINER= ehaupt@FreeBSD.org
COMMENT= HTTP Test Tool
LICENSE= AL2
@@ -43,10 +39,6 @@ post-patch:
.include <bsd.port.options.mk>
-.if ${OSVERSION} < 800000 && ${ARCH} == "amd64"
-BROKEN= does not compile on 7.X/amd64
-.endif
-
post-install:
.if ${PORT_OPTIONS:MEXAMPLES}
${MKDIR} ${EXAMPLESDIR}/
diff --git a/www/httest/distinfo b/www/httest/distinfo
index 1f0abffde93a..57de5c8588ae 100644
--- a/www/httest/distinfo
+++ b/www/httest/distinfo
@@ -1,2 +1,2 @@
-SHA256 (httest-2.2.7.tar.gz) = a7eaf9ee2827e4f6a2b971b5ac1a6c09ac67912c91ce2c7ef6d3016c79b3c2c3
-SIZE (httest-2.2.7.tar.gz) = 517716
+SHA256 (httest-2.2.11.tar.gz) = 7b073ce0aeaca84f7007411229113ce0e07d2406f99c79e939b483039ed0c2d1
+SIZE (httest-2.2.11.tar.gz) = 551044
diff --git a/www/httest/files/patch-src-regex.c b/www/httest/files/patch-src-regex.c
deleted file mode 100644
index 6536595245c9..000000000000
--- a/www/httest/files/patch-src-regex.c
+++ /dev/null
@@ -1,12 +0,0 @@
---- src/regex.c.orig 2012-02-14 10:50:10.169982096 +0100
-+++ src/regex.c 2012-02-14 10:51:09.360982595 +0100
-@@ -88,7 +88,8 @@
- if (preg->re_pcre == NULL)
- return NULL;
-
-- preg->re_nsub = pcre_info((const pcre *) preg->re_pcre, NULL, NULL);
-+ pcre_fullinfo((const pcre *)preg->re_pcre, NULL,
-+ PCRE_INFO_CAPTURECOUNT, &(preg->re_nsub));
-
- apr_pool_cleanup_register(p, (void *) preg, regex_cleanup,
- apr_pool_cleanup_null);