View | Details | Raw Unified | Return to bug 131599
Collapse All | Expand All

(-)Makefile (-10 / +66 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	gpsd
8
PORTNAME=	gpsd
9
PORTVERSION=	2.37
9
PORTVERSION=	2.38
10
CATEGORIES=	astro geography
10
CATEGORIES=	astro geography
11
MASTER_SITES=	${MASTER_SITE_BERLIOS}
11
MASTER_SITES=	${MASTER_SITE_BERLIOS}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 24-29 Link Here
24
USE_LDCONFIG=	yes
24
USE_LDCONFIG=	yes
25
CONFIGURE_ENV=	CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS}" \
25
CONFIGURE_ENV=	CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS}" \
26
		LDFLAGS="${LDFLAGS} ${PTHREAD_LIBS}"
26
		LDFLAGS="${LDFLAGS} ${PTHREAD_LIBS}"
27
27
MAN1=	cgps.1 cgpxlogger.1 gps.1 gpscat.1 gpsctl.1 gpsfake.1 gpsflash.1 \
28
MAN1=	cgps.1 cgpxlogger.1 gps.1 gpscat.1 gpsctl.1 gpsfake.1 gpsflash.1 \
28
	gpspipe.1 gpsprof.1 rtcmdecode.1 sirfmon.1 xgps.1 xgpsspeed.1
29
	gpspipe.1 gpsprof.1 rtcmdecode.1 sirfmon.1 xgps.1 xgpsspeed.1
29
MAN3=	libgps.3 libgpsd.3 libgpsmm.3
30
MAN3=	libgps.3 libgpsd.3 libgpsmm.3
Lines 33-48 Link Here
33
34
34
OPTIONS=	XGPS "Build xgps and xgpsspeed (require X)" off \
35
OPTIONS=	XGPS "Build xgps and xgpsspeed (require X)" off \
35
		NMEA "NMEA support" on \
36
		NMEA "NMEA support" on \
36
		SIRFII "SiRF-II chipset support" on \
37
		SIRF "SiRF chipset support" on \
38
		SUPERSTARII "SuperStarII support" off \
37
		TSIP "Trimble TSIP support" on \
39
		TSIP "Trimble TSIP support" on \
38
		FV18 "San Jose Navigation FV-18 support" on \
40
		FV18 "San Jose Navigation FV-18 support" on \
39
		TRIPMATE "DeLorme TripMate support" on \
41
		TRIPMATE "DeLorme TripMate support" on \
40
		EARTHMATE "DeLorme EarthMate Zodiac support" on \
42
		EARTHMATE "DeLorme EarthMate Zodiac support" on \
41
		ITRAX "iTrax support" on \
43
		ITRAX "iTrax support" on \
42
		ITALK "iTalk support" on \
44
		ASHTECH "Ashtech support" on \
45
		NAVCOM "Navcom support" on \
46
		GARMIN "Garmin kernel driver support" on \
47
		GARMINTXT "Garmin Simple Text support" off \
43
		TNT "True North Technologies support" off \
48
		TNT "True North Technologies support" off \
49
		OCEANSERVER "Oceanserver support" off \
50
		UBX "UBX protocol support" on \
44
		EVERMORE "Evermore binary support" on \
51
		EVERMORE "Evermore binary support" on \
45
		RTCM104 "rtcm104 support" on \
52
		MKT3301 "MKT-3301 support" on \
53
		GPSCLOCK "GPSclock support" on \
54
		RTCM104V2 "rtcm104v2 support" on \
55
		RTCM104V3 "rtcm104v3 support" on \
56
		NTRIP "NTRIP support" on \
57
		PROFILING "Profiling support" off \
46
		NTPSHM "TP time hinting support" on \
58
		NTPSHM "TP time hinting support" on \
47
		PPS "PPS time syncing support" off \
59
		PPS "PPS time syncing support" off \
48
		DBUS "DBUS support" off
60
		DBUS "DBUS support" off
Lines 67-74 Link Here
67
CONFIGURE_ARGS+=--disable-nmea
79
CONFIGURE_ARGS+=--disable-nmea
68
.endif
80
.endif
69
81
70
.if defined(WITHOUT_SIRFII)
82
.if defined(WITHOUT_SIRF)
71
CONFIGURE_ARGS+=--disable-sirfII
83
CONFIGURE_ARGS+=--disable-sirf
84
.endif
85
86
.if defined(WITH_SUPERSTARII)
87
CONFIGURE_ARGS+=	--enable-superstar2
72
.endif
88
.endif
73
89
74
.if defined(WITHOUT_TSIP)
90
.if defined(WITHOUT_TSIP)
Lines 91-110 Link Here
91
CONFIGURE_ARGS+=--disable-itrax
107
CONFIGURE_ARGS+=--disable-itrax
92
.endif
108
.endif
93
109
94
.if defined(WITHOUT_ITALK)
110
.if defined(WITHOUT_ASHTECH)
95
CONFIGURE_ARGS+=--disable-italk
111
CONFIGURE_ARGS+=--disable-ashtech
112
.endif
113
114
.if defined(WITHOUT_NAVCOM)
115
CONFIGURE_ARGS+=--disable-navcom
116
.endif
117
118
.if defined(WITHOUT_GARMIN)
119
CONFIGURE_ARGS+=--disable-garmin
120
.endif
121
122
.if defined(WITH_GARMINTXT)
123
CONFIGURE_ARGS+=--enable-garmintxt
96
.endif
124
.endif
97
125
98
.if defined(WITH_TNT)
126
.if defined(WITH_TNT)
99
CONFIGURE_ARGS+=--enable-tnt
127
CONFIGURE_ARGS+=--enable-tnt
100
.endif
128
.endif
101
129
130
.if defined(WITH_OCEANSERVER)
131
CONFIGURE_ARGS+=--enable-oceanserver
132
.endif
133
134
.if defined(WITHOUT_UBX)
135
CONFIGURE_ARGS+=--disable-ubx
136
.endif
137
102
.if defined(WITHOUT_EVERMORE)
138
.if defined(WITHOUT_EVERMORE)
103
CONFIGURE_ARGS+=--disable-evermore
139
CONFIGURE_ARGS+=--disable-evermore
104
.endif
140
.endif
105
141
106
.if defined(WITHOUT_RTCM104)
142
.if defined(WITHOUT_MKT3301)
107
CONFIGURE_ARGS+=--disable-rtcm104
143
CONFIGURE_ARGS+=--disable-mkt3301
144
.endif
145
146
.if defined(WITHOUT_GPSCLOCK)
147
CONFIGURE_ARGS+=--disable-gpscloclk
148
.endif
149
150
.if defined(WITHOUT_RTCM104V2)
151
CONFIGURE_ARGS+=--disable-rtcm104v2
152
.endif
153
154
.if defined(WITHOUT_RTCM104V3)
155
CONFIGURE_ARGS+=--disable-rtcm104v3
156
.endif
157
158
.if defined(WITHOUT_NTRIP)
159
CONFIGURE_ARGS+=--disable-ntrip
160
.endif
161
162
.if defined(WITH_PROFILING)
163
CONFIGURE_ARGS+=--enable-profiling
108
.endif
164
.endif
109
165
110
.if defined(WITHOUT_NTPSHM)
166
.if defined(WITHOUT_NTPSHM)
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (gpsd-2.37.tar.gz) = 6c96cc0b2df0279cb7baac1ebc5881d3
1
MD5 (gpsd-2.38.tar.gz) = 725c320ca6fa35bcdaa1de2d8908f392
2
SHA256 (gpsd-2.37.tar.gz) = 8860e61edc26f0665ad6ea0b34be4e3fd2cc7c51c5fd63b25c857a1870e8e137
2
SHA256 (gpsd-2.38.tar.gz) = ae828da850ac0590fd47768856c4ec29021332204182abe4ad94098d72168474
3
SIZE (gpsd-2.37.tar.gz) = 712943
3
SIZE (gpsd-2.38.tar.gz) = 776598
(-)pkg-plist (+5 lines)
Lines 5-10 Link Here
5
bin/cgpxlogger
5
bin/cgpxlogger
6
bin/gpscat
6
bin/gpscat
7
bin/gpsctl
7
bin/gpsctl
8
bin/gpsdlcdd
8
bin/gpsflash
9
bin/gpsflash
9
bin/gpsprof
10
bin/gpsprof
10
bin/sirfmon
11
bin/sirfmon
Lines 20-28 Link Here
20
lib/libgps.so.17
21
lib/libgps.so.17
21
libdata/pkgconfig/libgps.pc
22
libdata/pkgconfig/libgps.pc
22
libdata/pkgconfig/libgpsd.pc
23
libdata/pkgconfig/libgpsd.pc
24
%%PYTHON_SITELIBDIR%%/gpslib.so
23
%%PYTHON_SITELIBDIR%%/gps.py
25
%%PYTHON_SITELIBDIR%%/gps.py
24
%%PYTHON_SITELIBDIR%%/gps.pyc
26
%%PYTHON_SITELIBDIR%%/gps.pyc
25
%%PYTHON_SITELIBDIR%%/gps.pyo
27
%%PYTHON_SITELIBDIR%%/gps.pyo
28
%%PYTHON_SITELIBDIR%%/gpscap.py
29
%%PYTHON_SITELIBDIR%%/gpscap.pyc
30
%%PYTHON_SITELIBDIR%%/gpscap.pyo
26
%%PYTHON_SITELIBDIR%%/gpsfake.py
31
%%PYTHON_SITELIBDIR%%/gpsfake.py
27
%%PYTHON_SITELIBDIR%%/gpsfake.pyc
32
%%PYTHON_SITELIBDIR%%/gpsfake.pyc
28
%%PYTHON_SITELIBDIR%%/gpsfake.pyo
33
%%PYTHON_SITELIBDIR%%/gpsfake.pyo

Return to bug 131599