From peter.thoenen@yahoo.com  Thu Aug  3 20:34:38 2006
Return-Path: <peter.thoenen@yahoo.com>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id DD1B216A4DF
	for <FreeBSD-gnats-submit@freebsd.org>; Thu,  3 Aug 2006 20:34:37 +0000 (UTC)
	(envelope-from peter.thoenen@yahoo.com)
Received: from web51906.mail.yahoo.com (web51906.mail.yahoo.com [206.190.48.69])
	by mx1.FreeBSD.org (Postfix) with SMTP id 75C2843D45
	for <FreeBSD-gnats-submit@freebsd.org>; Thu,  3 Aug 2006 20:34:37 +0000 (GMT)
	(envelope-from peter.thoenen@yahoo.com)
Received: (qmail 99180 invoked by uid 60001); 3 Aug 2006 20:34:36 -0000
Received: from [65.30.181.128] by web51906.mail.yahoo.com via HTTP; Thu, 03 Aug 2006 13:34:36 PDT
Message-Id: <20060803203436.99178.qmail@web51906.mail.yahoo.com>
Date: Thu, 3 Aug 2006 13:34:36 -0700 (PDT)
From: Peter Thoenen <peter.thoenen@yahoo.com>
Reply-To: eol1@yahoo.com
To: FreeBSD-gnats-submit@freebsd.org
Subject: [UPDATE] security/tor

>Number:         101331
>Category:       ports
>Synopsis:       update security/tor
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Aug 03 20:40:11 GMT 2006
>Closed-Date:    Sun Aug 06 12:28:17 GMT 2006
>Last-Modified:  Sun Aug 06 12:28:17 GMT 2006
>Originator:     Peter Thoenen <peter.thoenen@yahoo.com>
>Release:        FreeBSD 6.1-RELEASE-p1 i386
>Organization:
>Environment:
>Description:
        Update to latest release.
--0-1708347829-1154637276=:97192
Content-Type: text/plain; name="tor.diff.txt"
Content-Description: 3935507696-tor.diff.txt
Content-Disposition: inline; filename="tor.diff.txt"

diff -ruN tor.orig/Makefile tor/Makefile
--- tor.orig/Makefile	Thu Aug  3 04:49:00 2006
+++ tor/Makefile	Thu Aug  3 15:29:20 2006
@@ -1,12 +1,12 @@
-# ports collection makefile for:	tor-devel
+# ports collection makefile for:	tor
 # Date created:				2005.10.20
 # Whom:					peter.thoenen@yahoo.com
 #
-# $FreeBSD: ports/security/tor/Makefile,v 1.21 2006/08/03 09:49:00 johans Exp $
+# $FreeBSD: ports/security/tor/Makefile,v 1.30 2006/08/01 02:48:07 clsung Exp $
 #
 
 PORTNAME=	tor
-PORTVERSION=	0.1.1.20
+PORTVERSION=	0.1.1.23
 CATEGORIES=	security net
 MASTER_SITES=	http://tor.eff.org/dist/ \
 		http://mirror.onionland.org/dist/
diff -ruN tor.orig/distinfo tor/distinfo
--- tor.orig/distinfo	Thu Aug  3 04:49:00 2006
+++ tor/distinfo	Thu Aug  3 15:28:30 2006
@@ -1,3 +1,3 @@
-MD5 (tor-0.1.1.20.tar.gz) = 51aac1749ff2549e8f3e1a172dc66992
-SHA256 (tor-0.1.1.20.tar.gz) = b251fd9079a40345beb5b67bcdf30c3292ee9220d2d062d583b89f3526015138
-SIZE (tor-0.1.1.20.tar.gz) = 828833
+MD5 (tor-0.1.1.23.tar.gz) = 33ce7155f545c4d30cb846d7017cc6c2
+SHA256 (tor-0.1.1.23.tar.gz) = a2ac0b10089902c2de8649e07823dc46b8876cd3e0236505e5e7f1f49ee11025
+SIZE (tor-0.1.1.23.tar.gz) = 847906
diff -ruN tor.orig/files/tor.in tor/files/tor.in
--- tor.orig/files/tor.in	Thu Aug  3 04:49:00 2006
+++ tor/files/tor.in	Thu Aug  3 15:29:49 2006
@@ -1,12 +1,14 @@
 #!/bin/sh
 #
-# $FreeBSD: ports/security/tor/files/tor.in,v 1.1 2006/08/03 09:49:00 johans Exp $
+# $FreeBSD: ports/security/tor/files/tor.in,v 1.5 2006/07/10 01:41:28 nobutaka Exp $
 #
 # PROVIDE: tor
 # REQUIRE: NETWORKING SERVERS USR
 # BEFORE: LOGIN
 #
-# Add the following lines to /etc/rc.conf to enable tor
+# Add the following lines to /etc/rc.conf to enable tor.
+# All these options will overide any settings in your local torrc as
+# they are command line options.
 #
 # tor_enable (bool):	Set to "NO" by default
 #			Set it to "YES" to enable tor
@@ -15,8 +17,7 @@
 # tor_user (str):	Tor Daemon user. Default _tor
 # tor_group (str):	Tor Daemon group. Default _tor
 # tor_datadir (str):	Tor DataDir.  Defaults /var/db/tor
-# 			This will overide your torrc as it is
-# 			a command line option.
+# tor_logfile (str):	Tor Log File.  Defaults /var/log/tor
 #
 
 . %%RC_SUBR%%
@@ -36,8 +37,9 @@
 
 required_files=${tor_conf}
 required_dirs=${tor_datadir}
+pidfile=${tor_pidfile}
 command="%%PREFIX%%/bin/${name}"
-command_args="-f ${tor_conf} --pidfile ${tor_pidfile} --runasdaemon 1 --datadirectory ${tor_datadir} --user ${tor_user} --group ${tor_group}"
+command_args="-f ${tor_conf} --pidfile ${tor_pidfile} --runasdaemon 1 --datadirectory ${tor_datadir} --user ${tor_user} --group ${tor_group} --log \"notice file ${tor_logfile}\""
 extra_commands="log"
 log_cmd="${name}_log"
 

--0-1708347829-1154637276=:97192--
>How-To-Repeat:
>Fix:
>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: arved 
State-Changed-When: Sun Aug 6 12:26:42 UTC 2006 
State-Changed-Why:  
Committed, thanks. 

Please submit your patch in the "Fix" section next time. 
Please make your patches against the latest version in CVS next time. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=101331 
>Unformatted:
 --0-1708347829-1154637276=:97192
 Content-Type: text/plain; charset=iso-8859-1
 Content-Transfer-Encoding: 8bit
 Content-Id: 
 Content-Disposition: inline
 
