From jhein@timing.com  Mon Aug 13 16:54:50 2007
Return-Path: <jhein@timing.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id DF99A16A418
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 13 Aug 2007 16:54:49 +0000 (UTC)
	(envelope-from jhein@timing.com)
Received: from Daffy.timing.com (w.timing.com [206.168.13.218])
	by mx1.freebsd.org (Postfix) with ESMTP id A272713C45E
	for <FreeBSD-gnats-submit@freebsd.org>; Mon, 13 Aug 2007 16:54:49 +0000 (UTC)
	(envelope-from jhein@timing.com)
Received: from bugs.timing.com (bugs.timing.com [206.168.13.186])
	by Daffy.timing.com (8.13.1/8.13.1) with ESMTP id l7DGsnwI065399;
	Mon, 13 Aug 2007 10:54:49 -0600 (MDT)
	(envelope-from jhein@timing.com)
Received: from bugs.timing.com (localhost [127.0.0.1])
	by bugs.timing.com (8.14.1/8.14.1) with ESMTP id l7DGsmgS013903;
	Mon, 13 Aug 2007 10:54:48 -0600 (MDT)
	(envelope-from jhein@bugs.timing.com)
Received: (from jhein@localhost)
	by bugs.timing.com (8.14.1/8.14.1/Submit) id l7DGsmq1013902;
	Mon, 13 Aug 2007 10:54:48 -0600 (MDT)
	(envelope-from jhein)
Message-Id: <200708131654.l7DGsmq1013902@bugs.timing.com>
Date: Mon, 13 Aug 2007 10:54:48 -0600 (MDT)
From: "John E. Hein" <jhein@timing.com>
Reply-To: "John E. Hein" <jhein@timing.com>
To: FreeBSD-gnats-submit@freebsd.org
Subject: update devel/libftdi
X-Send-Pr-Version: 3.113
X-GNATS-Notify: o.davydenko@gmail.com

>Number:         115472
>Category:       ports
>Synopsis:       update devel/libftdi
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    araujo
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Aug 13 17:00:03 GMT 2007
>Closed-Date:    Wed Sep 19 18:24:01 GMT 2007
>Last-Modified:  Wed Sep 19 19:10:02 GMT 2007
>Originator:     John E. Hein
>Release:        FreeBSD 6.2-STABLE i386
>Organization:
>Environment:

>Description:
	Update devel/libftdi

New in 0.10
-----------
* Examples for libftdi_usb_find_all and CBUS mode
* Fixed ftdi_list_free
* Small cosmetic changes

New in 0.9
----------
* Fixed build without doxygen
* Correct .so file library version

New in 0.8
----------
* Complete doxygen documentation and examples
* Extended FT2232C bitbang mode example code (Max)
* ftdi_usb_get_strings function to get device ID strings (Matthijs ten Berge)
* Fix ftdi_read_pins on PowerPC systems (Thomas Fischl)
* Automatically detach ftdi_sio kernel driver (Uwe Bonnes and Intra2net)
* Configurable flow control (Lorenz Moesenlechner and Matthias Kranz)

>How-To-Repeat:

N/A

>Fix:

Go ahead for update given by maintainer...

========================================================
From: Alexandr Davidenko <o.davydenko@gmail.com>
To: John E Hein <jhein@timing.com>
Date: Fri, 3 Aug 2007 09:28:56 +0300

Hi!

Written by John E Hein at 2007 August 02 15:12:38 (-0600)
> Here's a patch to update libftdi...
> 
> Do you want me to submit a PR?
> 
Yes, please submit.
I am very busy and forgot about updatings of libftdi, sorry :(

-- 
WBR,
	Davidenko Alexandr
========================================================


Index: ports/devel/libftdi/Makefile
===================================================================
RCS file: /base/FreeBSD-CVS/ports/devel/libftdi/Makefile,v
retrieving revision 1.3
diff -u -p -r1.3 Makefile
--- ports/devel/libftdi/Makefile	28 Jan 2007 09:07:37 -0000	1.3
+++ ports/devel/libftdi/Makefile	13 Aug 2007 16:47:35 -0000
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	libftdi
-PORTVERSION=	0.7
+PORTVERSION=	0.10
 CATEGORIES=	devel
 MASTER_SITES=	http://www.intra2net.com/de/produkte/opensource/ftdi/TGZ/
 
@@ -17,18 +17,24 @@ LIB_DEPENDS=	usb-0.1:${PORTSDIR}/devel/l
 
 USE_AUTOTOOLS=	libtool:15
 GNU_CONFIGURE=		yes
-CONFIGURE_ENV=		CFLAGS="${CFLAGS} -I${LOCALBASE}/include"
+CONFIGURE_ENV=		CFLAGS="${CFLAGS}"
 CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
 USE_LDCONFIG=		yes
 USE_GNOME=		pkgconfig gnomehack
 
 PORTDOCS=		COPYING.LIB ChangeLog README
-PLIST_FILES=		bin/libftdi-config \
+PLIST_FILES=		bin/bitbang \
+				bin/bitbang2 \
+				bin/bitbang_cbus \
+				bin/bitbang_ft2232 \
+				bin/find_all \
+				bin/libftdi-config \
+				bin/simple \
 				include/ftdi.h \
 				lib/libftdi.a \
 				lib/libftdi.la \
 				lib/libftdi.so \
-				lib/libftdi.so.7 \
+				lib/libftdi.so.10 \
 				libdata/pkgconfig/libftdi.pc
 
 post-install:
Index: ports/devel/libftdi/distinfo
===================================================================
RCS file: /base/FreeBSD-CVS/ports/devel/libftdi/distinfo,v
retrieving revision 1.1
diff -u -p -r1.1 distinfo
--- ports/devel/libftdi/distinfo	29 Jul 2006 20:15:51 -0000	1.1
+++ ports/devel/libftdi/distinfo	2 Aug 2007 20:45:38 -0000
@@ -1,3 +1,3 @@
-MD5 (libftdi-0.7.tar.gz) = c9ba4ea7544799e81cbd881f90ee3574
-SHA256 (libftdi-0.7.tar.gz) = 1d1b93227135d50230e6b0ba4eab91df45d293352b4cba83443787eba4398229
-SIZE (libftdi-0.7.tar.gz) = 171953
+MD5 (libftdi-0.10.tar.gz) = 21ec9cc5aae63fa2e2b52c530882e483
+SHA256 (libftdi-0.10.tar.gz) = e7465637b7de4da0754a908e7fd78082dcf08969b3103bb0b02d24c0a71d9c32
+SIZE (libftdi-0.10.tar.gz) = 238260
>Release-Note:
>Audit-Trail:
Class-Changed-From-To: maintainer-update->change-request 
Class-Changed-By: edwin 
Class-Changed-When: Mon Aug 13 17:00:17 UTC 2007 
Class-Changed-Why:  
Fix category (submitter is not maintainer) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=115472 
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Mon Aug 13 17:00:26 UTC 2007 
State-Changed-Why:  
Awaiting maintainers feedback 

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

From: Alexandr Davidenko <o.davydenko@gmail.com>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/115472: update devel/libftdi
Date: Tue, 14 Aug 2007 10:26:00 +0300

 Written by Edwin Groothuis at 2007 August 13 17:00:22 (+0000)
 > Maintainer of devel/libftdi,
 > 
 > Please note that PR ports/115472 has just been submitted.
 > 
 > If it contains a patch for an upgrade, an enhancement or a bug fix
 > you agree on, reply to this email stating that you approve the patch
 > and a committer will take care of it.
 > 
 > The full text of the PR can be found at:
 >     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/115472
 
 Yes, approve .
 Thanks.
 
 -- 
 WBR,
 	Davidenko Alexandr
Responsible-Changed-From-To: freebsd-ports-bugs->araujo 
Responsible-Changed-By: araujo 
Responsible-Changed-When: Wed Sep 5 14:35:30 UTC 2007 
Responsible-Changed-Why:  
I'll take it. 

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

From: Marcelo Araujo <araujobsdport@gmail.com>
To: jhein@timing.com
Cc: o.davydenko@gmail.com, Ion-Mihai Tetcu <itetcu@FreeBSD.org>, 
 stas@mbsd.msk.ru,  bug-followup@FreeBSD.org
Subject: ports/115472: update devel/libftdi
Date: Tue, 18 Sep 2007 23:44:30 -0300

 This is an OpenPGP/MIME signed message (RFC 2440 and 3156)
 --------------enigE251DE38767C15E078C6E174
 Content-Type: text/plain; charset=UTF-8
 Content-Transfer-Encoding: quoted-printable
 
 Hi guys,
 
 We have a error to rebuild this package with the patch!
 You can reserve a short time to review this patch or solve this problem?
 See the log at:
  http://200.247.114.5/tb/errors/6.2-RELEASE/libftdi-0.10.log
 
 Best Regards.
 
 --=20
 Marcelo Araujo            (__)
 araujo@FreeBSD.org     \\\'',)
 http://www.FreeBSD.org   \/  \ ^
 Power To Server.         .\. /_)
 
 
 
 --------------enigE251DE38767C15E078C6E174
 Content-Type: application/pgp-signature; name="signature.asc"
 Content-Description: OpenPGP digital signature
 Content-Disposition: attachment; filename="signature.asc"
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.7 (FreeBSD)
 
 iD8DBQFG8I0UovxJd1Pkz6gRAlUHAJ9cGF/kVylu1NqUcyQpsvP3SBHX4gCcC91g
 jPgcYYlasHNnpQOPJyYfAZw=
 =9AP9
 -----END PGP SIGNATURE-----
 
 --------------enigE251DE38767C15E078C6E174--
State-Changed-From-To: feedback->analyzed 
State-Changed-By: araujo 
State-Changed-When: Wed Sep 19 03:11:56 UTC 2007 
State-Changed-Why:  
I'm waiting feedback. 

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

From: Alexandr Davidenko <o.davydenko@gmail.com>
To: araujo@FreeBSD.org
Cc: jhein@timing.com, Ion-Mihai Tetcu <itetcu@FreeBSD.org>,
	stas@mbsd.msk.ru, bug-followup@FreeBSD.org
Subject: Re: ports/115472: update devel/libftdi
Date: Wed, 19 Sep 2007 10:46:06 +0300

 Hi!
 
 Written by Marcelo Araujo at 2007 September 18 23:44:30 (-0300)
 > We have a error to rebuild this package with the patch!
 > You can reserve a short time to review this patch or solve this problem?
 > See the log at:
 >  http://200.247.114.5/tb/errors/6.2-RELEASE/libftdi-0.10.log
 
 I see in log this: "ftdi.c:31:17: usb.h: No such file or directory"
 
 Missing usb.h - header file from libusb. 
 
 Build libusb or install package from ftp - in both variants usb.h
 installed in /usr/local/include/ and libftdi with this patch rebuilded
 without any errors.
 
 -- 
 Davidenko Alexandr

From: Marcelo Araujo <araujobsdport@gmail.com>
To: Alexandr Davidenko <o.davydenko@gmail.com>
Cc: jhein@timing.com, Ion-Mihai Tetcu <itetcu@FreeBSD.org>, 
 stas@mbsd.msk.ru,  bug-followup@FreeBSD.org
Subject: Re: ports/115472: update devel/libftdi
Date: Wed, 19 Sep 2007 09:03:35 -0300

 This is an OpenPGP/MIME signed message (RFC 2440 and 3156)
 --------------enigD51662D9768203553B0EF4B8
 Content-Type: text/plain; charset=KOI8-U
 Content-Transfer-Encoding: quoted-printable
 
 Alexandr Davidenko wrote:
 > I see in log this: "ftdi.c:31:17: usb.h: No such file or directory"
 >
 > Missing usb.h - header file from libusb.=20
 >
 > Build libusb or install package from ftp - in both variants usb.h
 > installed in /usr/local/include/ and libftdi with this patch rebuilded
 > without any errors.
 >
 >  =20
 Hi dear Alexandr,
 
 You are right about usb.h, however using 'port test' and tinderbox for
 to automate the package test, we have this problem, I install and
 deinstall this package and not have any problem. I believe, in few
 hours, I investigate better.
 
 Thanks.
 
 --=20
 Marcelo Araujo            (__)
 araujo@FreeBSD.org     \\\'',)
 http://www.FreeBSD.org   \/  \ ^
 Power To Server.         .\. /_)
 
 
 
 --------------enigD51662D9768203553B0EF4B8
 Content-Type: application/pgp-signature; name="signature.asc"
 Content-Description: OpenPGP digital signature
 Content-Disposition: attachment; filename="signature.asc"
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.7 (FreeBSD)
 
 iD8DBQFG8RAaovxJd1Pkz6gRAtLYAKCcFRvEVRHNTIPfaj2u79Qz0SYqpQCeMCdl
 giCLAxF8XozUQuHFo+/jdwk=
 =cQDL
 -----END PGP SIGNATURE-----
 
 --------------enigD51662D9768203553B0EF4B8--

From: John E Hein <jhein@timing.com>
To: araujo@FreeBSD.org
Cc: o.davydenko@gmail.com, Ion-Mihai Tetcu <itetcu@FreeBSD.org>,
        stas@mbsd.msk.ru, bug-followup@FreeBSD.org
Subject: Re: ports/115472: update devel/libftdi
Date: Wed, 19 Sep 2007 10:36:54 -0600

 Marcelo Araujo wrote at 23:44 -0300 on Sep 18, 2007:
  > Hi guys,
  > 
  > We have a error to rebuild this package with the patch!
  > You can reserve a short time to review this patch or solve this problem?
  > See the log at:
  >  http://200.247.114.5/tb/errors/6.2-RELEASE/libftdi-0.10.log
 
 404 - Not Found
 
 If you want me to look at it still, please restore
 the error log.

From: Marcelo Araujo <araujobsdport@gmail.com>
To: Alexandr Davidenko <o.davydenko@gmail.com>
Cc: jhein@timing.com, Ion-Mihai Tetcu <itetcu@FreeBSD.org>, 
 stas@mbsd.msk.ru,  bug-followup@FreeBSD.org
Subject: Re: ports/115472: update devel/libftdi
Date: Wed, 19 Sep 2007 14:07:21 -0300

 This is an OpenPGP/MIME signed message (RFC 2440 and 3156)
 --------------enigE4E8780DCE28CEBFD7A6E183
 Content-Type: text/plain; charset=KOI8-U
 Content-Transfer-Encoding: quoted-printable
 
 Alexandr Davidenko wrote:
 > I see in log this: "ftdi.c:31:17: usb.h: No such file or directory"
 >
 > Missing usb.h - header file from libusb.=20
 >
 > Build libusb or install package from ftp - in both variants usb.h
 > installed in /usr/local/include/ and libftdi with this patch rebuilded
 > without any errors.
 >
 >  =20
 Hi Alexandr,
 
 I found the error in the patch, I fixed it and on few hours I commit it.
 Forgot to include the include directory in CONFIGURE_ENV!
 
 -CONFIGURE_ENV=3D          CFLAGS=3D"${CFLAGS} -I${LOCALBASE}/include"
 +CONFIGURE_ENV=3D          CFLAGS=3D"${CFLAGS}"
 
 See the log at: http://200.247.114.5/tb/logs/6.2-RELEASE/libftdi-0.10.log=
 
 
 Thanks.
 
 --=20
 Marcelo Araujo            (__)
 araujo@FreeBSD.org     \\\'',)
 http://www.FreeBSD.org   \/  \ ^
 Power To Server.         .\. /_)
 
 
 
 --------------enigE4E8780DCE28CEBFD7A6E183
 Content-Type: application/pgp-signature; name="signature.asc"
 Content-Description: OpenPGP digital signature
 Content-Disposition: attachment; filename="signature.asc"
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.7 (FreeBSD)
 
 iD8DBQFG8VdOovxJd1Pkz6gRArsbAKCHwIDn416j1P4zXid7tGXMd2ZMlwCdG2Hd
 Mgh1E22BlfySpZryhRWHGtE=
 =8/Cn
 -----END PGP SIGNATURE-----
 
 --------------enigE4E8780DCE28CEBFD7A6E183--

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/115472: commit references a PR
Date: Wed, 19 Sep 2007 18:18:33 +0000 (UTC)

 araujo      2007-09-19 18:18:29 UTC
 
   FreeBSD ports repository
 
   Modified files:
     devel/libftdi        Makefile distinfo 
   Added files:
     devel/libftdi        pkg-plist 
   Log:
   - Update to 0.10.
   
   PR:             ports/115472
   Submitted by:   John E. Hein <jhein@timing.com>
   Approved by:    stas (mentor), Alexandr Davidenko <o.davydenko@gmail.com> (maintainer)
   
   Revision  Changes    Path
   1.4       +2 -11     ports/devel/libftdi/Makefile
   1.2       +3 -3      ports/devel/libftdi/distinfo
   1.1       +13 -0     ports/devel/libftdi/pkg-plist (new)
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
State-Changed-From-To: analyzed->closed 
State-Changed-By: araujo 
State-Changed-When: Wed Sep 19 18:23:57 UTC 2007 
State-Changed-Why:  
Committed, with minor changes. Thanks! 

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

From: John E Hein <jhein@timing.com>
To: araujo@FreeBSD.org
Cc: Alexandr Davidenko <o.davydenko@gmail.com>,
        Ion-Mihai Tetcu <itetcu@FreeBSD.org>, stas@mbsd.msk.ru,
        bug-followup@FreeBSD.org
Subject: Re: ports/115472: update devel/libftdi
Date: Wed, 19 Sep 2007 13:06:43 -0600

 Marcelo Araujo wrote at 14:07 -0300 on Sep 19, 2007:
  > Alexandr Davidenko wrote:
  > > I see in log this: "ftdi.c:31:17: usb.h: No such file or directory"
  > >
  > > Missing usb.h - header file from libusb. 
  > >
  > > Build libusb or install package from ftp - in both variants usb.h
  > > installed in /usr/local/include/ and libftdi with this patch rebuilded
  > > without any errors.
  > >
  > >   
  > Hi Alexandr,
  > 
  > I found the error in the patch, I fixed it and on few hours I commit it.
  > Forgot to include the include directory in CONFIGURE_ENV!
  > 
  > -CONFIGURE_ENV=          CFLAGS="${CFLAGS} -I${LOCALBASE}/include"
  > +CONFIGURE_ENV=          CFLAGS="${CFLAGS}"
 
 Yes, that part of the original patch was an unintended removal.
 Thanks.
>Unformatted:
