summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1996-11-12 08:26:06 +0000
committerPeter Wemm <peter@FreeBSD.org>1996-11-12 08:26:06 +0000
commitb519625807964cf1b95551ef96707eeb24b4756f (patch)
treef8e3061f14ee3230b5bcc57ef2238a714eb9fed5 /www
parentTypo: $id$ -> $Id$ (diff)
Shorten PKGNAME
Don't send RunCache's output to /dev/console when run from the rc.d script, it's a bit messy and unneeded. Reviewed by: Submitted by: asami Obtained from:
Notes
Notes: svn path=/head/; revision=4423
Diffstat (limited to 'www')
-rw-r--r--www/squid/Makefile5
-rw-r--r--www/squid22/Makefile5
-rw-r--r--www/squid23/Makefile5
-rw-r--r--www/squid24/Makefile5
-rw-r--r--www/squid25/Makefile5
-rw-r--r--www/squid26/Makefile5
-rw-r--r--www/squid27/Makefile5
-rw-r--r--www/squid30/Makefile5
-rw-r--r--www/squid31/Makefile5
9 files changed, 27 insertions, 18 deletions
diff --git a/www/squid/Makefile b/www/squid/Makefile
index 0879a1c35662..7cd34a9400e3 100644
--- a/www/squid/Makefile
+++ b/www/squid/Makefile
@@ -3,10 +3,11 @@
# Date created: Thu Nov 7 00:53:18 WST 1996
# Whom: Peter Wemm <peter@freebsd.org>
#
-# $Id: Makefile,v 1.3 1996/11/06 16:37:10 peter Exp $
+# $Id: Makefile,v 1.4 1996/11/06 17:20:53 peter Exp $
#
DISTNAME= squid-1.1.beta13
+PKGNAME= squid-1.1b13
CATEGORIES+= www
MASTER_SITES= \
ftp://squid.nlanr.net/pub/squid-1.1.beta/ \
@@ -34,7 +35,7 @@ post-install:
echo "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \
echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/squid.sh; \
echo "if [ -x /usr/local/sbin/RunCache -a -f /usr/local/etc/squid/squid.conf ]; then" >> ${PREFIX}/etc/rc.d/squid.sh; \
- echo " (cd /tmp; /usr/local/sbin/RunCache &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
+ echo " (cd /tmp; /usr/local/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
echo "fi" >> ${PREFIX}/etc/rc.d/squid.sh; \
chmod 751 ${PREFIX}/etc/rc.d/squid.sh; \
fi
diff --git a/www/squid22/Makefile b/www/squid22/Makefile
index 0879a1c35662..7cd34a9400e3 100644
--- a/www/squid22/Makefile
+++ b/www/squid22/Makefile
@@ -3,10 +3,11 @@
# Date created: Thu Nov 7 00:53:18 WST 1996
# Whom: Peter Wemm <peter@freebsd.org>
#
-# $Id: Makefile,v 1.3 1996/11/06 16:37:10 peter Exp $
+# $Id: Makefile,v 1.4 1996/11/06 17:20:53 peter Exp $
#
DISTNAME= squid-1.1.beta13
+PKGNAME= squid-1.1b13
CATEGORIES+= www
MASTER_SITES= \
ftp://squid.nlanr.net/pub/squid-1.1.beta/ \
@@ -34,7 +35,7 @@ post-install:
echo "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \
echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/squid.sh; \
echo "if [ -x /usr/local/sbin/RunCache -a -f /usr/local/etc/squid/squid.conf ]; then" >> ${PREFIX}/etc/rc.d/squid.sh; \
- echo " (cd /tmp; /usr/local/sbin/RunCache &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
+ echo " (cd /tmp; /usr/local/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
echo "fi" >> ${PREFIX}/etc/rc.d/squid.sh; \
chmod 751 ${PREFIX}/etc/rc.d/squid.sh; \
fi
diff --git a/www/squid23/Makefile b/www/squid23/Makefile
index 0879a1c35662..7cd34a9400e3 100644
--- a/www/squid23/Makefile
+++ b/www/squid23/Makefile
@@ -3,10 +3,11 @@
# Date created: Thu Nov 7 00:53:18 WST 1996
# Whom: Peter Wemm <peter@freebsd.org>
#
-# $Id: Makefile,v 1.3 1996/11/06 16:37:10 peter Exp $
+# $Id: Makefile,v 1.4 1996/11/06 17:20:53 peter Exp $
#
DISTNAME= squid-1.1.beta13
+PKGNAME= squid-1.1b13
CATEGORIES+= www
MASTER_SITES= \
ftp://squid.nlanr.net/pub/squid-1.1.beta/ \
@@ -34,7 +35,7 @@ post-install:
echo "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \
echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/squid.sh; \
echo "if [ -x /usr/local/sbin/RunCache -a -f /usr/local/etc/squid/squid.conf ]; then" >> ${PREFIX}/etc/rc.d/squid.sh; \
- echo " (cd /tmp; /usr/local/sbin/RunCache &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
+ echo " (cd /tmp; /usr/local/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
echo "fi" >> ${PREFIX}/etc/rc.d/squid.sh; \
chmod 751 ${PREFIX}/etc/rc.d/squid.sh; \
fi
diff --git a/www/squid24/Makefile b/www/squid24/Makefile
index 0879a1c35662..7cd34a9400e3 100644
--- a/www/squid24/Makefile
+++ b/www/squid24/Makefile
@@ -3,10 +3,11 @@
# Date created: Thu Nov 7 00:53:18 WST 1996
# Whom: Peter Wemm <peter@freebsd.org>
#
-# $Id: Makefile,v 1.3 1996/11/06 16:37:10 peter Exp $
+# $Id: Makefile,v 1.4 1996/11/06 17:20:53 peter Exp $
#
DISTNAME= squid-1.1.beta13
+PKGNAME= squid-1.1b13
CATEGORIES+= www
MASTER_SITES= \
ftp://squid.nlanr.net/pub/squid-1.1.beta/ \
@@ -34,7 +35,7 @@ post-install:
echo "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \
echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/squid.sh; \
echo "if [ -x /usr/local/sbin/RunCache -a -f /usr/local/etc/squid/squid.conf ]; then" >> ${PREFIX}/etc/rc.d/squid.sh; \
- echo " (cd /tmp; /usr/local/sbin/RunCache &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
+ echo " (cd /tmp; /usr/local/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
echo "fi" >> ${PREFIX}/etc/rc.d/squid.sh; \
chmod 751 ${PREFIX}/etc/rc.d/squid.sh; \
fi
diff --git a/www/squid25/Makefile b/www/squid25/Makefile
index 0879a1c35662..7cd34a9400e3 100644
--- a/www/squid25/Makefile
+++ b/www/squid25/Makefile
@@ -3,10 +3,11 @@
# Date created: Thu Nov 7 00:53:18 WST 1996
# Whom: Peter Wemm <peter@freebsd.org>
#
-# $Id: Makefile,v 1.3 1996/11/06 16:37:10 peter Exp $
+# $Id: Makefile,v 1.4 1996/11/06 17:20:53 peter Exp $
#
DISTNAME= squid-1.1.beta13
+PKGNAME= squid-1.1b13
CATEGORIES+= www
MASTER_SITES= \
ftp://squid.nlanr.net/pub/squid-1.1.beta/ \
@@ -34,7 +35,7 @@ post-install:
echo "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \
echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/squid.sh; \
echo "if [ -x /usr/local/sbin/RunCache -a -f /usr/local/etc/squid/squid.conf ]; then" >> ${PREFIX}/etc/rc.d/squid.sh; \
- echo " (cd /tmp; /usr/local/sbin/RunCache &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
+ echo " (cd /tmp; /usr/local/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
echo "fi" >> ${PREFIX}/etc/rc.d/squid.sh; \
chmod 751 ${PREFIX}/etc/rc.d/squid.sh; \
fi
diff --git a/www/squid26/Makefile b/www/squid26/Makefile
index 0879a1c35662..7cd34a9400e3 100644
--- a/www/squid26/Makefile
+++ b/www/squid26/Makefile
@@ -3,10 +3,11 @@
# Date created: Thu Nov 7 00:53:18 WST 1996
# Whom: Peter Wemm <peter@freebsd.org>
#
-# $Id: Makefile,v 1.3 1996/11/06 16:37:10 peter Exp $
+# $Id: Makefile,v 1.4 1996/11/06 17:20:53 peter Exp $
#
DISTNAME= squid-1.1.beta13
+PKGNAME= squid-1.1b13
CATEGORIES+= www
MASTER_SITES= \
ftp://squid.nlanr.net/pub/squid-1.1.beta/ \
@@ -34,7 +35,7 @@ post-install:
echo "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \
echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/squid.sh; \
echo "if [ -x /usr/local/sbin/RunCache -a -f /usr/local/etc/squid/squid.conf ]; then" >> ${PREFIX}/etc/rc.d/squid.sh; \
- echo " (cd /tmp; /usr/local/sbin/RunCache &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
+ echo " (cd /tmp; /usr/local/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
echo "fi" >> ${PREFIX}/etc/rc.d/squid.sh; \
chmod 751 ${PREFIX}/etc/rc.d/squid.sh; \
fi
diff --git a/www/squid27/Makefile b/www/squid27/Makefile
index 0879a1c35662..7cd34a9400e3 100644
--- a/www/squid27/Makefile
+++ b/www/squid27/Makefile
@@ -3,10 +3,11 @@
# Date created: Thu Nov 7 00:53:18 WST 1996
# Whom: Peter Wemm <peter@freebsd.org>
#
-# $Id: Makefile,v 1.3 1996/11/06 16:37:10 peter Exp $
+# $Id: Makefile,v 1.4 1996/11/06 17:20:53 peter Exp $
#
DISTNAME= squid-1.1.beta13
+PKGNAME= squid-1.1b13
CATEGORIES+= www
MASTER_SITES= \
ftp://squid.nlanr.net/pub/squid-1.1.beta/ \
@@ -34,7 +35,7 @@ post-install:
echo "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \
echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/squid.sh; \
echo "if [ -x /usr/local/sbin/RunCache -a -f /usr/local/etc/squid/squid.conf ]; then" >> ${PREFIX}/etc/rc.d/squid.sh; \
- echo " (cd /tmp; /usr/local/sbin/RunCache &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
+ echo " (cd /tmp; /usr/local/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
echo "fi" >> ${PREFIX}/etc/rc.d/squid.sh; \
chmod 751 ${PREFIX}/etc/rc.d/squid.sh; \
fi
diff --git a/www/squid30/Makefile b/www/squid30/Makefile
index 0879a1c35662..7cd34a9400e3 100644
--- a/www/squid30/Makefile
+++ b/www/squid30/Makefile
@@ -3,10 +3,11 @@
# Date created: Thu Nov 7 00:53:18 WST 1996
# Whom: Peter Wemm <peter@freebsd.org>
#
-# $Id: Makefile,v 1.3 1996/11/06 16:37:10 peter Exp $
+# $Id: Makefile,v 1.4 1996/11/06 17:20:53 peter Exp $
#
DISTNAME= squid-1.1.beta13
+PKGNAME= squid-1.1b13
CATEGORIES+= www
MASTER_SITES= \
ftp://squid.nlanr.net/pub/squid-1.1.beta/ \
@@ -34,7 +35,7 @@ post-install:
echo "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \
echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/squid.sh; \
echo "if [ -x /usr/local/sbin/RunCache -a -f /usr/local/etc/squid/squid.conf ]; then" >> ${PREFIX}/etc/rc.d/squid.sh; \
- echo " (cd /tmp; /usr/local/sbin/RunCache &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
+ echo " (cd /tmp; /usr/local/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
echo "fi" >> ${PREFIX}/etc/rc.d/squid.sh; \
chmod 751 ${PREFIX}/etc/rc.d/squid.sh; \
fi
diff --git a/www/squid31/Makefile b/www/squid31/Makefile
index 0879a1c35662..7cd34a9400e3 100644
--- a/www/squid31/Makefile
+++ b/www/squid31/Makefile
@@ -3,10 +3,11 @@
# Date created: Thu Nov 7 00:53:18 WST 1996
# Whom: Peter Wemm <peter@freebsd.org>
#
-# $Id: Makefile,v 1.3 1996/11/06 16:37:10 peter Exp $
+# $Id: Makefile,v 1.4 1996/11/06 17:20:53 peter Exp $
#
DISTNAME= squid-1.1.beta13
+PKGNAME= squid-1.1b13
CATEGORIES+= www
MASTER_SITES= \
ftp://squid.nlanr.net/pub/squid-1.1.beta/ \
@@ -34,7 +35,7 @@ post-install:
echo "Installing ${PREFIX}/etc/rc.d/squid.sh startup file."; \
echo "#!/bin/sh" > ${PREFIX}/etc/rc.d/squid.sh; \
echo "if [ -x /usr/local/sbin/RunCache -a -f /usr/local/etc/squid/squid.conf ]; then" >> ${PREFIX}/etc/rc.d/squid.sh; \
- echo " (cd /tmp; /usr/local/sbin/RunCache &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
+ echo " (cd /tmp; /usr/local/sbin/RunCache >/dev/null 2>&1 &) ; echo -n ' squid'" >> ${PREFIX}/etc/rc.d/squid.sh; \
echo "fi" >> ${PREFIX}/etc/rc.d/squid.sh; \
chmod 751 ${PREFIX}/etc/rc.d/squid.sh; \
fi