pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/geography/opencpn-plugin-plots



Module Name:    pkgsrc
Committed By:   bouyer
Date:           Mon Apr  4 21:14:51 UTC 2022

Modified Files:
        pkgsrc/geography/opencpn-plugin-plots: Makefile distinfo
Added Files:
        pkgsrc/geography/opencpn-plugin-plots/patches: patch-src_icons.cpp
            patch-src_plots_pi.cpp

Log Message:
Fix icon handling, especially for toolbar.
Bump PKGREVISION


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/geography/opencpn-plugin-plots/Makefile \
    pkgsrc/geography/opencpn-plugin-plots/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/geography/opencpn-plugin-plots/patches/patch-src_icons.cpp \
    pkgsrc/geography/opencpn-plugin-plots/patches/patch-src_plots_pi.cpp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/geography/opencpn-plugin-plots/Makefile
diff -u pkgsrc/geography/opencpn-plugin-plots/Makefile:1.1 pkgsrc/geography/opencpn-plugin-plots/Makefile:1.2
--- pkgsrc/geography/opencpn-plugin-plots/Makefile:1.1  Mon Mar 28 19:32:38 2022
+++ pkgsrc/geography/opencpn-plugin-plots/Makefile      Mon Apr  4 21:14:51 2022
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.1 2022/03/28 19:32:38 bouyer Exp $
+# $NetBSD: Makefile,v 1.2 2022/04/04 21:14:51 bouyer Exp $
 #
 
 VERSION=       2.2.12
+PKGREVISION=   1
 DISTNAME=      ocpn_plots_pi-${VERSION}
 PKGNAME=       opencpn-plugin-plots-${VERSION}
 CATEGORIES=    geography
Index: pkgsrc/geography/opencpn-plugin-plots/distinfo
diff -u pkgsrc/geography/opencpn-plugin-plots/distinfo:1.1 pkgsrc/geography/opencpn-plugin-plots/distinfo:1.2
--- pkgsrc/geography/opencpn-plugin-plots/distinfo:1.1  Mon Mar 28 19:32:38 2022
+++ pkgsrc/geography/opencpn-plugin-plots/distinfo      Mon Apr  4 21:14:51 2022
@@ -1,6 +1,8 @@
-$NetBSD: distinfo,v 1.1 2022/03/28 19:32:38 bouyer Exp $
+$NetBSD: distinfo,v 1.2 2022/04/04 21:14:51 bouyer Exp $
 
 BLAKE2s (ocpn_plots_pi-2.2.12.tar.gz) = 3e34c9c075351a38bad983a784b5faee10b863a107d542b2bb21f4766314667e
 SHA512 (ocpn_plots_pi-2.2.12.tar.gz) = fb2bb19da0866f08835b82c76e9b14c042aab531230f4398db9b912733446e9ab1e9c52804f2d8698de6c0b496a67645a89e60f2234587b7d5e0cb001b0d9304
 Size (ocpn_plots_pi-2.2.12.tar.gz) = 921352 bytes
 SHA1 (patch-cmake_PluginSetup.cmake) = 5cd62f288bea7993da60ff58af01b4c427afa99f
+SHA1 (patch-src_icons.cpp) = 4c3e9e5b2317dfda9a7c68610a7b6dd0b83a1a1c
+SHA1 (patch-src_plots_pi.cpp) = d26ef2ba3c08c78cb4abb6b7a4f041d3281c5689

Added files:

Index: pkgsrc/geography/opencpn-plugin-plots/patches/patch-src_icons.cpp
diff -u /dev/null pkgsrc/geography/opencpn-plugin-plots/patches/patch-src_icons.cpp:1.1
--- /dev/null   Mon Apr  4 21:14:51 2022
+++ pkgsrc/geography/opencpn-plugin-plots/patches/patch-src_icons.cpp   Mon Apr  4 21:14:51 2022
@@ -0,0 +1,49 @@
+$NetBSD: patch-src_icons.cpp,v 1.1 2022/04/04 21:14:51 bouyer Exp $
+
+Fix icons handling
+
+--- src/icons.cpp.orig 2022-04-04 11:24:07.480802638 +0200
++++ src/icons.cpp      2022-04-04 11:24:57.651441818 +0200
+@@ -29,31 +29,18 @@
+               _img_plots = new wxBitmap(wxImage(sm));
+       }
+ 
+-//    wxFileName fn;
+-//    fn.SetPath(*GetpSharedDataLocation());
+-//    fn.AppendDir(_T("plugins"));
+-//    fn.AppendDir(_T("plots_pi"));
+-//    fn.AppendDir(_T("data"));
+-//    fn.SetFullName(_T("plots_pi.svg"));
+-//    _svg_plots = fn.GetFullPath();
+-//    fn.SetFullName(_T("plots_pi_rollover.svg"));
+-//    _svg_plots_rollover = fn.GetFullPath();
+-//    fn.SetFullName(_T("plots_pi_toggled.svg"));
+-//    _svg_plots_toggled = fn.GetFullPath();
+-    
+ #ifdef PLUGIN_USE_SVG
+-    wxFileName fn;
+-    fn.SetPath(GetPluginDataDir("plots_pi"));
+-    fn.AppendDir(_T("data"));
+-    fn.SetFullName(_T("plots_pi.svg"));
+-    _svg_plots = fn.GetFullPath();
+-    wxLogMessage(_T("Loading toolbar icon: ") + _svg_plots); 
+-    fn.SetFullName(_T("plots_pi_rollover.svg"));
+-    _svg_plots_rollover = fn.GetFullPath();
+-    wxLogMessage(_T("Loading toolbar icon: ") + _svg_plots_rollover); 
+-    fn.SetFullName(_T("plots_pi_toggled.svg"));
+-    _svg_plots_toggled = fn.GetFullPath();
+-    wxLogMessage(_T("Loading toolbar icon: ") + _svg_plots_toggled);
++      wxFileName fn;
++      fn.SetPath(*GetpSharedDataLocation());
++      fn.AppendDir(_T("plugins"));
++      fn.AppendDir(_T("plots_pi"));
++      fn.AppendDir(_T("data"));
++      fn.SetFullName(_T("plots_pi.svg"));
++      _svg_plots = fn.GetFullPath();
++      fn.SetFullName(_T("plots_pi.svg"));
++      _svg_plots_rollover = fn.GetFullPath();
++      fn.SetFullName(_T("plots_pi_toggled.svg"));
++      _svg_plots_toggled = fn.GetFullPath();
+ #endif
+     
+       return;
Index: pkgsrc/geography/opencpn-plugin-plots/patches/patch-src_plots_pi.cpp
diff -u /dev/null pkgsrc/geography/opencpn-plugin-plots/patches/patch-src_plots_pi.cpp:1.1
--- /dev/null   Mon Apr  4 21:14:51 2022
+++ pkgsrc/geography/opencpn-plugin-plots/patches/patch-src_plots_pi.cpp        Mon Apr  4 21:14:51 2022
@@ -0,0 +1,41 @@
+$NetBSD: patch-src_plots_pi.cpp,v 1.1 2022/04/04 21:14:51 bouyer Exp $
+
+Fix icons handling
+
+--- src/plots_pi.cpp.orig      2022-04-04 11:20:38.672711152 +0200
++++ src/plots_pi.cpp   2022-04-04 11:22:24.085248480 +0200
+@@ -76,6 +76,7 @@
+     // Create the PlugIn icons
+     initialize_images();
+ 
++#if 0
+ // Create the PlugIn icons  -from shipdriver
+ // loads png file for the listing panel icon
+     wxFileName fn;
+@@ -99,6 +100,7 @@
+     else
+         wxLogWarning("Climatology panel icon has NOT been loaded");
+ // End of from Shipdriver     
++#endif
+ 
+       
+     m_declination = NAN;
+@@ -193,14 +195,10 @@
+ }
+ 
+ //  Converts  icon.cpp file to an image. Original process
+-//wxBitmap *plots_pi::GetPlugInBitmap()
+-//{
+-//    return new wxBitmap(_img_plots->ConvertToImage().Copy());
+-//}
+-
+-// Shipdriver uses the climatology_panel.png file to make the bitmap.
+-wxBitmap *plots_pi::GetPlugInBitmap()  { return &m_panelBitmap; }
+-// End of shipdriver process
++wxBitmap *plots_pi::GetPlugInBitmap()
++{
++    return _img_plots;
++}
+ 
+ 
+ wxString plots_pi::GetCommonName()



Home | Main Index | Thread Index | Old Index