summaryrefslogtreecommitdiff
path: root/kde-plasma/krdp/krdp-6.4.90.ebuild
diff options
context:
space:
mode:
authorRepository mirror & CI <repomirrorci@gentoo.org>2025-09-18 19:03:48 +0000
committerRepository mirror & CI <repomirrorci@gentoo.org>2025-09-18 19:03:48 +0000
commita06cc571731e166220a4ee9cffedd806a83cd83c (patch)
tree217021da3e92f4ce07c4bfe028d1dcefb6482d7f /kde-plasma/krdp/krdp-6.4.90.ebuild
parent5fb58560e0a210e64afc09f630d28f753b142cc7 (diff)
parent53e0da3eb8653491d78418c55bb9b6175de18f58 (diff)
downloadkde-a06cc571731e166220a4ee9cffedd806a83cd83c.tar.gz
kde-a06cc571731e166220a4ee9cffedd806a83cd83c.tar.bz2
kde-a06cc571731e166220a4ee9cffedd806a83cd83c.zip
Merge updates from master
Diffstat (limited to 'kde-plasma/krdp/krdp-6.4.90.ebuild')
-rw-r--r--kde-plasma/krdp/krdp-6.4.90.ebuild52
1 files changed, 52 insertions, 0 deletions
diff --git a/kde-plasma/krdp/krdp-6.4.90.ebuild b/kde-plasma/krdp/krdp-6.4.90.ebuild
new file mode 100644
index 00000000000..30dfe1c861e
--- /dev/null
+++ b/kde-plasma/krdp/krdp-6.4.90.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_EXAMPLES="true"
+ECM_TEST="true"
+KFMIN=6.18.0
+QTMIN=6.9.1
+inherit ecm flag-o-matic plasma.kde.org toolchain-funcs xdg
+
+DESCRIPTION="Library and examples for creating an RDP server"
+HOMEPAGE+=" https://quantumproductions.info/articles/2023-08/remote-desktop-using-rdp-protocol-plasma-wayland"
+
+LICENSE="GPL-2" # TODO: CHECK
+SLOT="6"
+KEYWORDS="~amd64"
+IUSE=""
+
+COMMON_DEPEND="
+ >=dev-libs/qtkeychain-0.14.2:=[qt6(+)]
+ >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,network,wayland]
+ >=dev-qt/qtdeclarative-${QTMIN}:6
+ >=kde-frameworks/kcmutils-${KFMIN}:6
+ >=kde-frameworks/kconfig-${KFMIN}:6
+ >=kde-frameworks/kcoreaddons-${KFMIN}:6
+ >=kde-frameworks/kcrash-${KFMIN}:6
+ >=kde-frameworks/kdbusaddons-${KFMIN}:6
+ >=kde-frameworks/kguiaddons-${KFMIN}:6
+ >=kde-frameworks/ki18n-${KFMIN}:6
+ >=kde-frameworks/kstatusnotifieritem-${KFMIN}:6
+ >=kde-plasma/kpipewire-${KDE_CATV}:6
+ >=net-misc/freerdp-3.1:3[server]
+ sys-libs/pam
+ x11-libs/libxkbcommon
+"
+DEPEND="${COMMON_DEPEND}
+ dev-libs/plasma-wayland-protocols
+"
+RDEPEND="${COMMON_DEPEND}
+ >=kde-frameworks/kirigami-${KFMIN}:6
+"
+RDEPEND+=" || ( >=dev-qt/qtbase-6.10:6[wayland] <dev-qt/qtwayland-6.10:6 )"
+BDEPEND=">=kde-frameworks/kcmutils-${KFMIN}:6"
+
+src_configure() {
+ # std::jthread and std::stop_token are implemented as experimental in libcxx
+ # enable these experimental libraries on clang systems
+ # https://libcxx.llvm.org/Status/Cxx20.html#note-p0660
+ [[ $(tc-get-cxx-stdlib) == 'libc++' ]] && append-cxxflags -fexperimental-library
+ ecm_src_configure
+}