From nobody@FreeBSD.org  Thu Feb 12 01:08:46 2009
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id E27C0106567C
	for <freebsd-gnats-submit@FreeBSD.org>; Thu, 12 Feb 2009 01:08:46 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21])
	by mx1.freebsd.org (Postfix) with ESMTP id CA1E18FC13
	for <freebsd-gnats-submit@FreeBSD.org>; Thu, 12 Feb 2009 01:08:46 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.14.3/8.14.3) with ESMTP id n1C18kko041961
	for <freebsd-gnats-submit@FreeBSD.org>; Thu, 12 Feb 2009 01:08:46 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.14.3/8.14.3/Submit) id n1C18kig041945;
	Thu, 12 Feb 2009 01:08:46 GMT
	(envelope-from nobody)
Message-Id: <200902120108.n1C18kig041945@www.freebsd.org>
Date: Thu, 12 Feb 2009 01:08:46 GMT
From: Wen Heping <wenheping@gmail.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [Update]astro/gpsd:update to 2.38
X-Send-Pr-Version: www-3.1
X-GNATS-Notify: toxa@toxahost.ru

>Number:         131599
>Category:       ports
>Synopsis:       [Update]astro/gpsd:update to 2.38
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Thu Feb 12 01:10:00 UTC 2009
>Closed-Date:    Sat Feb 28 19:56:10 UTC 2009
>Last-Modified:  Sat Feb 28 20:00:12 UTC 2009
>Originator:     Wen Heping
>Release:        FreeBSD-8.0 Current
>Organization:
ChangAn Middle School
>Environment:
FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #1: Tue Dec 16 00:26:59 HKT 2008     root@fb8.wenjing.com:/usr/obj/usr/src/sys/GENERIC  i386
>Description:
update to 2.38 from 2.37
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

--- Makefile.orig	2009-02-12 16:34:37.000000000 +0800
+++ Makefile	2009-02-12 16:55:01.000000000 +0800
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	gpsd
-PORTVERSION=	2.37
+PORTVERSION=	2.38
 CATEGORIES=	astro geography
 MASTER_SITES=	${MASTER_SITE_BERLIOS}
 MASTER_SITE_SUBDIR=	${PORTNAME}
@@ -24,6 +24,7 @@
 USE_LDCONFIG=	yes
 CONFIGURE_ENV=	CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS}" \
 		LDFLAGS="${LDFLAGS} ${PTHREAD_LIBS}"
+
 MAN1=	cgps.1 cgpxlogger.1 gps.1 gpscat.1 gpsctl.1 gpsfake.1 gpsflash.1 \
 	gpspipe.1 gpsprof.1 rtcmdecode.1 sirfmon.1 xgps.1 xgpsspeed.1
 MAN3=	libgps.3 libgpsd.3 libgpsmm.3
@@ -33,16 +34,27 @@
 
 OPTIONS=	XGPS "Build xgps and xgpsspeed (require X)" off \
 		NMEA "NMEA support" on \
-		SIRFII "SiRF-II chipset support" on \
+		SIRF "SiRF chipset support" on \
+		SUPERSTARII "SuperStarII support" off \
 		TSIP "Trimble TSIP support" on \
 		FV18 "San Jose Navigation FV-18 support" on \
 		TRIPMATE "DeLorme TripMate support" on \
 		EARTHMATE "DeLorme EarthMate Zodiac support" on \
 		ITRAX "iTrax support" on \
-		ITALK "iTalk support" on \
+		ASHTECH "Ashtech support" on \
+		NAVCOM "Navcom support" on \
+		GARMIN "Garmin kernel driver support" on \
+		GARMINTXT "Garmin Simple Text support" off \
 		TNT "True North Technologies support" off \
+		OCEANSERVER "Oceanserver support" off \
+		UBX "UBX protocol support" on \
 		EVERMORE "Evermore binary support" on \
-		RTCM104 "rtcm104 support" on \
+		MKT3301 "MKT-3301 support" on \
+		GPSCLOCK "GPSclock support" on \
+		RTCM104V2 "rtcm104v2 support" on \
+		RTCM104V3 "rtcm104v3 support" on \
+		NTRIP "NTRIP support" on \
+		PROFILING "Profiling support" off \
 		NTPSHM "TP time hinting support" on \
 		PPS "PPS time syncing support" off \
 		DBUS "DBUS support" off
@@ -67,8 +79,12 @@
 CONFIGURE_ARGS+=--disable-nmea
 .endif
 
-.if defined(WITHOUT_SIRFII)
-CONFIGURE_ARGS+=--disable-sirfII
+.if defined(WITHOUT_SIRF)
+CONFIGURE_ARGS+=--disable-sirf
+.endif
+
+.if defined(WITH_SUPERSTARII)
+CONFIGURE_ARGS+=	--enable-superstar2
 .endif
 
 .if defined(WITHOUT_TSIP)
@@ -91,20 +107,60 @@
 CONFIGURE_ARGS+=--disable-itrax
 .endif
 
-.if defined(WITHOUT_ITALK)
-CONFIGURE_ARGS+=--disable-italk
+.if defined(WITHOUT_ASHTECH)
+CONFIGURE_ARGS+=--disable-ashtech
+.endif
+
+.if defined(WITHOUT_NAVCOM)
+CONFIGURE_ARGS+=--disable-navcom
+.endif
+
+.if defined(WITHOUT_GARMIN)
+CONFIGURE_ARGS+=--disable-garmin
+.endif
+
+.if defined(WITH_GARMINTXT)
+CONFIGURE_ARGS+=--enable-garmintxt
 .endif
 
 .if defined(WITH_TNT)
 CONFIGURE_ARGS+=--enable-tnt
 .endif
 
+.if defined(WITH_OCEANSERVER)
+CONFIGURE_ARGS+=--enable-oceanserver
+.endif
+
+.if defined(WITHOUT_UBX)
+CONFIGURE_ARGS+=--disable-ubx
+.endif
+
 .if defined(WITHOUT_EVERMORE)
 CONFIGURE_ARGS+=--disable-evermore
 .endif
 
-.if defined(WITHOUT_RTCM104)
-CONFIGURE_ARGS+=--disable-rtcm104
+.if defined(WITHOUT_MKT3301)
+CONFIGURE_ARGS+=--disable-mkt3301
+.endif
+
+.if defined(WITHOUT_GPSCLOCK)
+CONFIGURE_ARGS+=--disable-gpscloclk
+.endif
+
+.if defined(WITHOUT_RTCM104V2)
+CONFIGURE_ARGS+=--disable-rtcm104v2
+.endif
+
+.if defined(WITHOUT_RTCM104V3)
+CONFIGURE_ARGS+=--disable-rtcm104v3
+.endif
+
+.if defined(WITHOUT_NTRIP)
+CONFIGURE_ARGS+=--disable-ntrip
+.endif
+
+.if defined(WITH_PROFILING)
+CONFIGURE_ARGS+=--enable-profiling
 .endif
 
 .if defined(WITHOUT_NTPSHM)
--- distinfo.orig	2009-02-12 16:34:37.000000000 +0800
+++ distinfo	2009-02-12 16:34:37.000000000 +0800
@@ -1,3 +1,3 @@
-MD5 (gpsd-2.37.tar.gz) = 6c96cc0b2df0279cb7baac1ebc5881d3
-SHA256 (gpsd-2.37.tar.gz) = 8860e61edc26f0665ad6ea0b34be4e3fd2cc7c51c5fd63b25c857a1870e8e137
-SIZE (gpsd-2.37.tar.gz) = 712943
+MD5 (gpsd-2.38.tar.gz) = 725c320ca6fa35bcdaa1de2d8908f392
+SHA256 (gpsd-2.38.tar.gz) = ae828da850ac0590fd47768856c4ec29021332204182abe4ad94098d72168474
+SIZE (gpsd-2.38.tar.gz) = 776598
--- pkg-plist.orig	2009-02-12 16:34:37.000000000 +0800
+++ pkg-plist	2009-02-12 16:48:13.000000000 +0800
@@ -5,6 +5,7 @@
 bin/cgpxlogger
 bin/gpscat
 bin/gpsctl
+bin/gpsdlcdd
 bin/gpsflash
 bin/gpsprof
 bin/sirfmon
@@ -20,9 +21,13 @@
 lib/libgps.so.17
 libdata/pkgconfig/libgps.pc
 libdata/pkgconfig/libgpsd.pc
+%%PYTHON_SITELIBDIR%%/gpslib.so
 %%PYTHON_SITELIBDIR%%/gps.py
 %%PYTHON_SITELIBDIR%%/gps.pyc
 %%PYTHON_SITELIBDIR%%/gps.pyo
+%%PYTHON_SITELIBDIR%%/gpscap.py
+%%PYTHON_SITELIBDIR%%/gpscap.pyc
+%%PYTHON_SITELIBDIR%%/gpscap.pyo
 %%PYTHON_SITELIBDIR%%/gpsfake.py
 %%PYTHON_SITELIBDIR%%/gpsfake.pyc
 %%PYTHON_SITELIBDIR%%/gpsfake.pyo


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Thu Feb 12 01:10:10 UTC 2009 
Responsible-Changed-Why:  
miwi@ wants his PRs (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=131599 
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Thu Feb 12 01:10:14 UTC 2009 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

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

From: Edwin Groothuis <edwin@FreeBSD.org>
To: toxa@toxahost.ru
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/131599: [Update]astro/gpsd:update to 2.38
Date: Thu, 12 Feb 2009 01:10:12 UT

 Maintainer of astro/gpsd,
 
 Please note that PR ports/131599 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/131599
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org
State-Changed-From-To: feedback->closed 
State-Changed-By: miwi 
State-Changed-When: Sat Feb 28 19:56:08 UTC 2009 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/131599: commit references a PR
Date: Sat, 28 Feb 2009 19:56:18 +0000 (UTC)

 miwi        2009-02-28 19:56:03 UTC
 
   FreeBSD ports repository
 
   Modified files:
     astro/gpsd           Makefile distinfo pkg-plist 
   Log:
   - Update to 2.38
   
   PR:             131599
   Submitted by:   Wen Heping <wenheping@gmail.com>
   Approved by:    maintainer timeout
   
   Revision  Changes    Path
   1.12      +66 -10    ports/astro/gpsd/Makefile
   1.5       +3 -3      ports/astro/gpsd/distinfo
   1.4       +5 -0      ports/astro/gpsd/pkg-plist
 _______________________________________________
 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"
 
>Unformatted:
