blob: 6d04acfccee088a373866066833e9268465428bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
# Copyright 2021-2026 Liguros Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..14} )
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"
LICENSE="GPL-2+-with-openssl-exception"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
IUSE="+appindicator crypt cups examples keyring gvnc kwallet libressl nls python spice rdp rdp3 ssh vnc wayland webkit zeroconf"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
COMMON_DEPEND="
dev-libs/glib:2
dev-libs/json-glib
dev-libs/libpcre2
dev-libs/libsodium:=
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
x11-libs/gdk-pixbuf
x11-libs/gtk+:3[wayland?]
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? (
!rdp3? ( >=net-misc/freerdp-2.0.0_rc4_p1129:2[X] )
rdp3? ( 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.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 )
S="${WORKDIR}/${PN^}-v${PV}"
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_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
)
if use rdp3 ; then
mycmakeargs+=( -DWITH_FREERDP3=ON )
else
mycmakeargs+=( -DWITH_FREERDP3=OFF )
fi
cmake_src_configure
}
pkg_postinst() {
xdg_pkg_postinst
}
|