commit:     c0fbf368799be4d6ae274ae2c61985c223be89e2
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 28 22:29:50 2022 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Mon Nov 28 22:30:35 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0fbf368

net-misc/remmina: add 1.4.27_p20221128

Bug: https://bugs.gentoo.org/883455

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

 net-misc/remmina/Manifest                        |   1 +
 net-misc/remmina/remmina-1.4.27_p20221128.ebuild | 112 +++++++++++++++++++++++
 2 files changed, 113 insertions(+)

diff --git a/net-misc/remmina/Manifest b/net-misc/remmina/Manifest
index 7acd18347336..98e0395fd3d4 100644
--- a/net-misc/remmina/Manifest
+++ b/net-misc/remmina/Manifest
@@ -1 +1,2 @@
+DIST Remmina-347f84e41882219704693794621ebd18db36bd14.tar.bz2 2012646 BLAKE2B 
a0bc8bf062fca8decb9d93bf317c96ed30c861b8b3cee93bb868578a3a634ebf29d8919e4eb9fabb8dc4bbe6d5cbc91d3ff0fcb13d2735e9995b180cf9d3e007
 SHA512 
228de72fa389b21a1d72b0598c36f69237cb5166f85fc0a063d9c7de77c4a44b1e0937ea0fc950c71ed2cfccdd620d3fbad494f611c27f198579825aa591ec13
 DIST Remmina-v1.4.27.tar.gz 3479987 BLAKE2B 
96d4df06558a267db8605dc03de729061e303f9cebec84369ec3bdeeb19d4a377accaf224603ff9ba79bb9f1cecfa66519e6e02e328f42d24c46bdf3e1fabfa6
 SHA512 
2fff81a1a721b8ca87698697952bb1080cde6affc86c324f6fc30cc329ead57f0e617c39efeeee30890ad4812e719cee22a0b84df43aa1bc7db571607f208bfd

diff --git a/net-misc/remmina/remmina-1.4.27_p20221128.ebuild 
b/net-misc/remmina/remmina-1.4.27_p20221128.ebuild
new file mode 100644
index 000000000000..e437e9e844eb
--- /dev/null
+++ b/net-misc/remmina/remmina-1.4.27_p20221128.ebuild
@@ -0,0 +1,112 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{9..11} )
+
+COMMIT=347f84e41882219704693794621ebd18db36bd14
+
+inherit cmake optfeature python-single-r1 xdg
+
+DESCRIPTION="A GTK+ RDP, SPICE, VNC and SSH client"
+HOMEPAGE="https://remmina.org/";
+SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/${COMMIT}/Remmina-${COMMIT}.tar.bz2";
+
+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"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+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
+       x11-libs/libX11
+       x11-libs/libxkbfile
+       appindicator? ( dev-libs/libappindicator:3 )
+       crypt? ( dev-libs/libgcrypt:0= )
+       gnome-keyring? ( app-crypt/libsecret )
+       gvnc? ( net-libs/gtk-vnc )
+       kwallet? ( kde-frameworks/kwallet )
+       python? ( ${PYTHON_DEPS} )
+       rdp? ( >=net-misc/freerdp-2.0.0_rc4_p1129[X]
+               <net-misc/freerdp-3[X]
+               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 )
+       x2go? ( net-misc/pyhoca-cli )
+       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 )
+
+S="${WORKDIR}/Remmina-${COMMIT}"
+
+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=OFF
+               -DWITH_GCRYPT=$(usex crypt)
+               -DWITH_GETTEXT=$(usex nls)
+               -DWITH_ICON_CACHE=OFF
+               -DWITH_KF5WALLET=$(usex kwallet)
+               -DWITH_LIBSECRET=$(usex gnome-keyring)
+               -DWITH_LIBSSH=$(usex ssh)
+               -DWITH_LIBVNCSERVER=$(usex vnc)
+               -DWITH_NEWS=$(usex telemetry)
+               -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=$(usex x2go)
+               # when this feature is stable, add python eclass usage to 
optionally enable
+               -DWITH_PYTHON=OFF
+       )
+       cmake_src_configure
+}
+
+pkg_postinst() {
+       xdg_pkg_postinst
+
+       optfeature "encrypted VNC connections" net-libs/libvncserver[gcrypt]
+}

Reply via email to