diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2008-02-24 03:11:57 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2008-02-24 03:11:57 +0000 |
commit | fa4a943c17e47bf910596a414fd7287983350b9b (patch) | |
tree | dc76cec18a505befc330e612e0a56bf1caa5ca49 /www/varnish2 | |
parent | 07bcc4091010f79f8d929d6ce22e51c7e3743b3f (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_7_0_0'.release/7.0.0
Notes
Notes:
svn path=/head/; revision=207820
svn path=/tags/RELEASE_7_0_0/; revision=207821; tag=release/7.0.0
Diffstat (limited to 'www/varnish2')
-rw-r--r-- | www/varnish2/Makefile | 43 | ||||
-rw-r--r-- | www/varnish2/distinfo | 3 | ||||
-rw-r--r-- | www/varnish2/files/patch-svn-r1913 | 18 | ||||
-rw-r--r-- | www/varnish2/files/varnishd.in | 43 | ||||
-rw-r--r-- | www/varnish2/files/varnishlog.in | 39 | ||||
-rw-r--r-- | www/varnish2/pkg-descr | 12 | ||||
-rw-r--r-- | www/varnish2/pkg-plist | 35 |
7 files changed, 0 insertions, 193 deletions
diff --git a/www/varnish2/Makefile b/www/varnish2/Makefile deleted file mode 100644 index d4e869406d6a..000000000000 --- a/www/varnish2/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# New ports collection makefile for: varnish -# Date created: 2006-08-11 -# Whom: des -# -# $FreeBSD$ -# - -PORTNAME= varnish -PORTVERSION= 1.1.1 -PORTREVISION= 2 -CATEGORIES= www -MASTER_SITES= SF - -MAINTAINER= des@FreeBSD.org -COMMENT= The Varnish high-performance HTTP accelerator - -GNU_CONFIGURE= yes -CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ARGS= --localstatedir=${PREFIX} -USE_LDCONFIG= yes - -MAN1= varnishadm.1 varnishd.1 varnishhist.1 varnishlog.1 \ - varnishncsa.1 varnishreplay.1 varnishstat.1 varnishtop.1 -MAN7= vcl.7 -USE_REINPLACE= YES -USE_RC_SUBR= varnishd varnishlog - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} < 601000 -BROKEN= does not compile -.endif - -post-patch: - @${REINPLACE_CMD} -e 's|\$$(libdir)/pkgconfig|\$$(prefix)/libdata/pkgconfig|' \ - ${WRKSRC}/Makefile.in - -post-install: - ${MKDIR} ${PREFIX}/etc/varnish - @[ -f ${PREFIX}/etc/varnish/default.vcl ] || \ - ${INSTALL_DATA} ${WRKSRC}/etc/default.vcl ${PREFIX}/etc/varnish/ - -.include <bsd.port.post.mk> diff --git a/www/varnish2/distinfo b/www/varnish2/distinfo deleted file mode 100644 index e6e94e79b807..000000000000 --- a/www/varnish2/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (varnish-1.1.1.tar.gz) = fb4159a46a32b8c5bceca88f22e999a5 -SHA256 (varnish-1.1.1.tar.gz) = a7fadf7e109c22bd6bf750e2ed98af4423f801ad183e8241668311dea57e2c19 -SIZE (varnish-1.1.1.tar.gz) = 569143 diff --git a/www/varnish2/files/patch-svn-r1913 b/www/varnish2/files/patch-svn-r1913 deleted file mode 100644 index 318666826f0e..000000000000 --- a/www/varnish2/files/patch-svn-r1913 +++ /dev/null @@ -1,18 +0,0 @@ -Index: bin/varnishd/cache_center.c -=================================================================== ---- bin/varnishd/cache_center.c (revision 1912) -+++ bin/varnishd/cache_center.c (revision 1913) -@@ -524,7 +524,12 @@ - */ - WSL(sp->wrk, SLT_Debug, sp->fd, - "on waiting list on obj %u", sp->obj->xid); -- assert(!isnan(sp->wrk->used)); -+ /* -+ * There is a non-zero risk that we come here more than once -+ * before we get through, in that case cnt_recv must be set -+ */ -+ if (isnan(sp->wrk->used)) -+ sp->wrk->used = TIM_real(); - SES_Charge(sp); - return (1); - } diff --git a/www/varnish2/files/varnishd.in b/www/varnish2/files/varnishd.in deleted file mode 100644 index babf2d908701..000000000000 --- a/www/varnish2/files/varnishd.in +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# -# $Id$ -# - -# PROVIDE: varnishd -# REQUIRE: DAEMON -# KEYWORD: shutdown - -# -# Add the following lines to /etc/rc.conf to enable varnishd: -# -#varnishd_enable="YES" -# -# Configuration variables and their default values: -# -#varnishd_listen=":6081" -#varnishd_config="%%PREFIX%%/etc/varnish/default.vcl" -#varnishd_telnet="localhost:6082" -#varnishd_storage="file,/tmp,50%" -#varnishd_flags="-P ${pidfile} -a ${varnishd_listen} -f ${varnishd_config} -T ${varnishd_telnet} -s ${varnishd_storage}" -# -# See varnishd(1) for a detailed overview of command-line options. -# - -. %%RC_SUBR%% - -name=varnishd -rcvar=`set_rcvar` - -command="%%PREFIX%%/sbin/varnishd" -pidfile="/var/run/${name}.pid" - -# read configuration and set defaults -load_rc_config ${name} -: ${varnishd_enable="NO"} -: ${varnishd_listen=":6081"} -: ${varnishd_config="%%PREFIX%%/etc/varnish/default.vcl"} -: ${varnishd_telnet="localhost:6082"} -: ${varnishd_storage="file,/tmp,50%"} -: ${varnishd_flags="-P ${pidfile} -a ${varnishd_listen} -f ${varnishd_config} -T ${varnishd_telnet} -s ${varnishd_storage}"} - -run_rc_command "$1" diff --git a/www/varnish2/files/varnishlog.in b/www/varnish2/files/varnishlog.in deleted file mode 100644 index 3c06c610f7bb..000000000000 --- a/www/varnish2/files/varnishlog.in +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# $Id$ -# - -# PROVIDE: varnishlog -# REQUIRE: DAEMON -# KEYWORD: shutdown - -# -# Add the following lines to /etc/rc.conf to enable varnishlog: -# -#varnishlog_enable="YES" -# -# Configuration variables and their default values: -# -#varnishlog_file=${varnishlog_file:-"/var/log/varnish.log"} -#varnishlog_flags=${varnishlog_flags:-"-D -P ${pidfile} -a -w ${varnishlog_file}"} -# -# See varnishlog(1) for a detailed overview of command-line options. -# - -. %%RC_SUBR%% - -name=varnishlog -rcvar=`set_rcvar` - -command="%%PREFIX%%/bin/varnishlog" -pidfile="/var/run/${name}.pid" - -# read configuration and set defaults -load_rc_config ${name} -: ${varnishlog_enable="NO"} -: ${varnishlog_file="/var/log/varnish.log"} -: ${varnishlog_flags="-P ${pidfile} -D -a -w ${varnishlog_file}"} - -load_rc_config ${name} - -run_rc_command "$1" diff --git a/www/varnish2/pkg-descr b/www/varnish2/pkg-descr deleted file mode 100644 index d6e8c679fbb4..000000000000 --- a/www/varnish2/pkg-descr +++ /dev/null @@ -1,12 +0,0 @@ -This is the Varnish high-performance HTTP accelerator. - -Documentation and additional information about Varnish is available on -<URL:http://varnish.projects.linpro.no/>. - -Technical questions about Varnish and this release should be addressed -to <varnish-dev@projects.linpro.no>. - -Questions about commercial support and services related to Varnish -should be addressed to <varnish@linpro.no>. - -WWW: http://www.varnish-cache.org/ diff --git a/www/varnish2/pkg-plist b/www/varnish2/pkg-plist deleted file mode 100644 index 2ef4c6478f72..000000000000 --- a/www/varnish2/pkg-plist +++ /dev/null @@ -1,35 +0,0 @@ -bin/varnishadm -bin/varnishhist -bin/varnishlog -bin/varnishncsa -bin/varnishreplay -bin/varnishstat -bin/varnishtop -etc/varnish/default.vcl -include/varnish/shmlog.h -include/varnish/shmlog_tags.h -include/varnish/stat_field.h -include/varnish/stats.h -include/varnish/varnishapi.h -lib/libvarnish.so.0 -lib/libvarnish.so -lib/libvarnish.la -lib/libvarnish.a -lib/libvarnishapi.so.0 -lib/libvarnishapi.so -lib/libvarnishapi.la -lib/libvarnishapi.a -lib/libvarnishcompat.so.0 -lib/libvarnishcompat.so -lib/libvarnishcompat.la -lib/libvarnishcompat.a -lib/libvcl.so.0 -lib/libvcl.so -lib/libvcl.la -lib/libvcl.a -libdata/pkgconfig/varnishapi.pc -sbin/varnishd -@exec mkdir %D/varnish -@dirrmtry varnish -@dirrm include/varnish -@dirrm etc/varnish |