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

(-)misc/OpenCPN/Makefile (+25 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	OpenCPN
4
PORTVERSION=	4.4.0
5
CATEGORIES=	misc
6
MASTER_SITES=	https://github.com/OpenCPN/OpenCPN/archive/ \
7
		http://netfence.it/download/
8
DISTFILES=	v4.4.0.tar.gz
9
10
MAINTAINER=	freebsd@netfence.it
11
COMMENT=	Chartplotter and GPS Navigation Software
12
13
USES=		cmake:outsource
14
USES+=		gettext
15
USE_GL+=	gl
16
USE_GNOME=	cairo gdkpixbuf2 gtk20
17
USE_WX=		2.8
18
USE_XORG+=	ice sm x11 xext
19
USE_LDCONFIG=	${PREFIX}/lib/opencpn
20
21
LIB_DEPENDS+=	libcurl.so:ftp/curl
22
LIB_DEPENDS+=	libexpat.so:textproc/expat2
23
LIB_DEPENDS+=	libportaudio.so:audio/portaudio
24
25
.include <bsd.port.mk>
(-)misc/OpenCPN/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1468844404
2
SHA256 (v4.4.0.tar.gz) = 577ae0fa44d31840e268b22c50b78130695fdfc796420514c93b238d5bde39b9
3
SIZE (v4.4.0.tar.gz) = 40840928
(-)misc/OpenCPN/files/patch-CMakeLists.txt (+11 lines)
Line 0 Link Here
1
--- CMakeLists.txt.orig	2016-07-04 13:24:26 UTC
2
+++ CMakeLists.txt
3
@@ -1774,7 +1774,7 @@ ENDIF(UNIX)
4
 #   Certain older Cmake FindGTK2 modules ( e.g. cmake-2.8.0-2) do not yield all of the required link libraries
5
 #   So, add them manually.  These declarations may be redundant in some architectures, but do no harm.
6
 IF(UNIX)
7
-TARGET_LINK_LIBRARIES( ${PACKAGE_NAME} dl )
8
+TARGET_LINK_LIBRARIES( ${PACKAGE_NAME} execinfo  )
9
 ENDIF(UNIX)
10
 
11
 IF(QT_LINUX)
(-)misc/OpenCPN/files/patch-plugins_grib__pi_src_jasper_base_jas__icc.c (+10 lines)
Line 0 Link Here
1
--- plugins/grib_pi/src/jasper/base/jas_icc.c.orig	2016-07-04 13:24:30 UTC
2
+++ plugins/grib_pi/src/jasper/base/jas_icc.c
3
@@ -71,6 +71,7 @@
4
 
5
 #include <stdlib.h>
6
 #include <ctype.h>
7
+#include <inttypes.h>
8
 
9
 #define	jas_iccputuint8(out, val)	jas_iccputuint(out, 1, val)
10
 #define	jas_iccputuint16(out, val)	jas_iccputuint(out, 2, val)
(-)misc/OpenCPN/files/patch-plugins_grib__pi_src_jasper_base_jas__image.c (+10 lines)
Line 0 Link Here
1
--- plugins/grib_pi/src/jasper/base/jas_image.c.orig	2016-07-04 13:24:30 UTC
2
+++ plugins/grib_pi/src/jasper/base/jas_image.c
3
@@ -76,6 +76,7 @@
4
 #include <string.h>
5
 #include <assert.h>
6
 #include <ctype.h>
7
+#include <inttypes.h>
8
 
9
 #include "jasper/jas_math.h"
10
 #include "jasper/jas_image.h"
(-)misc/OpenCPN/files/patch-plugins_grib__pi_src_jasper_base_jas__seq.c (+10 lines)
Line 0 Link Here
1
--- plugins/grib_pi/src/jasper/base/jas_seq.c.orig	2016-07-05 10:11:58 UTC
2
+++ plugins/grib_pi/src/jasper/base/jas_seq.c
3
@@ -74,6 +74,7 @@
4
 #include <stdlib.h>
5
 #include <assert.h>
6
 #include <math.h>
7
+#include <inttypes.h>
8
 
9
 #include "jasper/jas_seq.h"
10
 #include "jasper/jas_malloc.h"
(-)misc/OpenCPN/files/patch-plugins_grib__pi_src_jasper_base_jas__stream.c (+28 lines)
Line 0 Link Here
1
--- plugins/grib_pi/src/jasper/base/jas_stream.c.orig	2016-07-04 13:24:30 UTC
2
+++ plugins/grib_pi/src/jasper/base/jas_stream.c
3
@@ -85,6 +85,7 @@
4
 #if defined(WIN32) || defined(HAVE_IO_H)
5
 #include <io.h>
6
 #endif
7
+#include <inttypes.h>
8
 
9
 #include "jasper/jas_types.h"
10
 #include "jasper/jas_stream.h"
11
@@ -168,7 +169,7 @@ static jas_stream_t *jas_stream_create()
12
 	return stream;
13
 }
14
 
15
-jas_stream_t *jas_stream_memopen(char *buf, int bufsize)
16
+jas_stream_t *jas_stream_memopen(char *buf, size_t bufsize)
17
 {
18
 	jas_stream_t *stream;
19
 	jas_stream_memobj_t *obj;
20
@@ -573,7 +574,7 @@ int jas_stream_puts(jas_stream_t *stream
21
 	return 0;
22
 }
23
 
24
-char *jas_stream_gets(jas_stream_t *stream, char *buf, int bufsize)
25
+char *jas_stream_gets(jas_stream_t *stream, char *buf, size_t bufsize)
26
 {
27
 	int c;
28
 	char *bufptr;
(-)misc/OpenCPN/files/patch-plugins_grib__pi_src_jasper_jp2_jp2__cod.c (+10 lines)
Line 0 Link Here
1
--- plugins/grib_pi/src/jasper/jp2/jp2_cod.c.orig	2016-07-04 13:24:30 UTC
2
+++ plugins/grib_pi/src/jasper/jp2/jp2_cod.c
3
@@ -73,6 +73,7 @@
4
 
5
 #include <assert.h>
6
 #include <stdlib.h>
7
+#include <inttypes.h>
8
 
9
 #include "jasper/jas_stream.h"
10
 #include "jasper/jas_malloc.h"
(-)misc/OpenCPN/files/patch-plugins_grib__pi_src_jasper_jpc_jpc__cs.c (+10 lines)
Line 0 Link Here
1
--- plugins/grib_pi/src/jasper/jpc/jpc_cs.c.orig	2016-07-04 13:24:30 UTC
2
+++ plugins/grib_pi/src/jasper/jpc/jpc_cs.c
3
@@ -74,6 +74,7 @@
4
 #include <stdlib.h>
5
 #include <assert.h>
6
 #include <ctype.h>
7
+#include <inttypes.h>
8
 
9
 #include "jasper/jas_malloc.h"
10
 #include "jasper/jas_debug.h"
(-)misc/OpenCPN/files/patch-plugins_grib__pi_src_jasper_jpc_jpc__dec.c (+10 lines)
Line 0 Link Here
1
--- plugins/grib_pi/src/jasper/jpc/jpc_dec.c.orig	2016-07-04 13:24:30 UTC
2
+++ plugins/grib_pi/src/jasper/jpc/jpc_dec.c
3
@@ -72,6 +72,7 @@
4
 #include <stdio.h>
5
 #include <stdlib.h>
6
 #include <assert.h>
7
+#include <inttypes.h>
8
 
9
 #include "jasper/jas_types.h"
10
 #include "jasper/jas_math.h"
(-)misc/OpenCPN/files/patch-plugins_grib__pi_src_jasper_jpc_jpc__mqdec.c (+10 lines)
Line 0 Link Here
1
--- plugins/grib_pi/src/jasper/jpc/jpc_mqdec.c.orig	2016-07-04 13:24:30 UTC
2
+++ plugins/grib_pi/src/jasper/jpc/jpc_mqdec.c
3
@@ -74,6 +74,7 @@
4
 #include <assert.h>
5
 #include <stdlib.h>
6
 #include <stdarg.h>
7
+#include <inttypes.h>
8
 
9
 #include "jasper/jas_types.h"
10
 #include "jasper/jas_malloc.h"
(-)misc/OpenCPN/files/patch-plugins_grib__pi_src_jasper_jpc_jpc__mqenc.c (+10 lines)
Line 0 Link Here
1
--- plugins/grib_pi/src/jasper/jpc/jpc_mqenc.c.orig	2016-07-04 13:24:30 UTC
2
+++ plugins/grib_pi/src/jasper/jpc/jpc_mqenc.c
3
@@ -73,6 +73,7 @@
4
 
5
 #include <assert.h>
6
 #include <stdlib.h>
7
+#include <inttypes.h>
8
 
9
 #include "jasper/jas_stream.h"
10
 #include "jasper/jas_malloc.h"
(-)misc/OpenCPN/files/patch-src_chart1.cpp (+40 lines)
Line 0 Link Here
1
--- src/chart1.cpp.orig	2016-07-04 13:24:32 UTC
2
+++ src/chart1.cpp
3
@@ -10228,7 +10228,9 @@ extern "C" int wait(int *);             
4
 
5
 #include <termios.h>
6
 #include <sys/ioctl.h>
7
+#if 0
8
 #include <linux/serial.h>
9
+#endif
10
 
11
 #endif
12
 
13
@@ -10294,18 +10296,24 @@ int paternFilter (const struct dirent * 
14
 
15
 int isTTYreal(const char *dev)
16
 {
17
-    struct serial_struct serinfo;
18
+#if 0
19
+  struct serial_struct serinfo;
20
+#endif
21
     int ret = 0;
22
 
23
     int fd = open(dev, O_RDWR | O_NONBLOCK | O_NOCTTY);
24
 
25
     // device name is pointing to a real device
26
     if(fd >= 0) {
27
-        if (ioctl(fd, TIOCGSERIAL, &serinfo)==0) {
28
+#if 0
29
+      if (ioctl(fd, TIOCGSERIAL, &serinfo)==0) {
30
             // If device type is no PORT_UNKNOWN we accept the port
31
             if (serinfo.type != PORT_UNKNOWN)
32
+#endif
33
                 ret = 1;
34
-        }
35
+#if 0
36
+      }
37
+#endif
38
         close (fd);
39
     }
40
 
(-)misc/OpenCPN/files/patch-src_crashprint.cpp (+14 lines)
Line 0 Link Here
1
--- src/crashprint.cpp.orig	2016-07-04 13:24:32 UTC
2
+++ src/crashprint.cpp
3
@@ -31,11 +31,9 @@
4
 #endif
5
 
6
 //! standard header
7
-#if defined(__linux__)
8
 #include <execinfo.h>    // Needed for backtrace
9
 #include <cxxabi.h>      // Needed for __cxa_demangle
10
 #include <unistd.h>
11
-#endif
12
 
13
 // wxWidgets headers
14
 #include <wx/string.h>   // strings support
(-)misc/OpenCPN/pkg-descr (+1 lines)
Line 0 Link Here
1
OpenCPN is a free software (GPLv2) project to create a concise chart plotter and navigation software, for use underway or as a planning tool. OpenCPN is developed by a team of active sailors using real world conditions for program testing and refinement.
(-)misc/OpenCPN/pkg-plist (+273 lines)
Line 0 Link Here
1
bin/opencpn
2
lib/opencpn/libchartdldr_pi.so
3
lib/opencpn/libdashboard_pi.so
4
lib/opencpn/libgrib_pi.so
5
lib/opencpn/libwmm_pi.so
6
share/applications/opencpn.desktop
7
share/doc/opencpn/changelog.Debian.gz
8
share/doc/opencpn/copyright
9
share/icons/hicolor/48x48/apps/opencpn.png
10
share/icons/hicolor/scalable/apps/opencpn.svg
11
share/locale/ca_ES/LC_MESSAGES/opencpn-chartdldr_pi.mo
12
share/locale/ca_ES/LC_MESSAGES/opencpn-dashboard_pi.mo
13
share/locale/ca_ES/LC_MESSAGES/opencpn-grib_pi.mo
14
share/locale/ca_ES/LC_MESSAGES/opencpn-wmm_pi.mo
15
share/locale/ca_ES/LC_MESSAGES/opencpn.mo
16
share/locale/cs/LC_MESSAGES/opencpn.mo
17
share/locale/cs_CZ/LC_MESSAGES/opencpn-chartdldr_pi.mo
18
share/locale/cs_CZ/LC_MESSAGES/opencpn-dashboard_pi.mo
19
share/locale/cs_CZ/LC_MESSAGES/opencpn-grib_pi.mo
20
share/locale/cs_CZ/LC_MESSAGES/opencpn-wmm_pi.mo
21
share/locale/da/LC_MESSAGES/opencpn.mo
22
share/locale/da_DK/LC_MESSAGES/opencpn-chartdldr_pi.mo
23
share/locale/da_DK/LC_MESSAGES/opencpn-dashboard_pi.mo
24
share/locale/da_DK/LC_MESSAGES/opencpn-grib_pi.mo
25
share/locale/da_DK/LC_MESSAGES/opencpn-wmm_pi.mo
26
share/locale/de/LC_MESSAGES/opencpn.mo
27
share/locale/de_DE/LC_MESSAGES/opencpn-chartdldr_pi.mo
28
share/locale/de_DE/LC_MESSAGES/opencpn-dashboard_pi.mo
29
share/locale/de_DE/LC_MESSAGES/opencpn-grib_pi.mo
30
share/locale/de_DE/LC_MESSAGES/opencpn-wmm_pi.mo
31
share/locale/el_GR/LC_MESSAGES/opencpn-chartdldr_pi.mo
32
share/locale/el_GR/LC_MESSAGES/opencpn-dashboard_pi.mo
33
share/locale/el_GR/LC_MESSAGES/opencpn-grib_pi.mo
34
share/locale/el_GR/LC_MESSAGES/opencpn-wmm_pi.mo
35
share/locale/el_GR/LC_MESSAGES/opencpn.mo
36
share/locale/es/LC_MESSAGES/opencpn.mo
37
share/locale/es_ES/LC_MESSAGES/opencpn-chartdldr_pi.mo
38
share/locale/es_ES/LC_MESSAGES/opencpn-dashboard_pi.mo
39
share/locale/es_ES/LC_MESSAGES/opencpn-grib_pi.mo
40
share/locale/es_ES/LC_MESSAGES/opencpn-wmm_pi.mo
41
share/locale/et/LC_MESSAGES/opencpn.mo
42
share/locale/et_EE/LC_MESSAGES/opencpn-chartdldr_pi.mo
43
share/locale/et_EE/LC_MESSAGES/opencpn-dashboard_pi.mo
44
share/locale/et_EE/LC_MESSAGES/opencpn-grib_pi.mo
45
share/locale/et_EE/LC_MESSAGES/opencpn-wmm_pi.mo
46
share/locale/fi_FI/LC_MESSAGES/opencpn-chartdldr_pi.mo
47
share/locale/fi_FI/LC_MESSAGES/opencpn-dashboard_pi.mo
48
share/locale/fi_FI/LC_MESSAGES/opencpn-grib_pi.mo
49
share/locale/fi_FI/LC_MESSAGES/opencpn-wmm_pi.mo
50
share/locale/fi_FI/LC_MESSAGES/opencpn.mo
51
share/locale/fr/LC_MESSAGES/opencpn.mo
52
share/locale/fr_FR/LC_MESSAGES/opencpn-chartdldr_pi.mo
53
share/locale/fr_FR/LC_MESSAGES/opencpn-dashboard_pi.mo
54
share/locale/fr_FR/LC_MESSAGES/opencpn-grib_pi.mo
55
share/locale/fr_FR/LC_MESSAGES/opencpn-wmm_pi.mo
56
share/locale/gl_ES/LC_MESSAGES/opencpn-chartdldr_pi.mo
57
share/locale/gl_ES/LC_MESSAGES/opencpn-dashboard_pi.mo
58
share/locale/gl_ES/LC_MESSAGES/opencpn-grib_pi.mo
59
share/locale/gl_ES/LC_MESSAGES/opencpn-wmm_pi.mo
60
share/locale/gl_ES/LC_MESSAGES/opencpn.mo
61
share/locale/hu_HU/LC_MESSAGES/opencpn-chartdldr_pi.mo
62
share/locale/hu_HU/LC_MESSAGES/opencpn-dashboard_pi.mo
63
share/locale/hu_HU/LC_MESSAGES/opencpn-grib_pi.mo
64
share/locale/hu_HU/LC_MESSAGES/opencpn-wmm_pi.mo
65
share/locale/hu_HU/LC_MESSAGES/opencpn.mo
66
share/locale/it/LC_MESSAGES/opencpn.mo
67
share/locale/it_IT/LC_MESSAGES/opencpn-chartdldr_pi.mo
68
share/locale/it_IT/LC_MESSAGES/opencpn-dashboard_pi.mo
69
share/locale/it_IT/LC_MESSAGES/opencpn-grib_pi.mo
70
share/locale/it_IT/LC_MESSAGES/opencpn-wmm_pi.mo
71
share/locale/ja_JP/LC_MESSAGES/opencpn-chartdldr_pi.mo
72
share/locale/ja_JP/LC_MESSAGES/opencpn-dashboard_pi.mo
73
share/locale/ja_JP/LC_MESSAGES/opencpn-grib_pi.mo
74
share/locale/ja_JP/LC_MESSAGES/opencpn-wmm_pi.mo
75
share/locale/nb_NO/LC_MESSAGES/opencpn-chartdldr_pi.mo
76
share/locale/nb_NO/LC_MESSAGES/opencpn-dashboard_pi.mo
77
share/locale/nb_NO/LC_MESSAGES/opencpn-grib_pi.mo
78
share/locale/nb_NO/LC_MESSAGES/opencpn-wmm_pi.mo
79
share/locale/nb_NO/LC_MESSAGES/opencpn.mo
80
share/locale/nl/LC_MESSAGES/opencpn.mo
81
share/locale/nl_NL/LC_MESSAGES/opencpn-chartdldr_pi.mo
82
share/locale/nl_NL/LC_MESSAGES/opencpn-dashboard_pi.mo
83
share/locale/nl_NL/LC_MESSAGES/opencpn-grib_pi.mo
84
share/locale/nl_NL/LC_MESSAGES/opencpn-wmm_pi.mo
85
share/locale/pl/LC_MESSAGES/opencpn.mo
86
share/locale/pl_PL/LC_MESSAGES/opencpn-chartdldr_pi.mo
87
share/locale/pl_PL/LC_MESSAGES/opencpn-dashboard_pi.mo
88
share/locale/pl_PL/LC_MESSAGES/opencpn-grib_pi.mo
89
share/locale/pl_PL/LC_MESSAGES/opencpn-wmm_pi.mo
90
share/locale/pt_BR/LC_MESSAGES/opencpn-chartdldr_pi.mo
91
share/locale/pt_BR/LC_MESSAGES/opencpn-dashboard_pi.mo
92
share/locale/pt_BR/LC_MESSAGES/opencpn-grib_pi.mo
93
share/locale/pt_BR/LC_MESSAGES/opencpn-wmm_pi.mo
94
share/locale/pt_BR/LC_MESSAGES/opencpn.mo
95
share/locale/pt_PT/LC_MESSAGES/opencpn-chartdldr_pi.mo
96
share/locale/pt_PT/LC_MESSAGES/opencpn-dashboard_pi.mo
97
share/locale/pt_PT/LC_MESSAGES/opencpn-grib_pi.mo
98
share/locale/pt_PT/LC_MESSAGES/opencpn-wmm_pi.mo
99
share/locale/pt_PT/LC_MESSAGES/opencpn.mo
100
share/locale/ru/LC_MESSAGES/opencpn.mo
101
share/locale/ru_RU/LC_MESSAGES/opencpn-chartdldr_pi.mo
102
share/locale/ru_RU/LC_MESSAGES/opencpn-dashboard_pi.mo
103
share/locale/ru_RU/LC_MESSAGES/opencpn-grib_pi.mo
104
share/locale/ru_RU/LC_MESSAGES/opencpn-wmm_pi.mo
105
share/locale/sv/LC_MESSAGES/opencpn.mo
106
share/locale/sv_SE/LC_MESSAGES/opencpn-chartdldr_pi.mo
107
share/locale/sv_SE/LC_MESSAGES/opencpn-dashboard_pi.mo
108
share/locale/sv_SE/LC_MESSAGES/opencpn-grib_pi.mo
109
share/locale/sv_SE/LC_MESSAGES/opencpn-wmm_pi.mo
110
share/locale/tr_TR/LC_MESSAGES/opencpn-chartdldr_pi.mo
111
share/locale/tr_TR/LC_MESSAGES/opencpn-dashboard_pi.mo
112
share/locale/tr_TR/LC_MESSAGES/opencpn-grib_pi.mo
113
share/locale/tr_TR/LC_MESSAGES/opencpn-wmm_pi.mo
114
share/locale/tr_TR/LC_MESSAGES/opencpn.mo
115
share/locale/vi_VN/LC_MESSAGES/opencpn-chartdldr_pi.mo
116
share/locale/vi_VN/LC_MESSAGES/opencpn-dashboard_pi.mo
117
share/locale/vi_VN/LC_MESSAGES/opencpn-grib_pi.mo
118
share/locale/vi_VN/LC_MESSAGES/opencpn-wmm_pi.mo
119
share/locale/zh_TW/LC_MESSAGES/opencpn-chartdldr_pi.mo
120
share/locale/zh_TW/LC_MESSAGES/opencpn-dashboard_pi.mo
121
share/locale/zh_TW/LC_MESSAGES/opencpn-grib_pi.mo
122
share/locale/zh_TW/LC_MESSAGES/opencpn-wmm_pi.mo
123
share/locale/zh_TW/LC_MESSAGES/opencpn.mo
124
share/opencpn/doc/help_web.html
125
share/opencpn/license.txt
126
share/opencpn/plugins/chartdldr_pi/data/chart_sources.xml
127
share/opencpn/plugins/chartdldr_pi/data/doc/03-Chart-Downloader-Tab-First-Time.png
128
share/opencpn/plugins/chartdldr_pi/data/doc/04-AddNewChartSource-Predefined.png
129
share/opencpn/plugins/chartdldr_pi/data/doc/05-PleaseUpdate.png
130
share/opencpn/plugins/chartdldr_pi/data/doc/08-AfterDownloading.png
131
share/opencpn/plugins/chartdldr_pi/data/doc/12-Add-Edit-Custom-Chart-Source.png
132
share/opencpn/plugins/chartdldr_pi/data/doc/15-Chart-Status-Selection.png
133
share/opencpn/plugins/chartdldr_pi/data/doc/16-Show-Local-Files.png
134
share/opencpn/plugins/chartdldr_pi/data/doc/MathJax.js
135
share/opencpn/plugins/chartdldr_pi/data/doc/advanced.html
136
share/opencpn/plugins/chartdldr_pi/data/doc/basic.html
137
share/opencpn/plugins/chartdldr_pi/data/doc/github.min.css
138
share/opencpn/plugins/chartdldr_pi/data/doc/highlight.min.js
139
share/opencpn/plugins/chartdldr_pi/data/doc/index.html
140
share/opencpn/plugins/chartdldr_pi/data/doc/preferences.png
141
share/opencpn/plugins/chartdldr_pi/data/folder215.png
142
share/opencpn/plugins/chartdldr_pi/data/open182.png
143
share/opencpn/plugins/dashboard_pi/data/Dashboard.svg
144
share/opencpn/plugins/dashboard_pi/data/Dashboard_rollover.svg
145
share/opencpn/plugins/dashboard_pi/data/Dashboard_toggled.svg
146
share/opencpn/plugins/grib_pi/data/altitude.svg
147
share/opencpn/plugins/grib_pi/data/curdata.svg
148
share/opencpn/plugins/grib_pi/data/grib.svg
149
share/opencpn/plugins/grib_pi/data/grib_rollover.svg
150
share/opencpn/plugins/grib_pi/data/grib_toggled.svg
151
share/opencpn/plugins/grib_pi/data/ncurdata.svg
152
share/opencpn/plugins/grib_pi/data/next.svg
153
share/opencpn/plugins/grib_pi/data/now.svg
154
share/opencpn/plugins/grib_pi/data/openfile.svg
155
share/opencpn/plugins/grib_pi/data/play.svg
156
share/opencpn/plugins/grib_pi/data/prev.svg
157
share/opencpn/plugins/grib_pi/data/request.svg
158
share/opencpn/plugins/grib_pi/data/request_end.svg
159
share/opencpn/plugins/grib_pi/data/selzone.svg
160
share/opencpn/plugins/grib_pi/data/setting.svg
161
share/opencpn/plugins/grib_pi/data/slider.svg
162
share/opencpn/plugins/grib_pi/data/stop.svg
163
share/opencpn/plugins/grib_pi/data/zoomto.svg
164
share/opencpn/plugins/wmm_pi/data/WMM.COF
165
share/opencpn/plugins/wmm_pi/data/wmm_live.svg
166
share/opencpn/plugins/wmm_pi/data/wmm_pi.svg
167
share/opencpn/s57data/S52RAZDS.RLE
168
share/opencpn/s57data/attdecode.csv
169
share/opencpn/s57data/chartsymbols.xml
170
share/opencpn/s57data/rastersymbols-dark.png
171
share/opencpn/s57data/rastersymbols-day.png
172
share/opencpn/s57data/rastersymbols-dusk.png
173
share/opencpn/s57data/s57attributes.csv
174
share/opencpn/s57data/s57expectedinput.csv
175
share/opencpn/s57data/s57objectclasses.csv
176
share/opencpn/sounds/1bells.wav
177
share/opencpn/sounds/2bells.wav
178
share/opencpn/sounds/README.bells
179
share/opencpn/uidata/journeyman/CompassRose.svg
180
share/opencpn/uidata/journeyman/CompassRoseBlue.svg
181
share/opencpn/uidata/journeyman/gps1Bar.svg
182
share/opencpn/uidata/journeyman/gps2Bar.svg
183
share/opencpn/uidata/journeyman/gps3Bar.svg
184
share/opencpn/uidata/journeyman/gpsGrn.svg
185
share/opencpn/uidata/journeyman/gpsGry.svg
186
share/opencpn/uidata/journeyman/gpsRed.svg
187
share/opencpn/uidata/journeyman_flat/CompassRose.svg
188
share/opencpn/uidata/journeyman_flat/CompassRoseBlue.svg
189
share/opencpn/uidata/journeyman_flat/gps1Bar.svg
190
share/opencpn/uidata/journeyman_flat/gps2Bar.svg
191
share/opencpn/uidata/journeyman_flat/gps3Bar.svg
192
share/opencpn/uidata/journeyman_flat/gpsGrn.svg
193
share/opencpn/uidata/journeyman_flat/gpsGry.svg
194
share/opencpn/uidata/journeyman_flat/gpsRed.svg
195
share/opencpn/uidata/styles.xml
196
share/opencpn/uidata/toolicons_journeyman.png
197
share/opencpn/uidata/toolicons_journeyman_flat.png
198
share/opencpn/uidata/toolicons_traditional.png
199
share/opencpn/uidata/traditional/AIS.svg
200
share/opencpn/uidata/traditional/AIS_AlertGeneral.svg
201
share/opencpn/uidata/traditional/AIS_AlertGeneral_Active.svg
202
share/opencpn/uidata/traditional/AIS_AlertGeneral_Active_rollover.svg
203
share/opencpn/uidata/traditional/AIS_AlertGeneral_rollover.svg
204
share/opencpn/uidata/traditional/AIS_Disabled.svg
205
share/opencpn/uidata/traditional/AIS_Disabled_rollover.svg
206
share/opencpn/uidata/traditional/AIS_Normal_Active.svg
207
share/opencpn/uidata/traditional/AIS_Normal_Active_rollover.svg
208
share/opencpn/uidata/traditional/AIS_Suppressed.svg
209
share/opencpn/uidata/traditional/AIS_Suppressed_Active.svg
210
share/opencpn/uidata/traditional/AIS_Suppressed_Active_rollover.svg
211
share/opencpn/uidata/traditional/AIS_Suppressed_rollover.svg
212
share/opencpn/uidata/traditional/AIS_rollover.svg
213
share/opencpn/uidata/traditional/CompassRose.svg
214
share/opencpn/uidata/traditional/CompassRoseBlue.svg
215
share/opencpn/uidata/traditional/colorscheme.svg
216
share/opencpn/uidata/traditional/colorscheme_rollover.svg
217
share/opencpn/uidata/traditional/current.svg
218
share/opencpn/uidata/traditional/current_rollover.svg
219
share/opencpn/uidata/traditional/current_rollover_toggled.svg
220
share/opencpn/uidata/traditional/current_toggled.svg
221
share/opencpn/uidata/traditional/down.svg
222
share/opencpn/uidata/traditional/follow.svg
223
share/opencpn/uidata/traditional/follow_rollover.svg
224
share/opencpn/uidata/traditional/follow_rollover_toggled.svg
225
share/opencpn/uidata/traditional/follow_toggled.svg
226
share/opencpn/uidata/traditional/gps1Bar.svg
227
share/opencpn/uidata/traditional/gps2Bar.svg
228
share/opencpn/uidata/traditional/gps3Bar.svg
229
share/opencpn/uidata/traditional/gpsGrn.svg
230
share/opencpn/uidata/traditional/gpsGry.svg
231
share/opencpn/uidata/traditional/gpsRed.svg
232
share/opencpn/uidata/traditional/help.svg
233
share/opencpn/uidata/traditional/help_rollover.svg
234
share/opencpn/uidata/traditional/left.svg
235
share/opencpn/uidata/traditional/mob.svg
236
share/opencpn/uidata/traditional/mob_btn.svg
237
share/opencpn/uidata/traditional/mob_btn_rollover.svg
238
share/opencpn/uidata/traditional/pencil.svg
239
share/opencpn/uidata/traditional/print.svg
240
share/opencpn/uidata/traditional/print_rollover.svg
241
share/opencpn/uidata/traditional/right.svg
242
share/opencpn/uidata/traditional/route.svg
243
share/opencpn/uidata/traditional/route_manager.svg
244
share/opencpn/uidata/traditional/route_manager_rollover.svg
245
share/opencpn/uidata/traditional/route_rollover.svg
246
share/opencpn/uidata/traditional/route_rollover_toggled.svg
247
share/opencpn/uidata/traditional/route_toggled.svg
248
share/opencpn/uidata/traditional/scin.svg
249
share/opencpn/uidata/traditional/scin_disabled.svg
250
share/opencpn/uidata/traditional/scin_rollover.svg
251
share/opencpn/uidata/traditional/scout.svg
252
share/opencpn/uidata/traditional/scout_disabled.svg
253
share/opencpn/uidata/traditional/scout_rollover.svg
254
share/opencpn/uidata/traditional/settings.svg
255
share/opencpn/uidata/traditional/settings_disabled.svg
256
share/opencpn/uidata/traditional/settings_rollover.svg
257
share/opencpn/uidata/traditional/text.svg
258
share/opencpn/uidata/traditional/text_rollover.svg
259
share/opencpn/uidata/traditional/text_rollover_toggled.svg
260
share/opencpn/uidata/traditional/text_toggled.svg
261
share/opencpn/uidata/traditional/tide.svg
262
share/opencpn/uidata/traditional/tide_rollover.svg
263
share/opencpn/uidata/traditional/tide_rollover_toggled.svg
264
share/opencpn/uidata/traditional/tide_toggled.svg
265
share/opencpn/uidata/traditional/track.svg
266
share/opencpn/uidata/traditional/track_rollover.svg
267
share/opencpn/uidata/traditional/track_rollover_toggled.svg
268
share/opencpn/uidata/traditional/track_toggled.svg
269
share/opencpn/uidata/traditional/up.svg
270
share/opencpn/uidata/traditional/zoomin.svg
271
share/opencpn/uidata/traditional/zoomin_rollover.svg
272
share/opencpn/uidata/traditional/zoomout.svg
273
share/opencpn/uidata/traditional/zoomout_rollover.svg

Return to bug 211199