summaryrefslogtreecommitdiff
path: root/www/varnish2
diff options
context:
space:
mode:
Diffstat (limited to 'www/varnish2')
-rw-r--r--www/varnish2/Makefile36
-rw-r--r--www/varnish2/distinfo3
-rw-r--r--www/varnish2/files/varnishd.in52
-rw-r--r--www/varnish2/files/varnishlog.in39
-rw-r--r--www/varnish2/files/varnishncsa.in39
-rw-r--r--www/varnish2/pkg-descr12
-rw-r--r--www/varnish2/pkg-plist36
7 files changed, 0 insertions, 217 deletions
diff --git a/www/varnish2/Makefile b/www/varnish2/Makefile
deleted file mode 100644
index 861a622d8bca..000000000000
--- a/www/varnish2/Makefile
+++ /dev/null
@@ -1,36 +0,0 @@
-# New ports collection makefile for: varnish
-# Date created: 2006-08-11
-# Whom: des
-#
-# $FreeBSD$
-#
-
-PORTNAME= varnish
-PORTVERSION= 2.0.4
-CATEGORIES= www
-MASTER_SITES= SF
-
-MAINTAINER= des@FreeBSD.org
-COMMENT= The Varnish high-performance HTTP accelerator
-
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --localstatedir=${PREFIX}
-USE_LDCONFIG= yes
-
-MAN1= varnishadm.1 varnishd.1 varnishhist.1 varnishlog.1 \
- varnishncsa.1 varnishreplay.1 varnishstat.1 varnishtest.1 \
- varnishtop.1
-MAN7= vcl.7
-USE_RC_SUBR= varnishd varnishlog varnishncsa
-
-.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
-
-.include <bsd.port.post.mk>
diff --git a/www/varnish2/distinfo b/www/varnish2/distinfo
deleted file mode 100644
index b2bcd0b1225e..000000000000
--- a/www/varnish2/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (varnish-2.0.4.tar.gz) = 8044d59cb6d2ec6d09b7ae6033f06bbf
-SHA256 (varnish-2.0.4.tar.gz) = 7ee6c66cdafda86a9d32169e5b773c57ba05e1f556b5c99585964e8f2985ae3e
-SIZE (varnish-2.0.4.tar.gz) = 786945
diff --git a/www/varnish2/files/varnishd.in b/www/varnish2/files/varnishd.in
deleted file mode 100644
index 90195b126d5e..000000000000
--- a/www/varnish2/files/varnishd.in
+++ /dev/null
@@ -1,52 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-# 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_user="www"
-#varnishd_group="www"
-#varnishd_flags="-P ${pidfile} -a ${varnishd_listen} -f ${varnishd_config} -T ${varnishd_telnet} -s ${varnishd_storage} -u ${varnishd_user} -g ${varnishd_group}"
-#
-# 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_user="www"}
-: ${varnishd_group="www"}
-: ${varnishd_flags="-P ${pidfile} -a ${varnishd_listen} -f ${varnishd_config} -T ${varnishd_telnet} -s ${varnishd_storage} -u ${varnishd_user} -g ${varnishd_group}"}
-
-# If we leave these set, rc.subr will su to them before starting
-# varnishd, which is not what we want.
-unset varnishd_user
-unset varnishd_group
-
-run_rc_command "$1"
diff --git a/www/varnish2/files/varnishlog.in b/www/varnish2/files/varnishlog.in
deleted file mode 100644
index 7d07528e7b52..000000000000
--- a/www/varnish2/files/varnishlog.in
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-# 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/files/varnishncsa.in b/www/varnish2/files/varnishncsa.in
deleted file mode 100644
index 46b113f50e4c..000000000000
--- a/www/varnish2/files/varnishncsa.in
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-# PROVIDE: varnishncsa
-# REQUIRE: DAEMON
-# KEYWORD: shutdown
-
-#
-# Add the following lines to /etc/rc.conf to enable varnishncsa:
-#
-#varnishncsa_enable="YES"
-#
-# Configuration variables and their default values:
-#
-#varnishncsa_file=${varnishncsa_file:-"/var/log/varnish-ncsa.log"}
-#varnishncsa_flags=${varnishncsa_flags:-"-D -P ${pidfile} -a -w ${varnishncsa_file}"}
-#
-# See varnishncsa(1) for a detailed overview of command-line options.
-#
-
-. %%RC_SUBR%%
-
-name=varnishncsa
-rcvar=`set_rcvar`
-
-command="%%PREFIX%%/bin/varnishncsa"
-pidfile="/var/run/${name}.pid"
-
-# read configuration and set defaults
-load_rc_config ${name}
-: ${varnishncsa_enable="NO"}
-: ${varnishncsa_file="/var/log/varnish-ncsa.log"}
-: ${varnishncsa_flags="-P ${pidfile} -D -a -w ${varnishncsa_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 638574ca94c4..000000000000
--- a/www/varnish2/pkg-plist
+++ /dev/null
@@ -1,36 +0,0 @@
-bin/varnishadm
-bin/varnishhist
-bin/varnishlog
-bin/varnishncsa
-bin/varnishreplay
-bin/varnishstat
-bin/varnishtest
-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.1
-lib/libvarnish.so
-lib/libvarnish.la
-lib/libvarnish.a
-lib/libvarnishapi.so.1
-lib/libvarnishapi.so
-lib/libvarnishapi.la
-lib/libvarnishapi.a
-lib/libvarnishcompat.so.1
-lib/libvarnishcompat.so
-lib/libvarnishcompat.la
-lib/libvarnishcompat.a
-lib/libvcl.so.1
-lib/libvcl.so
-lib/libvcl.la
-lib/libvcl.a
-libdata/pkgconfig/varnishapi.pc
-sbin/varnishd
-@exec mkdir %D/varnish
-@dirrmtry varnish
-@dirrm include/varnish
-@dirrmtry etc/varnish