diff --git a/net/spiritvnc/Makefile b/net/spiritvnc/Makefile index 825b2d238d2e..416f15afcb98 100644 --- a/net/spiritvnc/Makefile +++ b/net/spiritvnc/Makefile @@ -1,28 +1,28 @@ # Created by: Alexey Dokuchaev PORTNAME= spiritvnc -PORTVERSION= 0.4.5 +PORTVERSION= 0.4.6 CATEGORIES= net MAINTAINER= danfe@FreeBSD.org COMMENT= Multi-view FLTK-based VNC client LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libfltk.so:x11-toolkits/fltk \ libfontconfig.so:x11-fonts/fontconfig \ libpng.so:graphics/png \ libssh2.so:security/libssh2 \ libvncclient.so:net/libvncserver USES= jpeg pkgconfig xorg USE_GITHUB= yes USE_XORG= x11 xcursor xext xfixes xft xinerama xpm xrender GH_ACCOUNT= willbprog127 GH_PROJECT= ${PORTNAME}-fltk PLIST_FILES= bin/${PORTNAME} .include diff --git a/net/spiritvnc/distinfo b/net/spiritvnc/distinfo index 161ecbfc1237..4167665cf90c 100644 --- a/net/spiritvnc/distinfo +++ b/net/spiritvnc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1613369131 -SHA256 (willbprog127-spiritvnc-fltk-0.4.5_GH0.tar.gz) = 6589a06de86396e8335a4477fc25871d90542bf63320f1f2a5977a8a87c3108e -SIZE (willbprog127-spiritvnc-fltk-0.4.5_GH0.tar.gz) = 47866 +TIMESTAMP = 1621292146 +SHA256 (willbprog127-spiritvnc-fltk-0.4.6_GH0.tar.gz) = 539c03a9f2c516efba6d6d338eacc43e827c3775778cb0e1fa2e5a9a8a11cca9 +SIZE (willbprog127-spiritvnc-fltk-0.4.6_GH0.tar.gz) = 52118 diff --git a/net/spiritvnc/files/patch-src_spiritvnc.cxx b/net/spiritvnc/files/patch-src_spiritvnc.cxx deleted file mode 100644 index 987c78f698c7..000000000000 --- a/net/spiritvnc/files/patch-src_spiritvnc.cxx +++ /dev/null @@ -1,24 +0,0 @@ ---- src/spiritvnc.cxx.orig 2021-02-15 06:05:31 UTC -+++ src/spiritvnc.cxx -@@ -46,6 +46,8 @@ - #include - #include "app.h" - #include "consts_enums.h" -+#include -+#include "../spiritvnc.xpm" - - - AppVars * app = new AppVars(); -@@ -79,6 +81,12 @@ int main (int argc, char **argv) - - // set app icons - svCreateAppIcons(); -+ -+ // set window's icon -+ Pixmap xpm, mask; -+ XpmCreatePixmapFromData(fl_display, DefaultRootWindow(fl_display), -+ spiritvnc_xpm, &xpm, &mask, NULL); -+ app->mainWin->icon(reinterpret_cast(xpm)); - - // manually trigger misc events callback - svPositionWidgets();