Date: Sun, 18 Aug 2019 10:34:04 +0000 (UTC) From: Ben Woods <woodsb02@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r509197 - in head: . net net/remmina net/remmina-plugin-exec net/remmina-plugin-nx net/remmina-plugin-rdp net/remmina-plugin-spice net/remmina-plugin-st net/remmina-plugin-telepathy net... Message-ID: <201908181034.x7IAY4Ew069300@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: woodsb02 Date: Sun Aug 18 10:34:04 2019 New Revision: 509197 URL: https://svnweb.freebsd.org/changeset/ports/509197 Log: net/remmina: Upgrade to 1.3.5 Adding support for ST("simple" terminal), www, and spice. Enabling nx by default. Telepathy plugin is disabled upstream and is removed as a port to match. Changes this release: https://gitlab.com/Remmina/Remmina/blob/v1.3.5/CHANGELOG.md PR: 238221 Submitted by: Nick Wolff <darkfiberiru@gmail.com> Reported by: cem Reviewed by: mat Differential Revision: https://reviews.freebsd.org/D21166 Added: head/net/remmina-plugin-spice/ head/net/remmina-plugin-spice/Makefile (contents, props changed) head/net/remmina-plugin-spice/pkg-plist (contents, props changed) head/net/remmina-plugin-st/ head/net/remmina-plugin-st/Makefile (contents, props changed) head/net/remmina-plugin-st/pkg-plist (contents, props changed) head/net/remmina-plugin-www/ head/net/remmina-plugin-www/Makefile (contents, props changed) head/net/remmina-plugin-www/pkg-plist (contents, props changed) Deleted: head/net/remmina-plugin-telepathy/ Modified: head/MOVED head/net/Makefile head/net/remmina-plugin-exec/Makefile head/net/remmina-plugin-nx/Makefile head/net/remmina-plugin-rdp/Makefile head/net/remmina-plugin-vnc/Makefile head/net/remmina-plugin-xdmcp/Makefile head/net/remmina-plugins/Makefile head/net/remmina-plugins/bsd.plugin.mk head/net/remmina-plugins/distinfo head/net/remmina/Makefile head/net/remmina/distinfo head/net/remmina/pkg-message head/net/remmina/pkg-plist Modified: head/MOVED ============================================================================== --- head/MOVED Sun Aug 18 10:22:55 2019 (r509196) +++ head/MOVED Sun Aug 18 10:34:04 2019 (r509197) @@ -12857,6 +12857,7 @@ lang/cint|lang/cling|2019-07-31|Has expired: Abandonwa emulators/pearpc||2019-08-01|Has expired: Abandonware sysutils/bbcp||2019-08-03|Has expired: the port is broken for more than a year multimedia/gnome-mpv|multimedia/celluloid|2019-08-08|Renamed upstream +net/remmina-plugin-telepathy||2019-08-04|Disabled upstream for build Issues devel/py-mimeparse|devel/py-python-mimeparse|2019-08-11|Rename to match upstream naming devel/rubygem-web-console|devel/rubygem-web-console-rails5|2019-08-11|Rename to match our rubygem- port naming devel/rubygem-spring-rails5|devel/rubygem-spring|2019-08-11|Remove unnecessary port after devel/rubygem-spring update Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sun Aug 18 10:22:55 2019 (r509196) +++ head/net/Makefile Sun Aug 18 10:34:04 2019 (r509197) @@ -1176,9 +1176,11 @@ SUBDIR += remmina-plugin-nx SUBDIR += remmina-plugin-rdp SUBDIR += remmina-plugin-secret - SUBDIR += remmina-plugin-telepathy + SUBDIR += remmina-plugin-spice + SUBDIR += remmina-plugin-st SUBDIR += remmina-plugin-vnc SUBDIR += remmina-plugin-xdmcp + SUBDIR += remmina-plugin-www SUBDIR += remmina-plugins SUBDIR += remotebox SUBDIR += remotedesk Modified: head/net/remmina-plugin-exec/Makefile ============================================================================== --- head/net/remmina-plugin-exec/Makefile Sun Aug 18 10:22:55 2019 (r509196) +++ head/net/remmina-plugin-exec/Makefile Sun Aug 18 10:34:04 2019 (r509197) @@ -5,7 +5,8 @@ PKGNAMESUFFIX= -exec COMMENT= Remmina plugin to execute a command -USE_GNOME+= cairo +USES= gnome +USE_GNOME= cairo MASTERDIR= ${.CURDIR}/../remmina-plugins Modified: head/net/remmina-plugin-nx/Makefile ============================================================================== --- head/net/remmina-plugin-nx/Makefile Sun Aug 18 10:22:55 2019 (r509196) +++ head/net/remmina-plugin-nx/Makefile Sun Aug 18 10:34:04 2019 (r509197) @@ -1,16 +1,16 @@ # Created by: Koichiro IWAO <meta+ports@vmeta.jp> # $FreeBSD$ -PORTREVISION= 1 PKGNAMESUFFIX= -nx COMMENT= Remmina plugin for NX -USE_GNOME+= cairo -USE_XORG+= x11 xkbfile +USES= gnome +USE_GNOME= cairo +USE_XORG= x11 xkbfile MASTERDIR= ${.CURDIR}/../remmina-plugins -LIB_DEPENDS+= libssh.so:security/libssh +LIB_DEPENDS= libssh.so:security/libssh .include "${MASTERDIR}/Makefile" Modified: head/net/remmina-plugin-rdp/Makefile ============================================================================== --- head/net/remmina-plugin-rdp/Makefile Sun Aug 18 10:22:55 2019 (r509196) +++ head/net/remmina-plugin-rdp/Makefile Sun Aug 18 10:34:04 2019 (r509197) @@ -7,8 +7,9 @@ COMMENT= Remmina plugin for RDP protocol LIB_DEPENDS= libfreerdp2.so:net/freerdp -USE_GNOME+= cairo -USE_XORG+= ice sm x11 xext +USES= gnome +USE_GNOME= cairo +USE_XORG= ice sm x11 xext MASTERDIR= ${.CURDIR}/../remmina-plugins Added: head/net/remmina-plugin-spice/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/remmina-plugin-spice/Makefile Sun Aug 18 10:34:04 2019 (r509197) @@ -0,0 +1,13 @@ +# Created by: Nick Wolff <darkfiberiru@gmail.com> +# $FreeBSD$ + +PKGNAMESUFFIX= -spice + +COMMENT= Remmina plugin to execute a command + +BUILD_DEPENDS= spice-gtk>=0.37:deskutils/spice-gtk \ + spice-protocol>=0.12.15:devel/spice-protocol + +MASTERDIR= ${.CURDIR}/../remmina-plugins + +.include "${MASTERDIR}/Makefile" Added: head/net/remmina-plugin-spice/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/remmina-plugin-spice/pkg-plist Sun Aug 18 10:34:04 2019 (r509197) @@ -0,0 +1,3 @@ +lib/remmina/plugins/remmina-plugin-spice.so +share/icons/hicolor/scalable/emblems/remmina-spice-ssh-symbolic.svg +share/icons/hicolor/scalable/emblems/remmina-spice-symbolic.svg Added: head/net/remmina-plugin-st/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/remmina-plugin-st/Makefile Sun Aug 18 10:34:04 2019 (r509197) @@ -0,0 +1,10 @@ +# Created by: Alexander Logvinov <avl@FreeBSD.org> +# $FreeBSD$ + +PKGNAMESUFFIX= -st + +COMMENT= Remmina plugin for (Simple) Terminal use cases + +MASTERDIR= ${.CURDIR}/../remmina-plugins + +.include "${MASTERDIR}/Makefile" Added: head/net/remmina-plugin-st/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/remmina-plugin-st/pkg-plist Sun Aug 18 10:34:04 2019 (r509197) @@ -0,0 +1,2 @@ +lib/remmina/plugins/remmina-plugin-st.so +share/icons/hicolor/scalable/emblems/remmina-tool-symbolic.svg Modified: head/net/remmina-plugin-vnc/Makefile ============================================================================== --- head/net/remmina-plugin-vnc/Makefile Sun Aug 18 10:22:55 2019 (r509196) +++ head/net/remmina-plugin-vnc/Makefile Sun Aug 18 10:34:04 2019 (r509197) @@ -5,12 +5,12 @@ PKGNAMESUFFIX= -vnc COMMENT= Remmina plugin for VNC protocol -LIB_DEPENDS= libgnutls.so:security/gnutls \ - libgcrypt.so:security/libgcrypt \ +LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ + libgnutls.so:security/gnutls \ libvncserver.so:net/libvncserver -USES= jpeg -USE_GNOME+= cairo +USES= gnome jpeg +USE_GNOME= cairo MASTERDIR= ${.CURDIR}/../remmina-plugins Added: head/net/remmina-plugin-www/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/remmina-plugin-www/Makefile Sun Aug 18 10:34:04 2019 (r509197) @@ -0,0 +1,15 @@ +# Created by: Nick Wolff <darkfiberiru@gmail.com> +# $FreeBSD$ + +PKGNAMESUFFIX= -www + +COMMENT= Remmina plugin to open an authenticated web-browser + +USES= gnome +USE_GNOME= cairo +LIB_DEPENDS= libwebkit2gtk-4.0.so:www/webkit2-gtk3 \ + libsoup-2.4.so:devel/libsoup + +MASTERDIR= ${.CURDIR}/../remmina-plugins + +.include "${MASTERDIR}/Makefile" Added: head/net/remmina-plugin-www/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/remmina-plugin-www/pkg-plist Sun Aug 18 10:34:04 2019 (r509197) @@ -0,0 +1,3 @@ +lib/remmina/plugins/remmina-plugin-www.so +share/icons/hicolor/scalable/emblems/remmina-www-symbolic.svg +share/remmina/res/www-js.js Modified: head/net/remmina-plugin-xdmcp/Makefile ============================================================================== --- head/net/remmina-plugin-xdmcp/Makefile Sun Aug 18 10:22:55 2019 (r509196) +++ head/net/remmina-plugin-xdmcp/Makefile Sun Aug 18 10:34:04 2019 (r509197) @@ -7,7 +7,8 @@ COMMENT= Remmina plugin for XDMCP protocol RUN_DEPENDS= Xephyr:x11-servers/xephyr -USE_GNOME+= cairo +USES= gnome +USE_GNOME= cairo MASTERDIR= ${.CURDIR}/../remmina-plugins Modified: head/net/remmina-plugins/Makefile ============================================================================== --- head/net/remmina-plugins/Makefile Sun Aug 18 10:22:55 2019 (r509196) +++ head/net/remmina-plugins/Makefile Sun Aug 18 10:34:04 2019 (r509197) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME?= remmina-plugins -DISTVERSION= 1.2.31.4 -PORTREVISION= 1 +DISTVERSION= 1.3.5 CATEGORIES= net gnome MAINTAINER?= woodsb02@FreeBSD.org @@ -16,7 +15,7 @@ LICENSE?= GPLv2+ USE_GITLAB= yes GL_ACCOUNT= Remmina GL_PROJECT= Remmina -GL_COMMIT= 65d552c9becc957cae124ab5c26562cf22c052b9 +GL_COMMIT= e1a0ffd30a0d8e35ed86ec81ecb4719bb870d62c .include "${.CURDIR}/../remmina-plugins/bsd.plugin.mk" @@ -24,22 +23,26 @@ GL_COMMIT= 65d552c9becc957cae124ab5c26562cf22c052b9 USES= metaport -OPTIONS_DEFINE= EXEC KEYRING NX RDP TELEP VNC XDMCP -OPTIONS_DEFAULT= EXEC KEYRING RDP TELEP VNC XDMCP +OPTIONS_DEFINE= EXEC KEYRING NX RDP SPICE VNC WWW XDMCP +OPTIONS_DEFAULT= EXEC KEYRING NX RDP SPICE VNC WWW XDMCP EXEC_DESC= Plugin to execute a command KEYRING_DESC= GNOME Keyring plugin +NX_DESC= NX protocol plugin RDP_DESC= Remote Desktop Protocol plugin +SPICE_DESC= Spice protocol plugin +ST_DESC= (Simple) Terminal Plugin VNC_DESC= VNC protocol plugin +WWW_DESC= Plugin to open an authenticated web browser XDMCP_DESC= XDMCP protocol plugin -TELEP_DESC= Telepathy protocol plugin -NX_DESC= NX protocol plugin EXEC_RUN_DEPENDS= remmina-plugin-exec>=0:net/remmina-plugin-exec KEYRING_RUN_DEPENDS= remmina-plugin-secret>=0:net/remmina-plugin-secret NX_RUN_DEPENDS= remmina-plugin-nx>=0:net/remmina-plugin-nx RDP_RUN_DEPENDS= remmina-plugin-rdp>=0:net/remmina-plugin-rdp -TELEP_RUN_DEPENDS= remmina-plugin-telepathy>=0:net/remmina-plugin-telepathy +SPICE_RUN_DEPENDS= remmina-plugin-spice>=0:net/remmina-plugin-spice +ST_RUN_DEPENDS= remmina-plugin-st>=0:net/remmina-plugin-st VNC_RUN_DEPENDS= remmina-plugin-vnc>=0:net/remmina-plugin-vnc +WWW_RUN_DEPENDS= remmina-plugin-www>=0:net/remmina-plugin-www XDMCP_RUN_DEPENDS= remmina-plugin-xdmcp>=0:net/remmina-plugin-xdmcp .include <bsd.port.mk> Modified: head/net/remmina-plugins/bsd.plugin.mk ============================================================================== --- head/net/remmina-plugins/bsd.plugin.mk Sun Aug 18 10:22:55 2019 (r509196) +++ head/net/remmina-plugins/bsd.plugin.mk Sun Aug 18 10:34:04 2019 (r509197) @@ -33,10 +33,16 @@ post-patch: ${REINPLACE_CMD} -e '/add_subdirectory(data)/d' ${WRKSRC}/CMakeLists.txt ${REINPLACE_CMD} -e '/add_subdirectory(po)/d' ${WRKSRC}/CMakeLists.txt ${REINPLACE_CMD} -e '/find_suggested_package(AVAHI)/d' ${WRKSRC}/CMakeLists.txt + ${REINPLACE_CMD} -e '/target_link_libraries(remmina/d' ${WRKSRC}/plugins/CMakeLists.txt + # Which plugins to build .if ${PKGNAMESUFFIX:S,-,,} != "exec" ${REINPLACE_CMD} -e '/add_subdirectory(exec)/d' ${WRKSRC}/plugins/CMakeLists.txt .endif +.if ${PKGNAMESUFFIX:S,-,,} != "kwallet" + ${REINPLACE_CMD} -e '/add_definitions(-DWITH_KF5WALLET)/d' ${WRKSRC}/plugins/CMakeLists.txt + ${REINPLACE_CMD} -e '/add_subdirectory(kwallet)/d' ${WRKSRC}/plugins/CMakeLists.txt +.endif .if ${PKGNAMESUFFIX:S,-,,} != "nx" ${REINPLACE_CMD} -e '/find_suggested_package(LIBSSH)/d' ${WRKSRC}/plugins/CMakeLists.txt ${REINPLACE_CMD} -e '/find_required_package(XKBFILE)/d' ${WRKSRC}/plugins/CMakeLists.txt @@ -53,6 +59,9 @@ post-patch: ${REINPLACE_CMD} -e '/find_suggested_package(SPICE)/d' ${WRKSRC}/plugins/CMakeLists.txt ${REINPLACE_CMD} -e '/add_subdirectory(spice)/d' ${WRKSRC}/plugins/CMakeLists.txt .endif +.if ${PKGNAMESUFFIX:S,-,,} != "st" + ${REINPLACE_CMD} -e '/add_subdirectory(st)/d' ${WRKSRC}/plugins/CMakeLists.txt +.endif .if ${PKGNAMESUFFIX:S,-,,} != "telepathy" ${REINPLACE_CMD} -e '/find_suggested_package(TELEPATHY)/d' ${WRKSRC}/plugins/CMakeLists.txt ${REINPLACE_CMD} -e '/add_subdirectory(telepathy)/d' ${WRKSRC}/plugins/CMakeLists.txt @@ -61,6 +70,9 @@ post-patch: ${REINPLACE_CMD} -e '/find_suggested_package(GCRYPT)/d' ${WRKSRC}/CMakeLists.txt ${REINPLACE_CMD} -e' /find_suggested_package(LIBVNCSERVER)/d' ${WRKSRC}/plugins/CMakeLists.txt ${REINPLACE_CMD} -e '/add_subdirectory(vnc)/d' ${WRKSRC}/plugins/CMakeLists.txt +.endif +.if ${PKGNAMESUFFIX:S,-,,} != "www" + ${REINPLACE_CMD} -e '/add_subdirectory(www)/d' ${WRKSRC}/plugins/CMakeLists.txt .endif .if ${PKGNAMESUFFIX:S,-,,} != "xdmcp" ${REINPLACE_CMD} -e '/add_subdirectory(xdmcp)/d' ${WRKSRC}/plugins/CMakeLists.txt Modified: head/net/remmina-plugins/distinfo ============================================================================== --- head/net/remmina-plugins/distinfo Sun Aug 18 10:22:55 2019 (r509196) +++ head/net/remmina-plugins/distinfo Sun Aug 18 10:34:04 2019 (r509197) @@ -1,3 +1,3 @@ -TIMESTAMP = 1535188642 -SHA256 (Remmina-Remmina-65d552c9becc957cae124ab5c26562cf22c052b9_GL0.tar.gz) = 02efdd291661c2f54d6aede6fd82898ac103b428a474e24240b90c6bef87f5f2 -SIZE (Remmina-Remmina-65d552c9becc957cae124ab5c26562cf22c052b9_GL0.tar.gz) = 1250771 +TIMESTAMP = 1564883727 +SHA256 (Remmina-Remmina-e1a0ffd30a0d8e35ed86ec81ecb4719bb870d62c_GL0.tar.gz) = 91c97b4e284dbc3612e000cd4ded1c01cf6f29b74ddde095d2ef6a7fc673b6d4 +SIZE (Remmina-Remmina-e1a0ffd30a0d8e35ed86ec81ecb4719bb870d62c_GL0.tar.gz) = 1474390 Modified: head/net/remmina/Makefile ============================================================================== --- head/net/remmina/Makefile Sun Aug 18 10:22:55 2019 (r509196) +++ head/net/remmina/Makefile Sun Aug 18 10:34:04 2019 (r509197) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= remmina -DISTVERSION= 1.2.31.4 -PORTREVISION= 1 +DISTVERSION= 1.3.5 CATEGORIES= net gnome MAINTAINER= woodsb02@FreeBSD.org @@ -13,20 +12,23 @@ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libjson-glib-1.0.so:devel/json-glib \ + libsodium.so:security/libsodium \ libsoup-2.4.so:devel/libsoup +USES= cmake desktop-file-utils gettext gnome localbase:ldflags pathfix \ + pkgconfig shared-mime-info ssl shebangfix + USE_GITLAB= yes GL_ACCOUNT= Remmina GL_PROJECT= Remmina -GL_COMMIT= 65d552c9becc957cae124ab5c26562cf22c052b9 +GL_COMMIT= e1a0ffd30a0d8e35ed86ec81ecb4719bb870d62c -USES= cmake desktop-file-utils gettext localbase:ldflags pathfix \ - pkgconfig shared-mime-info ssl USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 pango USE_XORG= ice sm x11 xext xkbfile INSTALLS_ICONS= yes CMAKE_ARGS= --build=build \ -DWITH_APPINDICATOR:BOOL=false +SHEBANG_FILES= data/desktop/remmina-file-wrapper.sh.in OPTIONS_DEFINE= AVAHI GCRYPT NLS SSH TERM OPTIONS_DEFAULT= AVAHI GCRYPT SSH TERM Modified: head/net/remmina/distinfo ============================================================================== --- head/net/remmina/distinfo Sun Aug 18 10:22:55 2019 (r509196) +++ head/net/remmina/distinfo Sun Aug 18 10:34:04 2019 (r509197) @@ -1,3 +1,3 @@ -TIMESTAMP = 1535184028 -SHA256 (Remmina-Remmina-65d552c9becc957cae124ab5c26562cf22c052b9_GL0.tar.gz) = 02efdd291661c2f54d6aede6fd82898ac103b428a474e24240b90c6bef87f5f2 -SIZE (Remmina-Remmina-65d552c9becc957cae124ab5c26562cf22c052b9_GL0.tar.gz) = 1250771 +TIMESTAMP = 1564883727 +SHA256 (Remmina-Remmina-e1a0ffd30a0d8e35ed86ec81ecb4719bb870d62c_GL0.tar.gz) = 91c97b4e284dbc3612e000cd4ded1c01cf6f29b74ddde095d2ef6a7fc673b6d4 +SIZE (Remmina-Remmina-e1a0ffd30a0d8e35ed86ec81ecb4719bb870d62c_GL0.tar.gz) = 1474390 Modified: head/net/remmina/pkg-message ============================================================================== --- head/net/remmina/pkg-message Sun Aug 18 10:22:55 2019 (r509196) +++ head/net/remmina/pkg-message Sun Aug 18 10:34:04 2019 (r509197) @@ -1,8 +1,13 @@ [ { type: install +[ +{ + type: install message: <<EOM - Remmina is pretty useless without a plugins. - Consider installing net/remmina-plugins. +Remmina is pretty useless without a plugins. +Consider installing net/remmina-plugins. EOM +} +] } ] Modified: head/net/remmina/pkg-plist ============================================================================== --- head/net/remmina/pkg-plist Sun Aug 18 10:22:55 2019 (r509196) +++ head/net/remmina/pkg-plist Sun Aug 18 10:34:04 2019 (r509197) @@ -1,5 +1,6 @@ bin/gnome-session-remmina bin/remmina +bin/remmina-file-wrapper.sh bin/remmina-gnome include/remmina/plugin.h include/remmina/remmina_trace_calls.h @@ -29,10 +30,13 @@ share/icons/hicolor/64x64/apps/org.remmina.Remmina.png share/icons/hicolor/72x72/apps/org.remmina.Remmina.png share/icons/hicolor/96x96/apps/org.remmina.Remmina.png share/icons/hicolor/scalable/actions/remmina-camera-photo-symbolic.svg +share/icons/hicolor/scalable/actions/remmina-connect-symbolic.svg share/icons/hicolor/scalable/actions/remmina-disconnect-symbolic.svg +share/icons/hicolor/scalable/actions/remmina-document-save-symbolic.svg +share/icons/hicolor/scalable/actions/remmina-document-send-symbolic.svg +share/icons/hicolor/scalable/actions/remmina-duplicate-symbolic.svg share/icons/hicolor/scalable/actions/remmina-dynres-symbolic.svg share/icons/hicolor/scalable/actions/remmina-fit-window-symbolic.svg -share/icons/hicolor/scalable/actions/remmina-folder-symbolic.svg share/icons/hicolor/scalable/actions/remmina-fullscreen-symbolic.svg share/icons/hicolor/scalable/actions/remmina-go-bottom-symbolic.svg share/icons/hicolor/scalable/actions/remmina-keyboard-symbolic.svg @@ -44,66 +48,68 @@ share/icons/hicolor/scalable/actions/remmina-preferenc share/icons/hicolor/scalable/actions/remmina-scale-symbolic.svg share/icons/hicolor/scalable/actions/remmina-switch-page-symbolic.svg share/icons/hicolor/scalable/actions/remmina-system-run-symbolic.svg +share/icons/hicolor/scalable/actions/view-list.svg share/icons/hicolor/scalable/apps/org.remmina.Remmina.svg share/icons/hicolor/scalable/emblems/remmina-sftp-symbolic.svg share/icons/hicolor/scalable/emblems/remmina-ssh-symbolic.svg -%%NLS%%share/locale/ar/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/ast/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/bg/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/bn/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/bs/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/ca/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/ca@valencia/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/cs/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/da/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/de/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/el/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/en_AU/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/es/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/et/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/eu/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/fi/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/fr/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/gl/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/he/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/hr/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/hu/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/id/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/it/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/ja/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/kk/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/km/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/kn/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/ko/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/lt/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/lv/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/ms/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/my/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/nb/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/nl/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/oc/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/pl/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/pt/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/pt_PT/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/ro/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/ru/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/shn/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/si/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/sk/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/sl/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/sq/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/sr/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/sv/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/te/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/th/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/tr/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/ug/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/uk/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/uz@cyrillic/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/remmina.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/remmina.mo +share/locale/ar/LC_MESSAGES/remmina.mo +share/locale/ast/LC_MESSAGES/remmina.mo +share/locale/bg/LC_MESSAGES/remmina.mo +share/locale/bn/LC_MESSAGES/remmina.mo +share/locale/bs/LC_MESSAGES/remmina.mo +share/locale/ca/LC_MESSAGES/remmina.mo +share/locale/ca@valencia/LC_MESSAGES/remmina.mo +share/locale/cs/LC_MESSAGES/remmina.mo +share/locale/da/LC_MESSAGES/remmina.mo +share/locale/de/LC_MESSAGES/remmina.mo +share/locale/el/LC_MESSAGES/remmina.mo +share/locale/en_AU/LC_MESSAGES/remmina.mo +share/locale/en_GB/LC_MESSAGES/remmina.mo +share/locale/es/LC_MESSAGES/remmina.mo +share/locale/es_VE/LC_MESSAGES/remmina.mo +share/locale/et/LC_MESSAGES/remmina.mo +share/locale/eu/LC_MESSAGES/remmina.mo +share/locale/fi/LC_MESSAGES/remmina.mo +share/locale/fr/LC_MESSAGES/remmina.mo +share/locale/gl/LC_MESSAGES/remmina.mo +share/locale/he/LC_MESSAGES/remmina.mo +share/locale/hr/LC_MESSAGES/remmina.mo +share/locale/hu/LC_MESSAGES/remmina.mo +share/locale/id/LC_MESSAGES/remmina.mo +share/locale/it/LC_MESSAGES/remmina.mo +share/locale/ja/LC_MESSAGES/remmina.mo +share/locale/kk/LC_MESSAGES/remmina.mo +share/locale/km/LC_MESSAGES/remmina.mo +share/locale/kn/LC_MESSAGES/remmina.mo +share/locale/ko/LC_MESSAGES/remmina.mo +share/locale/lt/LC_MESSAGES/remmina.mo +share/locale/lv/LC_MESSAGES/remmina.mo +share/locale/ms/LC_MESSAGES/remmina.mo +share/locale/my/LC_MESSAGES/remmina.mo +share/locale/nb/LC_MESSAGES/remmina.mo +share/locale/nl/LC_MESSAGES/remmina.mo +share/locale/oc/LC_MESSAGES/remmina.mo +share/locale/pl/LC_MESSAGES/remmina.mo +share/locale/pt/LC_MESSAGES/remmina.mo +share/locale/pt_BR/LC_MESSAGES/remmina.mo +share/locale/pt_PT/LC_MESSAGES/remmina.mo +share/locale/ro/LC_MESSAGES/remmina.mo +share/locale/ru/LC_MESSAGES/remmina.mo +share/locale/shn/LC_MESSAGES/remmina.mo +share/locale/si/LC_MESSAGES/remmina.mo +share/locale/sk/LC_MESSAGES/remmina.mo +share/locale/sl/LC_MESSAGES/remmina.mo +share/locale/sq/LC_MESSAGES/remmina.mo +share/locale/sr/LC_MESSAGES/remmina.mo +share/locale/sv/LC_MESSAGES/remmina.mo +share/locale/te/LC_MESSAGES/remmina.mo +share/locale/th/LC_MESSAGES/remmina.mo +share/locale/tr/LC_MESSAGES/remmina.mo +share/locale/ug/LC_MESSAGES/remmina.mo +share/locale/uk/LC_MESSAGES/remmina.mo +share/locale/uz@cyrillic/LC_MESSAGES/remmina.mo +share/locale/zh_CN/LC_MESSAGES/remmina.mo +share/locale/zh_TW/LC_MESSAGES/remmina.mo share/metainfo/org.remmina.Remmina.appdata.xml share/mime/packages/remmina-mime.xml %%DATADIR%%/external_tools/functions.sh @@ -118,6 +124,7 @@ share/mime/packages/remmina-mime.xml %%DATADIR%%/theme/AdventureTime.colors %%DATADIR%%/theme/Afterglow.colors %%DATADIR%%/theme/AlienBlood.colors +%%DATADIR%%/theme/Andromeda.colors %%DATADIR%%/theme/Argonaut.colors %%DATADIR%%/theme/Arthur.colors %%DATADIR%%/theme/AtelierSulphurpool.colors @@ -146,11 +153,14 @@ share/mime/packages/remmina-mime.xml %%DATADIR%%/theme/Calamity.colors %%DATADIR%%/theme/Chalk.colors %%DATADIR%%/theme/Chalkboard.colors +%%DATADIR%%/theme/ChallengerDeep.colors +%%DATADIR%%/theme/Chester.colors %%DATADIR%%/theme/Ciapre.colors %%DATADIR%%/theme/Cobalt Neon.colors %%DATADIR%%/theme/Cobalt2.colors %%DATADIR%%/theme/CrayonPonyFish.colors %%DATADIR%%/theme/Dark Pastel.colors +%%DATADIR%%/theme/Dark+.colors %%DATADIR%%/theme/Darkside.colors %%DATADIR%%/theme/Desert.colors %%DATADIR%%/theme/DimmedMonokai.colors @@ -172,6 +182,7 @@ share/mime/packages/remmina-mime.xml %%DATADIR%%/theme/Flatland.colors %%DATADIR%%/theme/Floraverse.colors %%DATADIR%%/theme/ForestBlue.colors +%%DATADIR%%/theme/Framer.colors %%DATADIR%%/theme/FrontEndDelight.colors %%DATADIR%%/theme/FunForrest.colors %%DATADIR%%/theme/Galaxy.colors @@ -186,6 +197,8 @@ share/mime/packages/remmina-mime.xml %%DATADIR%%/theme/Highway.colors %%DATADIR%%/theme/Hipster Green.colors %%DATADIR%%/theme/Homebrew.colors +%%DATADIR%%/theme/Hopscotch.256.colors +%%DATADIR%%/theme/Hopscotch.colors %%DATADIR%%/theme/Hurtado.colors %%DATADIR%%/theme/Hybrid.colors %%DATADIR%%/theme/IC_Green_PPL.colors @@ -196,6 +209,8 @@ share/mime/packages/remmina-mime.xml %%DATADIR%%/theme/Jellybeans.colors %%DATADIR%%/theme/JetBrains Darcula.colors %%DATADIR%%/theme/Kibble.colors +%%DATADIR%%/theme/Kolorit.colors +%%DATADIR%%/theme/Lab Fox.colors %%DATADIR%%/theme/Later This Evening.colors %%DATADIR%%/theme/Lavandula.colors %%DATADIR%%/theme/LiquidCarbon.colors @@ -204,6 +219,7 @@ share/mime/packages/remmina-mime.xml %%DATADIR%%/theme/Man Page.colors %%DATADIR%%/theme/Material.colors %%DATADIR%%/theme/MaterialDark.colors +%%DATADIR%%/theme/MaterialOcean.colors %%DATADIR%%/theme/Mathias.colors %%DATADIR%%/theme/Medallion.colors %%DATADIR%%/theme/Misterioso.colors @@ -215,8 +231,10 @@ share/mime/packages/remmina-mime.xml %%DATADIR%%/theme/N0tch2k.colors %%DATADIR%%/theme/Neopolitan.colors %%DATADIR%%/theme/Neutron.colors +%%DATADIR%%/theme/Night Owlish Light.colors %%DATADIR%%/theme/NightLion v1.colors %%DATADIR%%/theme/NightLion v2.colors +%%DATADIR%%/theme/Nocturnal Winter.colors %%DATADIR%%/theme/Novel.colors %%DATADIR%%/theme/Obsidian.colors %%DATADIR%%/theme/Ocean.colors @@ -224,6 +242,7 @@ share/mime/packages/remmina-mime.xml %%DATADIR%%/theme/Ollie.colors %%DATADIR%%/theme/OneHalfDark.colors %%DATADIR%%/theme/OneHalfLight.colors +%%DATADIR%%/theme/Operator Mono Dark.colors %%DATADIR%%/theme/Pandora.colors %%DATADIR%%/theme/Paraiso Dark.colors %%DATADIR%%/theme/Parasio Dark.colors @@ -238,6 +257,7 @@ share/mime/packages/remmina-mime.xml %%DATADIR%%/theme/Red Alert.colors %%DATADIR%%/theme/Red Planet.colors %%DATADIR%%/theme/Red Sands.colors +%%DATADIR%%/theme/Relaxed.colors %%DATADIR%%/theme/Rippedcasts.colors %%DATADIR%%/theme/Royal.colors %%DATADIR%%/theme/Ryuuko.colors @@ -261,6 +281,7 @@ share/mime/packages/remmina-mime.xml %%DATADIR%%/theme/Spiderman.colors %%DATADIR%%/theme/Spring.colors %%DATADIR%%/theme/Square.colors +%%DATADIR%%/theme/Subliminal.colors %%DATADIR%%/theme/Sundried.colors %%DATADIR%%/theme/Symfonic.colors %%DATADIR%%/theme/Tango Adapted.colors @@ -279,7 +300,9 @@ share/mime/packages/remmina-mime.xml %%DATADIR%%/theme/Treehouse.colors %%DATADIR%%/theme/Twilight.colors %%DATADIR%%/theme/Ubuntu.colors +%%DATADIR%%/theme/UltraViolent.colors %%DATADIR%%/theme/UnderTheSea.colors +%%DATADIR%%/theme/Unikitty.colors %%DATADIR%%/theme/Urple.colors %%DATADIR%%/theme/Vaughn.colors %%DATADIR%%/theme/VibrantInk.colors @@ -287,22 +310,31 @@ share/mime/packages/remmina-mime.xml %%DATADIR%%/theme/Violet Light.colors %%DATADIR%%/theme/WarmNeon.colors %%DATADIR%%/theme/Wez.colors +%%DATADIR%%/theme/Whimsy.colors %%DATADIR%%/theme/WildCherry.colors %%DATADIR%%/theme/Wombat.colors %%DATADIR%%/theme/Wryan.colors %%DATADIR%%/theme/Zenburn.colors %%DATADIR%%/theme/ayu.colors %%DATADIR%%/theme/ayu_light.colors +%%DATADIR%%/theme/cyberpunk.colors %%DATADIR%%/theme/deep.colors +%%DATADIR%%/theme/idea.colors %%DATADIR%%/theme/idleToes.colors +%%DATADIR%%/theme/lovelace.colors +%%DATADIR%%/theme/midnight-in-mojave.colors +%%DATADIR%%/theme/primary.colors %%DATADIR%%/theme/purplepeter.colors +%%DATADIR%%/theme/rebecca.colors %%DATADIR%%/theme/synthwave.colors %%DATADIR%%/ui/remmina_about.glade %%DATADIR%%/ui/remmina_key_chooser.glade %%DATADIR%%/ui/remmina_main.glade %%DATADIR%%/ui/remmina_mpc.glade +%%DATADIR%%/ui/remmina_news.glade %%DATADIR%%/ui/remmina_preferences.glade %%DATADIR%%/ui/remmina_snap_info_dialog.glade %%DATADIR%%/ui/remmina_spinner.glade %%DATADIR%%/ui/remmina_string_list.glade +%%DATADIR%%/ui/remmina_unlock.glade share/xsessions/remmina-gnome.desktop
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908181034.x7IAY4Ew069300>