public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-misc/remmina/, net-misc/remmina/files/
@ 2020-06-24 13:36 Ben Kohler
  0 siblings, 0 replies; 5+ messages in thread
From: Ben Kohler @ 2020-06-24 13:36 UTC (permalink / raw
  To: gentoo-commits

commit:     e747c7300f130c6dd10c69757f9334f7fa15df2d
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 24 13:36:23 2020 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Wed Jun 24 13:36:36 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e747c730

net-misc/remmina: bump to 1.4.7, drop old

Package-Manager: Portage-2.3.102, Repoman-2.3.23
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-misc/remmina/Manifest                          |  2 +-
 .../files/remmina-1.4.6-with-examples.patch        | 34 ----------------------
 .../{remmina-1.4.6.ebuild => remmina-1.4.7.ebuild} |  1 -
 3 files changed, 1 insertion(+), 36 deletions(-)

diff --git a/net-misc/remmina/Manifest b/net-misc/remmina/Manifest
index 585685b76eb..93f29e23156 100644
--- a/net-misc/remmina/Manifest
+++ b/net-misc/remmina/Manifest
@@ -1,3 +1,3 @@
 DIST Remmina-v1.4.3.tar.gz 1705751 BLAKE2B 4d49b5d5da4017cc1870a5e37a73db767862997cffdd58b080ab5707eeb293eed7e756ca974a4f4922bb9417e94610fe07b1e774f5ad7e269e797362ff264e83 SHA512 9f555f9ff60e2a136f6379a0f2828d091aa972dcff7ebd09eaf1834dc10f506d218e5cb6856c17f625c1040a11240da2ed5ebe9f4fe32a083494cfcbbdef1a41
 DIST Remmina-v1.4.5.tar.gz 1787506 BLAKE2B 095a01cca168daaef9ef59ff5adb9bb475467e8e8c42cac74a1a605627b09aa7246aa941b514b0de29739516aa988148f377040ed8629df3d5b17f0b1158cf76 SHA512 fec07b488db8d438aa6a0263e13557c10f1401a81b3371a2da03a1037d51f8e58e88652a15c6d6ce9e02535ef93ed0f9c5b674ab5efab430380f4b7dd57c4d9d
-DIST Remmina-v1.4.6.tar.gz 1895441 BLAKE2B 38dbda1976f3af3ad89c84eaecf50c42a2a22186dd013d30ae0cea83f5ee54af1443c196b79c1b4684e6afbc6f3d8fc8461fae18806476b8ae1a79148a2ccb12 SHA512 8b918502622957f6a1637d5d79ec605f7bf1c164f902c76a3a65dc316a8ccd11de63066182ffad4783bcb7f86d5e04ca6462f6a5d2e4256c4ae14c6f483419ea
+DIST Remmina-v1.4.7.tar.gz 1908687 BLAKE2B a6656821d727914f70bafe50d5c3764e3c36a4753c618048b91eadc1fa27b8f03bcd313b99cfd46cadc446b85b583994528895f9fb755d6c8ee28e0b0bab66d1 SHA512 ebe1e62e090062107ed6674d494255bac9e3d175553bc5ae949aa1bfc9e1de4b59f35f523ee36b08bb02580513d3b585344b9864001dd991cac656f1c13116e9

diff --git a/net-misc/remmina/files/remmina-1.4.6-with-examples.patch b/net-misc/remmina/files/remmina-1.4.6-with-examples.patch
deleted file mode 100644
index 259ef19e0fc..00000000000
--- a/net-misc/remmina/files/remmina-1.4.6-with-examples.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-diff -Nupr a/plugins/tool_hello_world/plugin.c b/plugins/tool_hello_world/plugin.c
---- a/plugins/tool_hello_world/plugin.c	2020-06-08 22:07:44.000000000 +0200
-+++ b/plugins/tool_hello_world/plugin.c	2020-06-10 20:18:48.495507560 +0200
-@@ -42,17 +42,19 @@
- #include <gdk/gdkx.h>
- 
- static RemminaPluginService *remmina_plugin_service = NULL;
-+#define remmina_plugin_debug(fmt, ...) remmina_plugin_service->_remmina_debug(__func__, fmt __VA_OPT__(,) __VA_ARGS__)
-+
- 
- static void remmina_plugin_tool_init(RemminaProtocolWidget *gp)
- {
- 	TRACE_CALL(__func__);
--	remmina_plugin_service->_debug("[%s] Plugin init", PLUGIN_NAME);
-+	remmina_plugin_debug("[%s] Plugin init", PLUGIN_NAME);
- }
- 
- static gboolean remmina_plugin_tool_open_connection(RemminaProtocolWidget *gp)
- {
- 	TRACE_CALL(__func__);
--	remmina_plugin_service->_debug("[%s] Plugin open connection", PLUGIN_NAME);
-+	remmina_plugin_debug("[%s] Plugin open connection", PLUGIN_NAME);
- 
- 	GtkDialog *dialog;
- 	dialog = GTK_DIALOG(gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL | GTK_DIALOG_USE_HEADER_BAR,
-@@ -65,7 +67,7 @@ static gboolean remmina_plugin_tool_open
- static gboolean remmina_plugin_tool_close_connection(RemminaProtocolWidget *gp)
- {
- 	TRACE_CALL(__func__);
--	remmina_plugin_service->_debug("[%s] Plugin close connection", PLUGIN_NAME);
-+	remmina_plugin_debug("[%s] Plugin close connection", PLUGIN_NAME);
- 	remmina_plugin_service->protocol_plugin_emit_signal(gp, "disconnect");
- 	return FALSE;
- }

diff --git a/net-misc/remmina/remmina-1.4.6.ebuild b/net-misc/remmina/remmina-1.4.7.ebuild
similarity index 98%
rename from net-misc/remmina/remmina-1.4.6.ebuild
rename to net-misc/remmina/remmina-1.4.7.ebuild
index 8902bb75ac4..f73e076ebcd 100644
--- a/net-misc/remmina/remmina-1.4.6.ebuild
+++ b/net-misc/remmina/remmina-1.4.7.ebuild
@@ -54,7 +54,6 @@ RDEPEND="
 "
 
 DOCS=( AUTHORS CHANGELOG.md README.md THANKS.md )
-PATCHES=( "${FILESDIR}"/${P}-with-examples.patch )
 
 S="${WORKDIR}/${MY_P}"
 


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/remmina/, net-misc/remmina/files/
@ 2025-04-10 19:29 Ben Kohler
  0 siblings, 0 replies; 5+ messages in thread
From: Ben Kohler @ 2025-04-10 19:29 UTC (permalink / raw
  To: gentoo-commits

commit:     be1b49a7e9a2e7ce96c725c824f2cab3b8f3d6c6
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 10 19:18:12 2025 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Thu Apr 10 19:28:53 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be1b49a7

net-misc/remmina: add 1.4.40

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 net-misc/remmina/Manifest                          |   1 +
 .../remmina/files/remmina-1.4.40-libssh-no.patch   |  19 ++++
 net-misc/remmina/remmina-1.4.40.ebuild             | 106 +++++++++++++++++++++
 3 files changed, 126 insertions(+)

diff --git a/net-misc/remmina/Manifest b/net-misc/remmina/Manifest
index 58c78ffffdf0..f0a132d95d73 100644
--- a/net-misc/remmina/Manifest
+++ b/net-misc/remmina/Manifest
@@ -3,3 +3,4 @@ DIST Remmina-v1.4.35.tar.bz2 2150047 BLAKE2B 3ba730cd4009a797ee7d66bbe4390e9db22
 DIST Remmina-v1.4.36.tar.bz2 2153190 BLAKE2B 0d29adcb84b7c72ae2f2468e0ef56e6f16f49a0ff2774cf59df699cf721aabdabbde91799d9266295f30fa5789d33f4aab450924aa5a325aa3f1315332dd7d4e SHA512 bdf3604849238ca2e61b6f35bbfba1df5eedf1c2374897a565f1a1e0b76a285be93700d92a6912d33d73ab745fb412856ee14fd0eab3feec492bf1b5aa35bc38
 DIST Remmina-v1.4.37.tar.bz2 2154629 BLAKE2B 113fcb53818526914ce5b867c1e41ed3703d28961037127444b66e2167d53512d330fa8c6eb0fe13b61f26b6eb43c5bb58d9b158f42897ae4081a8f0bc3481d0 SHA512 09db30823d4ffb61627cee01469e431b88575aa4370e39f9e4d1d384e3196c815206f01f3eeb8bc58df3e90d01bec38c271d81a8ea20cb4e44dd34d6e30d6706
 DIST Remmina-v1.4.39.tar.bz2 2155021 BLAKE2B 632c8c4e764117fef73a0fe330df74f9426ef691ea5315d8a02cc90437fdd41f2917de88a0e7f9501f62607d2bdc8fb81647c54ede33a506ac7fd915f931768c SHA512 b1e6b2f56eb4f4e236d78a2967374c4199250702d7301c9ab0878709ee8df8a1a8a1dcb0e74d78de51e52ccb087a2f92bd7b79e0f57a5266bfbf050aa8f555d7
+DIST Remmina-v1.4.40.tar.bz2 2176307 BLAKE2B cb5db34af818e3aec265db6c75610312ba2c863c44dfc9beb5d62a1b373e9300e4ec5d4bfa53d994bf00b77b3acb9351977509f50675ecf8403d7ffc19fcaf4a SHA512 ca5ff31a5252f66993f65c54c0806f06221f4705954aff237e7cda9f6ee9794afe579aaa9d8ac8351a73480b392c386dd25ae05321105f7b4f76d0b54129c625

diff --git a/net-misc/remmina/files/remmina-1.4.40-libssh-no.patch b/net-misc/remmina/files/remmina-1.4.40-libssh-no.patch
new file mode 100644
index 000000000000..5319a858f1d1
--- /dev/null
+++ b/net-misc/remmina/files/remmina-1.4.40-libssh-no.patch
@@ -0,0 +1,19 @@
+diff --git a/src/remmina_file_editor.c b/src/remmina_file_editor.c
+index 8de8e6f4a0cc91952aa5f92e587f09e3a5b9e205..33011995154120fe938627997fd1d347983a69aa 100644
+--- a/src/remmina_file_editor.c
++++ b/src/remmina_file_editor.c
+@@ -941,7 +941,7 @@ static gpointer ssh_tunnel_auth_list[] =
+ 
+ static void remmina_file_editor_run_import_export_dialog(gpointer user_data, gint type)
+ {
+-
++#ifdef HAVE_LIBSSH
+ 	RemminaFileEditor* gfe = (RemminaFileEditor*)user_data;
+ 	RemminaFileEditorPriv *priv = gfe->priv;
+ 	const gchar *cs;
+@@ -1046,6 +1046,7 @@ static void remmina_file_editor_run_import_export_dialog(gpointer user_data, gin
+ 		g_free(cs);
+ 	}	
+ 	gtk_widget_destroy(dialog);
++#endif
+ }

diff --git a/net-misc/remmina/remmina-1.4.40.ebuild b/net-misc/remmina/remmina-1.4.40.ebuild
new file mode 100644
index 000000000000..f81300b017de
--- /dev/null
+++ b/net-misc/remmina/remmina-1.4.40.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit cmake python-single-r1 xdg
+
+MY_P="${PN^}-v${PV}"
+
+DESCRIPTION="A GTK+ RDP, SPICE, VNC and SSH client"
+HOMEPAGE="https://remmina.org/"
+SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/v${PV}/${MY_P}.tar.bz2"
+S="${WORKDIR}/${PN^}-v${PV}"
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="+appindicator crypt cups examples keyring gvnc kwallet nls python spice ssh rdp vnc wayland webkit zeroconf X"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} ) || ( X wayland )"
+
+COMMON_DEPEND="
+	dev-libs/glib:2
+	dev-libs/json-glib
+	dev-libs/libpcre2
+	dev-libs/libsodium:=
+	dev-libs/openssl:0=
+	x11-libs/gdk-pixbuf
+	x11-libs/gtk+:3[X?,wayland?]
+	X? (
+		x11-libs/libX11
+		x11-libs/libxkbfile
+	)
+	appindicator? ( dev-libs/libayatana-appindicator )
+	crypt? ( dev-libs/libgcrypt:0= )
+	keyring? ( app-crypt/libsecret )
+	gvnc? ( net-libs/gtk-vnc )
+	kwallet? ( kde-frameworks/kwallet:5 )
+	python? ( ${PYTHON_DEPS} )
+	rdp? ( net-misc/freerdp:3=
+		cups? ( net-print/cups:= ) )
+	spice? ( net-misc/spice-gtk[gtk3] )
+	ssh? ( net-libs/libssh:0=[sftp]
+		x11-libs/vte:2.91 )
+	vnc? ( net-libs/libvncserver[jpeg] )
+	webkit? ( net-libs/webkit-gtk:4.1 )
+	zeroconf? ( >=net-dns/avahi-0.8-r2[dbus,gtk] )
+"
+
+DEPEND="
+	${COMMON_DEPEND}
+	spice? ( app-emulation/spice-protocol )
+"
+
+BDEPEND="
+	virtual/pkgconfig
+	nls? ( sys-devel/gettext )
+"
+
+RDEPEND="
+	${COMMON_DEPEND}
+	virtual/freedesktop-icon-theme
+"
+
+DOCS=( AUTHORS CHANGELOG.md README.md THANKS.md )
+PATCHES=( "${FILESDIR}/remmina-1.4.40-libssh-no.patch" )
+
+
+pkg_setup() {
+	use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+	xdg_environment_reset
+	cmake_src_prepare
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DHAVE_LIBAPPINDICATOR=$(usex appindicator ON OFF)
+		-DWITH_AVAHI=$(usex zeroconf)
+		-DWITH_CUPS=$(usex cups)
+		-DWITH_EXAMPLES=$(usex examples)
+		-DWITH_FREERDP=$(usex rdp)
+		-DWITH_FREERDP3=ON
+		-DWITH_GCRYPT=$(usex crypt)
+		-DWITH_GETTEXT=$(usex nls)
+		-DWITH_ICON_CACHE=OFF
+		-DWITH_KF5WALLET=$(usex kwallet)
+		-DWITH_LIBSECRET=$(usex keyring)
+		-DWITH_LIBSSH=$(usex ssh)
+		-DWITH_LIBVNCSERVER=$(usex vnc)
+		-DWITH_PYTHONLIBS=$(usex python ON OFF)
+		-DWITH_SPICE=$(usex spice)
+		-DWITH_TRANSLATIONS=$(usex nls)
+		-DWITH_UPDATE_DESKTOP_DB=OFF
+		-DWITH_VTE=$(usex ssh)
+		-DWITH_WWW=$(usex webkit)
+		-DWITH_X2GO=OFF
+		# when this feature is stable, add python eclass usage to optionally enable
+		-DWITH_PYTHON=OFF
+	)
+	cmake_src_configure
+}


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/remmina/, net-misc/remmina/files/
@ 2022-11-29 15:57 Ben Kohler
  0 siblings, 0 replies; 5+ messages in thread
From: Ben Kohler @ 2022-11-29 15:57 UTC (permalink / raw
  To: gentoo-commits

commit:     c38623241f52f154c55970f62b4c77f85c117277
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 29 15:53:45 2022 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Tue Nov 29 15:57:13 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3862324

net-misc/remmina: fix build against gtk+[-wayland]

Closes: https://bugs.gentoo.org/883551

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 .../remmina-1.4.27_p20221128-missing-gdk-include.patch      | 13 +++++++++++++
 net-misc/remmina/remmina-1.4.27_p20221128.ebuild            |  6 ++++--
 2 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/net-misc/remmina/files/remmina-1.4.27_p20221128-missing-gdk-include.patch b/net-misc/remmina/files/remmina-1.4.27_p20221128-missing-gdk-include.patch
new file mode 100644
index 000000000000..618dd721a293
--- /dev/null
+++ b/net-misc/remmina/files/remmina-1.4.27_p20221128-missing-gdk-include.patch
@@ -0,0 +1,13 @@
+diff --git a/src/remmina.c b/src/remmina.c
+index 5b59339f8..43834b9bd 100644
+--- a/src/remmina.c
++++ b/src/remmina.c
+@@ -32,6 +32,8 @@
+  *
+  */
+ 
++#include <gdk/gdk.h>
++
+ #define G_LOG_USE_STRUCTURED
+ #ifndef G_LOG_DOMAIN
+ #define G_LOG_DOMAIN    ((gchar*)"remmina")

diff --git a/net-misc/remmina/remmina-1.4.27_p20221128.ebuild b/net-misc/remmina/remmina-1.4.27_p20221128.ebuild
index e643ec1c2dbc..c6a6755dc703 100644
--- a/net-misc/remmina/remmina-1.4.27_p20221128.ebuild
+++ b/net-misc/remmina/remmina-1.4.27_p20221128.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/${COMMIT}/Remmina-${COMMIT
 LICENSE="GPL-2+-with-openssl-exception"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-IUSE="+appindicator crypt cups examples gnome-keyring gvnc kwallet nls python spice ssh rdp telemetry vnc webkit x2go zeroconf"
+IUSE="+appindicator crypt cups examples gnome-keyring gvnc kwallet nls python spice ssh rdp telemetry vnc wayland webkit x2go zeroconf"
 
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
@@ -27,7 +27,7 @@ COMMON_DEPEND="
 	dev-libs/libsodium:=
 	dev-libs/openssl:0=
 	x11-libs/gdk-pixbuf
-	x11-libs/gtk+:3
+	x11-libs/gtk+:3[wayland?]
 	x11-libs/libX11
 	x11-libs/libxkbfile
 	appindicator? ( dev-libs/libappindicator:3 )
@@ -67,6 +67,8 @@ DOCS=( AUTHORS CHANGELOG.md README.md THANKS.md )
 
 S="${WORKDIR}/Remmina-${COMMIT}"
 
+PATCHES=( "${FILESDIR}/${P}-missing-gdk-include.patch" )
+
 pkg_setup() {
 	use python && python-single-r1_pkg_setup
 }


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/remmina/, net-misc/remmina/files/
@ 2020-06-27 11:30 Ben Kohler
  0 siblings, 0 replies; 5+ messages in thread
From: Ben Kohler @ 2020-06-27 11:30 UTC (permalink / raw
  To: gentoo-commits

commit:     4282fb89d694f550fb900f4ba51895396e12a4c7
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 27 11:28:53 2020 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Sat Jun 27 11:30:00 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4282fb89

net-misc/remmina: backport examples patch

Closes: https://bugs.gentoo.org/729844

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 .../files/remmina-1.4.5-with-examples.patch        | 37 ++++++++++++++++++++++
 net-misc/remmina/remmina-1.4.5.ebuild              |  1 +
 2 files changed, 38 insertions(+)

diff --git a/net-misc/remmina/files/remmina-1.4.5-with-examples.patch b/net-misc/remmina/files/remmina-1.4.5-with-examples.patch
new file mode 100644
index 00000000000..10ac35744d7
--- /dev/null
+++ b/net-misc/remmina/files/remmina-1.4.5-with-examples.patch
@@ -0,0 +1,37 @@
+--- /dev/null
++++ b/net-misc/remmina/files/remmina-1.4.6-with-examples.patch
+@@ -0,0 +1,34 @@
++diff -Nupr a/plugins/tool_hello_world/plugin.c b/plugins/tool_hello_world/plugin.c
++--- a/plugins/tool_hello_world/plugin.c	2020-06-08 22:07:44.000000000 +0200
+++++ b/plugins/tool_hello_world/plugin.c	2020-06-10 20:18:48.495507560 +0200
++@@ -42,17 +42,19 @@
++ #include <gdk/gdkx.h>
++ 
++ static RemminaPluginService *remmina_plugin_service = NULL;
+++#define remmina_plugin_debug(fmt, ...) remmina_plugin_service->_remmina_debug(__func__, fmt __VA_OPT__(,) __VA_ARGS__)
+++
++ 
++ static void remmina_plugin_tool_init(RemminaProtocolWidget *gp)
++ {
++ 	TRACE_CALL(__func__);
++-	remmina_plugin_service->_debug("[%s] Plugin init", PLUGIN_NAME);
+++	remmina_plugin_debug("[%s] Plugin init", PLUGIN_NAME);
++ }
++ 
++ static gboolean remmina_plugin_tool_open_connection(RemminaProtocolWidget *gp)
++ {
++ 	TRACE_CALL(__func__);
++-	remmina_plugin_service->_debug("[%s] Plugin open connection", PLUGIN_NAME);
+++	remmina_plugin_debug("[%s] Plugin open connection", PLUGIN_NAME);
++ 
++ 	GtkDialog *dialog;
++ 	dialog = GTK_DIALOG(gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL | GTK_DIALOG_USE_HEADER_BAR,
++@@ -65,7 +67,7 @@ static gboolean remmina_plugin_tool_open
++ static gboolean remmina_plugin_tool_close_connection(RemminaProtocolWidget *gp)
++ {
++ 	TRACE_CALL(__func__);
++-	remmina_plugin_service->_debug("[%s] Plugin close connection", PLUGIN_NAME);
+++	remmina_plugin_debug("[%s] Plugin close connection", PLUGIN_NAME);
++ 	remmina_plugin_service->protocol_plugin_emit_signal(gp, "disconnect");
++ 	return FALSE;
++ }

diff --git a/net-misc/remmina/remmina-1.4.5.ebuild b/net-misc/remmina/remmina-1.4.5.ebuild
index f247dfe1992..04a7d55f4b7 100644
--- a/net-misc/remmina/remmina-1.4.5.ebuild
+++ b/net-misc/remmina/remmina-1.4.5.ebuild
@@ -58,6 +58,7 @@ DOCS=( AUTHORS CHANGELOG.md README.md THANKS.md )
 S="${WORKDIR}/${MY_P}"
 
 src_prepare() {
+	eapply "${FILESDIR}"/${P}-with-examples.patch
 	cmake_src_prepare
 	xdg_src_prepare
 }


^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/remmina/, net-misc/remmina/files/
@ 2016-12-10 10:26 Pacho Ramos
  0 siblings, 0 replies; 5+ messages in thread
From: Pacho Ramos @ 2016-12-10 10:26 UTC (permalink / raw
  To: gentoo-commits

commit:     d60a319a27c6ae9e21f7f6100a3eda44ae5f4bdf
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 10 10:24:49 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 10:26:15 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d60a319a

net-misc/remmina: Drop live ebuild (#602134) and unused patch.

Package-Manager: portage-2.3.2

 .../remmina/files/remmina-external_tools.patch     | 11 ---
 net-misc/remmina/remmina-9999.ebuild               | 87 ----------------------
 2 files changed, 98 deletions(-)

diff --git a/net-misc/remmina/files/remmina-external_tools.patch b/net-misc/remmina/files/remmina-external_tools.patch
deleted file mode 100644
index 9680b51..00000000
--- a/net-misc/remmina/files/remmina-external_tools.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-https://github.com/FreeRDP/Remmina/issues/171
---- a/remmina/CMakeLists.txt
-+++ b/remmina/CMakeLists.txt
-@@ -148,7 +148,6 @@ if(WITH_TRANSLATIONS)
- endif()
- add_subdirectory(icons)
- add_subdirectory(desktop)
--add_subdirectory(external_tools)
- 
- install(TARGETS remmina DESTINATION ${CMAKE_INSTALL_BINDIR})
- 

diff --git a/net-misc/remmina/remmina-9999.ebuild b/net-misc/remmina/remmina-9999.ebuild
deleted file mode 100644
index a660949..00000000
--- a/net-misc/remmina/remmina-9999.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit gnome2-utils cmake-utils
-
-if [[ ${PV} != 9999 ]]; then
-	SRC_URI="https://github.com/FreeRDP/Remmina/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-else
-	inherit git-2
-	SRC_URI=""
-	EGIT_REPO_URI="git://github.com/FreeRDP/Remmina.git
-		https://github.com/FreeRDP/Remmina.git"
-	KEYWORDS=""
-fi
-
-DESCRIPTION="A GTK+ RDP, VNC, XDMCP and SSH client"
-HOMEPAGE="http://remmina.sourceforge.net/"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="ayatana crypt debug freerdp gnome-keyring nls ssh telepathy vte zeroconf"
-
-RDEPEND="
-	x11-libs/gtk+:3
-	>=dev-libs/glib-2.31.18:2
-	>=net-libs/libvncserver-0.9.8.2
-	x11-libs/libxkbfile
-	virtual/freedesktop-icon-theme
-	ayatana? ( dev-libs/libappindicator )
-	crypt? ( dev-libs/libgcrypt:0 )
-	freerdp? (
-		>=net-misc/freerdp-1.1.0_beta1_p20130710
-		<net-misc/freerdp-1.2
-	)
-	gnome-keyring? ( gnome-base/libgnome-keyring )
-	ssh? ( net-libs/libssh[sftp] )
-	telepathy? ( net-libs/telepathy-glib )
-	vte? ( x11-libs/vte:2.90 )
-	zeroconf? ( net-dns/avahi[gtk3] )
-"
-DEPEND="${RDEPEND}
-	dev-util/intltool
-	virtual/pkgconfig
-	nls? ( sys-devel/gettext )
-"
-RDEPEND+="
-	!net-misc/remmina-plugins
-"
-
-DOCS=( README )
-PATCHES=( "${FILESDIR}/remmina-external_tools.patch" )
-
-S="${WORKDIR}/Remmina-${PV}"
-
-src_configure() {
-	local mycmakeargs=(
-		$(cmake-utils_use_with ayatana APPINDICATOR)
-		$(cmake-utils_use_with crypt GCRYPT)
-		$(cmake-utils_use_with freerdp FREERDP)
-		$(cmake-utils_use_with gnome-keyring GNOMEKEYRING)
-		$(cmake-utils_use_with nls GETTEXT)
-		$(cmake-utils_use_with nls TRANSLATIONS)
-		$(cmake-utils_use_with ssh LIBSSH)
-		$(cmake-utils_use_with telepathy TELEPATHY)
-		$(cmake-utils_use_with vte VTE)
-		$(cmake-utils_use_with zeroconf AVAHI)
-		-DGTK_VERSION=3
-		-DHAVE_PTHREAD=ON
-	)
-	cmake-utils_src_configure
-}
-
-pkg_preinst() {
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-	gnome2_icon_cache_update
-}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-04-10 19:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-24 13:36 [gentoo-commits] repo/gentoo:master commit in: net-misc/remmina/, net-misc/remmina/files/ Ben Kohler
  -- strict thread matches above, loose matches on Subject: below --
2025-04-10 19:29 Ben Kohler
2022-11-29 15:57 Ben Kohler
2020-06-27 11:30 Ben Kohler
2016-12-10 10:26 Pacho Ramos

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox