From root@marcus.grupos.com.br  Sat Oct  1 01:03:26 2005
Return-Path: <root@marcus.grupos.com.br>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id 99AD316A41F
	for <FreeBSD-gnats-submit@freebsd.org>; Sat,  1 Oct 2005 01:03:26 +0000 (GMT)
	(envelope-from root@marcus.grupos.com.br)
Received: from mail.grupos.com.br (mail.grupos.com.br [200.203.183.72])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 2621343D48
	for <FreeBSD-gnats-submit@freebsd.org>; Sat,  1 Oct 2005 01:03:26 +0000 (GMT)
	(envelope-from root@marcus.grupos.com.br)
Received: from corp.grupos.com.br (unknown [150.162.166.55])
	by mail.grupos.com.br (Postfix) with ESMTP id 82E4511E0B8
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 30 Sep 2005 22:03:24 -0300 (BRT)
Received: from marcus.grupos.com.br (unknown [150.162.166.51])
	by corp.grupos.com.br (Postfix) with ESMTP id 6498F550F
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 30 Sep 2005 22:03:24 -0300 (BRT)
Received: by marcus.grupos.com.br (Postfix, from userid 0)
	id E839C1D; Fri, 30 Sep 2005 22:03:23 -0300 (BRT)
Message-Id: <20051001010323.E839C1D@marcus.grupos.com.br>
Date: Fri, 30 Sep 2005 22:03:23 -0300 (BRT)
From: Marcus Alves Grando <mnag@FreeBSD.org>
Reply-To: Marcus Alves Grando <mnag@FreeBSD.org>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: Update port: net/pptpclient to 1.7.0
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         86773
>Category:       ports
>Synopsis:       Update port: net/pptpclient to 1.7.0
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    mnag
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Sat Oct 01 01:10:16 GMT 2005
>Closed-Date:    Sun Oct 02 22:21:57 GMT 2005
>Last-Modified:  Sun Oct 02 22:21:57 GMT 2005
>Originator:     Marcus Alves Grando
>Release:        FreeBSD 6.0-BETA5 i386
>Organization:
>Environment:
System: FreeBSD marcus.grupos.com.br 6.0-BETA5 FreeBSD 6.0-BETA5 #16: Fri Sep 30 11:20:56 BRT 2005 root@marcus.grupos.com.br:/space/obj/usr/src/sys/MARCUS i386


	
>Description:

Update to 1.7.0

	
>How-To-Repeat:
	
>Fix:

	

--- pptpclient.patch begins here ---
Update to 1.7.0

Index: Makefile
===================================================================
RCS file: /home/pcvs/ports/net/pptpclient/Makefile,v
retrieving revision 1.12
diff -u -r1.12 Makefile
--- Makefile	29 Sep 2005 12:35:59 -0000	1.12
+++ Makefile	1 Oct 2005 01:01:32 -0000
@@ -1,12 +1,12 @@
 # New ports collection makefile for:	pptpclient
-# Date created:		19 June 1999
-# Whom:			John Polstra <jdp@freebsd.org>
+# Date created:				19 June 1999
+# Whom:					John Polstra <jdp@freebsd.org>
 #
 # $FreeBSD: ports/net/pptpclient/Makefile,v 1.12 2005/09/29 12:35:59 mnag Exp $
 #
 
 PORTNAME=		pptpclient
-PORTVERSION=		1.6.0
+PORTVERSION=		1.7.0
 CATEGORIES=		net
 MASTER_SITES=		${MASTER_SITE_SOURCEFORGE}
 MASTER_SITE_SUBDIR=	pptpclient
Index: distinfo
===================================================================
RCS file: /home/pcvs/ports/net/pptpclient/distinfo,v
retrieving revision 1.7
diff -u -r1.7 distinfo
--- distinfo	29 Sep 2005 12:35:59 -0000	1.7
+++ distinfo	1 Oct 2005 01:01:32 -0000
@@ -1,2 +1,2 @@
-MD5 (pptp-1.6.0.tar.gz) = 9a706327fb9827541d7c86d48ceb9631
-SIZE (pptp-1.6.0.tar.gz) = 225956
+MD5 (pptp-1.7.0.tar.gz) = 0bc7dbd1c265e4263008fa7883de58dd
+SIZE (pptp-1.7.0.tar.gz) = 227699
Index: files/patch-pptp_ctrl.c
===================================================================
RCS file: files/patch-pptp_ctrl.c
diff -N files/patch-pptp_ctrl.c
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ files/patch-pptp_ctrl.c	1 Oct 2005 01:01:32 -0000
@@ -0,0 +1,20 @@
+--- pptp_ctrl.c.orig	Fri Sep 30 21:56:59 2005
++++ pptp_ctrl.c	Fri Sep 30 21:57:27 2005
+@@ -457,6 +457,8 @@
+ void pptp_fd_set(PPTP_CONN * conn, fd_set * read_set, fd_set * write_set,
+                  int * max_fd)
+ {
++    int sig_fd;
++
+     assert(conn && conn->call);
+     /* Add fd to write_set if there are outstanding writes. */
+     if (conn->write_size > 0)
+@@ -465,7 +467,7 @@
+     FD_SET(conn->inet_sock, read_set);
+     if (*max_fd < conn->inet_sock) *max_fd = conn->inet_sock;
+     /* Add signal pipe file descriptor to set */
+-    int sig_fd = sigpipe_fd();
++    sig_fd = sigpipe_fd();
+     FD_SET(sig_fd, read_set);
+     if (*max_fd < sig_fd) *max_fd = sig_fd;
+ }
--- pptpclient.patch ends here ---


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->mnag 
Responsible-Changed-By: mnag 
Responsible-Changed-When: Sat Oct 1 01:18:10 GMT 2005 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=86773 
State-Changed-From-To: open->feedback 
State-Changed-By: mnag 
State-Changed-When: Sat Oct 1 01:18:19 GMT 2005 
State-Changed-Why:  
Ask for maintainer approval. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=86773 

From: Marcus Alves Grando <mnag@FreeBSD.org>
To: bug-followup@FreeBSD.org,  thomas@cuivre.fr.eu.org
Cc:  
Subject: Re: ports/86773: Update port: net/pptpclient to 1.7.0
Date: Fri, 30 Sep 2005 22:22:16 -0300

 Dear maintainer,
 
 Do you approve this update?
 
 http://www.freebsd.org/cgi/query-pr.cgi?pr=86773
 
 Thanks
 
 -- 
 Marcus Alves Grando
 Grupos Internet S/A
 marcus(at)corp.grupos.com.br
   mnag(at)FreeBSD.org

From: Thomas Quinot <thomas@FreeBSD.ORG>
To: bug-followup@FreeBSD.org, mnag@FreeBSD.org
Cc:  
Subject: Re: ports/86773: Update port: net/pptpclient to 1.7.0
Date: Sun, 2 Oct 2005 21:45:48 +0200

 --rwEMma7ioTxnRzrJ
 Content-Type: text/plain; charset=us-ascii
 Content-Disposition: inline
 
 * Marcus Alves Grando, 2005-10-01 :
 
 > Dear maintainer,
 > Do you approve this update?
 > http://www.freebsd.org/cgi/query-pr.cgi?pr=86773
 
 Approved, please go ahead and commit!
 
 Thanks,
 Thomas.
 
 
 --rwEMma7ioTxnRzrJ
 Content-Type: application/pgp-signature
 Content-Disposition: inline
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.0 (FreeBSD)
 
 iD8DBQFDQDjrAE1UuDk9JGkRAqEJAJwOr51x35opJR+IYDjRp6NxFIIckQCeN8ti
 i7QgOkDmjSH/QZLNyC3vmgw=
 =JT44
 -----END PGP SIGNATURE-----
 
 --rwEMma7ioTxnRzrJ--
State-Changed-From-To: feedback->closed 
State-Changed-By: mnag 
State-Changed-When: Sun Oct 2 22:21:56 GMT 2005 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=86773 
>Unformatted:
