mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-05 12:38:09 -07:00
net-misc/remmina: Fix building GVNC plugin
To enable the plugin, cmake needs -DWITH_GVNC=ON. In addition, it checks for gvncpulse and won't build the plugin if is missing. Signed-off-by: Sebastian Hamann <code@ares-macrotechnology.com> Part-of: https://github.com/gentoo/gentoo/pull/44014 Closes: https://github.com/gentoo/gentoo/pull/44014 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
committed by
Sam James
parent
eeab929afc
commit
c7d2d225fc
106
net-misc/remmina/remmina-1.4.40-r3.ebuild
Normal file
106
net-misc/remmina/remmina-1.4.40-r3.ebuild
Normal file
@@ -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} )
|
||||
|
||||
MY_P="${PN^}-v${PV}"
|
||||
inherit cmake 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/v${PV}/${MY_P}.tar.bz2"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
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[pulseaudio] )
|
||||
kwallet? ( kde-frameworks/kwallet:6 )
|
||||
python? ( ${PYTHON_DEPS} )
|
||||
rdp? ( >=net-misc/freerdp-3.11.0: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 )
|
||||
"
|
||||
RDEPEND="
|
||||
${COMMON_DEPEND}
|
||||
virtual/freedesktop-icon-theme
|
||||
"
|
||||
BDEPEND="
|
||||
virtual/pkgconfig
|
||||
nls? ( sys-devel/gettext )
|
||||
"
|
||||
|
||||
DOCS=( AUTHORS CHANGELOG.md README.md THANKS.md )
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${P}-libssh-no.patch"
|
||||
"${FILESDIR}/${P}-kf6wallet.patch" # bug 950750; TODO: upstream
|
||||
)
|
||||
|
||||
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_GVNC=$(usex gvnc)
|
||||
-DWITH_ICON_CACHE=OFF
|
||||
-DWITH_KF6WALLET=$(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
|
||||
}
|
||||
105
net-misc/remmina/remmina-1.4.41-r1.ebuild
Normal file
105
net-misc/remmina/remmina-1.4.41-r1.ebuild
Normal file
@@ -0,0 +1,105 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..13} )
|
||||
|
||||
MY_P="${PN^}-v${PV}"
|
||||
inherit cmake 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/v${PV}/${MY_P}.tar.bz2"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
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[pulseaudio] )
|
||||
kwallet? ( kde-frameworks/kwallet:6 )
|
||||
python? ( ${PYTHON_DEPS} )
|
||||
rdp? ( >=net-misc/freerdp-3.11.0: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 )
|
||||
"
|
||||
RDEPEND="
|
||||
${COMMON_DEPEND}
|
||||
virtual/freedesktop-icon-theme
|
||||
"
|
||||
BDEPEND="
|
||||
virtual/pkgconfig
|
||||
nls? ( sys-devel/gettext )
|
||||
"
|
||||
|
||||
DOCS=( AUTHORS CHANGELOG.md README.md THANKS.md )
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${PN}-1.4.40-kf6wallet.patch" # bug 950750; TODO: upstream
|
||||
)
|
||||
|
||||
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_GVNC=$(usex gvnc)
|
||||
-DWITH_ICON_CACHE=OFF
|
||||
-DWITH_KF6WALLET=$(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
|
||||
}
|
||||
Reference in New Issue
Block a user