Update to version 1.5.2
-- Changes: PID and logfiles are handled correcty now, and more error messages are produced when problems occur. TCP tunnel capabilities were removed. Further details on: http://tinyproxy.sourceforge.net/ChangeLog brad@ ok
This commit is contained in:
parent
dbf369beb9
commit
38aacf8d1c
@ -1,10 +1,10 @@
|
||||
# $OpenBSD: Makefile,v 1.4 2002/11/22 02:37:37 margarida Exp $
|
||||
# $OpenBSD: Makefile,v 1.5 2003/01/27 22:10:56 margarida Exp $
|
||||
|
||||
COMMENT= "lightweight HTTP/SSL proxy"
|
||||
|
||||
VERSION= 1.5.1
|
||||
VERSION= 1.5.2
|
||||
DISTNAME= tinyproxy-${VERSION}
|
||||
CATEGORIES= www
|
||||
CATEGORIES= www net
|
||||
|
||||
HOMEPAGE= http://tinyproxy.sourceforge.net/
|
||||
|
||||
@ -20,13 +20,9 @@ PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
CONFIGURE_STYLE= simple
|
||||
|
||||
TP_CONFIG= ${SYSCONFDIR}/tinyproxy
|
||||
MAKE_FLAGS= CFLAGS="${CFLAGS}"
|
||||
|
||||
CONFIGURE_ARGS+= --with-config=${TP_CONFIG}/tinyproxy.conf
|
||||
|
||||
SUBST_VARS= TP_CONFIG
|
||||
|
||||
DOCS= HTTP_ERROR_CODES RFC_INFO
|
||||
DOCS= HTTP_ERROR_CODES RFC_INFO filter-howto.txt
|
||||
|
||||
REGRESS_TARGET= check
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (tinyproxy-1.5.1.tar.gz) = 2734c069eaa5af1b866d781ddce1ed3c
|
||||
RMD160 (tinyproxy-1.5.1.tar.gz) = 6c54ccc06beab18592735672b45e9a55a0d85dd6
|
||||
SHA1 (tinyproxy-1.5.1.tar.gz) = d2fb22a1a86f521c9ca52e5b6cc43eae427cdf82
|
||||
MD5 (tinyproxy-1.5.2.tar.gz) = 9844933eff961ce72ede53479e34aa5e
|
||||
RMD160 (tinyproxy-1.5.2.tar.gz) = fb91990486b2cbb0b3a7bf6c9b86c21004d495bb
|
||||
SHA1 (tinyproxy-1.5.2.tar.gz) = 41c7e95758d5763e07b01e981f44391652cd3d41
|
||||
|
@ -1,12 +1,11 @@
|
||||
#!/bin/sh
|
||||
# $OpenBSD: DEINSTALL,v 1.2 2002/08/27 02:53:29 brad Exp $
|
||||
# $OpenBSD: DEINSTALL,v 1.3 2003/01/27 22:10:56 margarida Exp $
|
||||
#
|
||||
# tinyproxy de-installation
|
||||
|
||||
set -e
|
||||
#
|
||||
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||||
PREFIX=${PKG_PREFIX:-/usr/local}
|
||||
CONFIG_DIR=${TP_CONFIG}
|
||||
CONFIG_DIR=${SYSCONFDIR}/tinyproxy
|
||||
|
||||
if [ -d $CONFIG_DIR ]; then
|
||||
echo
|
||||
|
@ -1,14 +1,12 @@
|
||||
#!/bin/sh
|
||||
# $OpenBSD: INSTALL,v 1.2 2002/08/27 02:53:29 brad Exp $
|
||||
# $OpenBSD: INSTALL,v 1.3 2003/01/27 22:10:56 margarida Exp $
|
||||
#
|
||||
# Pre/post-installation setup of tinyproxy
|
||||
|
||||
# exit on errors, use a sane path and install prefix
|
||||
#
|
||||
set -e
|
||||
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||||
PREFIX=${PKG_PREFIX:-/usr/local}
|
||||
CONFIG_DIR=${TP_CONFIG}
|
||||
CONFIG_DIR=${SYSCONFDIR}/tinyproxy
|
||||
SAMPLE_CONFIG_DIR=$PREFIX/share/examples/tinyproxy
|
||||
|
||||
do_notice()
|
||||
@ -16,21 +14,22 @@ do_notice()
|
||||
echo
|
||||
echo "+------------"
|
||||
echo "| The existing $1 configuration file in $CONFIG_DIR,"
|
||||
echo "| have NOT been changed. You may want to compare them to the"
|
||||
echo "| current sample file in $SAMPLE_CONFIG_DIR,"
|
||||
echo "| and update your configuration as needed."
|
||||
echo "| has NOT been changed. You may want to compare it to"
|
||||
echo "| the current sample file in $SAMPLE_CONFIG_DIR, and"
|
||||
echo "| update your configuration as needed."
|
||||
echo "+------------"
|
||||
}
|
||||
|
||||
do_install()
|
||||
{
|
||||
install -d -o root -g wheel -m 755 $CONFIG_DIR
|
||||
install -o root -g wheel -m 644 $SAMPLE_CONFIG_DIR/tinyproxy.conf ${CONFIG_DIR}
|
||||
install -o root -g wheel -m 644 $SAMPLE_CONFIG_DIR/tinyproxy.conf $CONFIG_DIR
|
||||
echo
|
||||
echo "+------------"
|
||||
echo "| The $1 configuration file have been installed into"
|
||||
echo "| $CONFIG_DIR. Please view this file and change the"
|
||||
echo "| configuration to meet your needs."
|
||||
echo "| The $1 configuration file has been installed into"
|
||||
echo "| $CONFIG_DIR."
|
||||
echo "| Please view this file and change the configuration"
|
||||
echo "| to meet your needs."
|
||||
echo "+------------"
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,9 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2002/08/12 22:49:34 couderc Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.2 2003/01/27 22:10:56 margarida Exp $
|
||||
man/man8/tinyproxy.8
|
||||
sbin/tinyproxy
|
||||
share/doc/tinyproxy/HTTP_ERROR_CODES
|
||||
share/doc/tinyproxy/RFC_INFO
|
||||
share/doc/tinyproxy/filter-howto.txt
|
||||
share/examples/tinyproxy/tinyproxy.conf
|
||||
@dirrm share/examples/tinyproxy
|
||||
@dirrm share/doc/tinyproxy
|
||||
|
Loading…
Reference in New Issue
Block a user