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) |