Skip to content
Commits on Source (8)
......@@ -8,6 +8,10 @@ at https://opencpn.org/OpenCPN/info/downloads.html.
Third-party plugins (.so files) should be installed in /usr/lib/opencpn
with possible data located in /usr/share/opencpn/plugins/<plugin>
Note that from 5.0.0 opencpn is built against gtk3. This breaks the
binary compatibility for most plugins available -- such plugins must be
recompiled against gtk3.
Free NOAA nautical charts can be downloaded from:
http://www.nauticalcharts.noaa.gov/mcd/Raster/
......
opencpn (5.0.0+dfsg.1-1) unstable; urgency=medium
opencpn (5.0.0+dfsg-1) unstable; urgency=medium
[ Alec Leamas ]
* New upstream release
......@@ -12,7 +12,9 @@ opencpn (5.0.0+dfsg.1-1) unstable; urgency=medium
* Move appstream data to new location, relicense
and clean up rules.
* Bump Standards-Version to 4.4.1, no changes.
* Move to compat level 12.
* Move to compat level 12, use new compat scheme
* Drop dfsg.N suffix to reflect local habits.
* Move around some docs.
[ Bas Couwenberg ]
* Restructure control file with cme.
......
......@@ -3,36 +3,37 @@ Maintainer: Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org>
Uploaders: Alec Leamas <leamas.alec@gmail.com>
Section: misc
Priority: optional
Build-Depends: debhelper (>= 12),
cmake,
libarchive-dev,
libbz2-dev,
libcurl4-gnutls-dev,
libelf-dev,
libexif-dev,
libgdk-pixbuf2.0-dev,
libgtk-3-dev,
liblz4-dev,
liblzma-dev,
libpango1.0-dev,
libsqlite3-dev,
libtinyxml-dev,
libunarr-dev,
libwxgtk3.0-gtk3-dev,
libwxsvg-dev (>= 2:1.5.21),
portaudio19-dev
Build-Depends: debhelper-compat (= 12),
cmake,
libarchive-dev,
libbz2-dev,
libcurl4-gnutls-dev,
libelf-dev,
libexif-dev,
libgdk-pixbuf2.0-dev,
libgtk-3-dev,
liblz4-dev,
liblzma-dev,
libpango1.0-dev,
libsqlite3-dev,
libtinyxml-dev,
libunarr-dev,
libwxsvg-dev (>= 2:1.5.21),
libwxgtk3.0-gtk3-dev,
portaudio19-dev
Standards-Version: 4.4.1
Vcs-Browser: https://salsa.debian.org/debian-gis-team/opencpn
Vcs-Git: https://salsa.debian.org/debian-gis-team/opencpn.git
Rules-Requires-Root: no
Homepage: https://opencpn.org
Package: opencpn
Architecture: any
Depends: opencpn-data (>= ${source:Version}),
bzip2,
wx3.0-i18n,
${shlibs:Depends},
${misc:Depends}
bzip2,
wx3.0-i18n,
${shlibs:Depends},
${misc:Depends}
Breaks: opencpn-plugins (<< 4.8.6~20180801.8d20a06+dfsg.1)
Replaces: opencpn-plugins (<< 4.8.6~20180801.8d20a06+dfsg.1)
Suggests: binutils
......@@ -63,7 +64,6 @@ Description: Open Source Chartplotter and Marine GPS Navigation Software (data)
Package: opencpn-plugins
Architecture: all
Depends: opencpn (>= ${source:Version}),
${misc:Depends}
Depends: opencpn (>= ${source:Version}), ${misc:Depends}
Description: Open Source Chartplotter and Marine GPS Navigation Software (transition)
This package is a transitional, empty package.
This diff is collapsed.
......@@ -6,5 +6,6 @@ usr/share/man/man1/opencpn.1
usr/share/metainfo/opencpn.appdata.xml
usr/share/doc/opencpn/changelog
usr/share/doc/opencpn/copyright
usr/share/doc/opencpn/license.txt
usr/share/doc/opencpn/README.harmonics
usr/share/doc/opencpn/README.bells
......@@ -28,6 +28,10 @@ override_dh_auto_install:
-mv debian/tmp/usr/share/opencpn/sounds/README.bells \
debian/tmp/usr/share/opencpn/tcdata/README.harmonics \
debian/tmp/usr/share/doc/opencpn
# Use existing license files instead of bundled copy
rm -f debian/tmp/usr/share/doc/opencpn/license.txt
ln -s /usr/share/common-licenses/GPL-2 \
debian/tmp/usr/share/doc/opencpn/license.txt
override_dh_missing:
......