diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2010-05-05 22:29:32 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2010-05-05 22:29:32 +0000 |
commit | f0298a0f8a57e8a5aa0b90a3bdbfe604eb5770c1 (patch) | |
tree | db990bfc2c0f99f1081c1ad1950f9b5bfef32c8c /www/varnish2 | |
parent | 605d4bae069d2792fc9b779ebb82287355e94b9a (diff) |
Upgrade to 2.1.2
Notes
Notes:
svn path=/head/; revision=253793
Diffstat (limited to 'www/varnish2')
-rw-r--r-- | www/varnish2/Makefile | 7 | ||||
-rw-r--r-- | www/varnish2/distinfo | 6 | ||||
-rw-r--r-- | www/varnish2/files/patch-r4758 | 13 |
3 files changed, 6 insertions, 20 deletions
diff --git a/www/varnish2/Makefile b/www/varnish2/Makefile index 672a788395c1..336e2676fcb3 100644 --- a/www/varnish2/Makefile +++ b/www/varnish2/Makefile @@ -6,22 +6,21 @@ # PORTNAME= varnish -PORTVERSION= 2.1.1 -PORTREVISION= 1 +PORTVERSION= 2.1.2 CATEGORIES= www MASTER_SITES= SF MAINTAINER= des@FreeBSD.org COMMENT= The Varnish high-performance HTTP accelerator +LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre + GNU_CONFIGURE= yes USE_GMAKE= yes CONFIGURE_ARGS= --localstatedir=${PREFIX} USE_LDCONFIG= yes USE_GNOME= pkgconfig -LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre - MAN1= varnishadm.1 varnishd.1 varnishhist.1 varnishlog.1 \ varnishncsa.1 varnishreplay.1 varnishsizes.1 \ varnishstat.1 varnishtest.1 varnishtop.1 diff --git a/www/varnish2/distinfo b/www/varnish2/distinfo index 77f977391aa1..e2d25239db16 100644 --- a/www/varnish2/distinfo +++ b/www/varnish2/distinfo @@ -1,3 +1,3 @@ -MD5 (varnish-2.1.1.tar.gz) = 2dec86e24915aa8d427584f671d25f40 -SHA256 (varnish-2.1.1.tar.gz) = b4256e6b181449ba513a825fefbeadd4d69886d0de2a24fa654dbc9ae678899a -SIZE (varnish-2.1.1.tar.gz) = 881536 +MD5 (varnish-2.1.2.tar.gz) = 8b0d80e47acf4946671c381af55518b9 +SHA256 (varnish-2.1.2.tar.gz) = 97fe4653c0253a75bb06fdf611b47f7219b1c106def5580af552090534ee395c +SIZE (varnish-2.1.2.tar.gz) = 882821 diff --git a/www/varnish2/files/patch-r4758 b/www/varnish2/files/patch-r4758 deleted file mode 100644 index 3603d37e2054..000000000000 --- a/www/varnish2/files/patch-r4758 +++ /dev/null @@ -1,13 +0,0 @@ -Index: bin/varnishd/cache_response.c -=================================================================== ---- bin/varnishd/cache_response.c (revision 4757) -+++ bin/varnishd/cache_response.c (revision 4758) -@@ -325,7 +325,7 @@ - } - if (ptr + len > high) - /* Chop tail of segment off */ -- len = 1 + high - low; -+ len = 1 + high - ptr; - - ptr += len; - |