summaryrefslogtreecommitdiff
path: root/kde-plasma/krdp
diff options
context:
space:
mode:
Diffstat (limited to 'kde-plasma/krdp')
-rw-r--r--kde-plasma/krdp/Manifest1
-rw-r--r--kde-plasma/krdp/krdp-6.5.0.ebuild52
2 files changed, 53 insertions, 0 deletions
diff --git a/kde-plasma/krdp/Manifest b/kde-plasma/krdp/Manifest
index 06c0b05e09a..22ea27e70bd 100644
--- a/kde-plasma/krdp/Manifest
+++ b/kde-plasma/krdp/Manifest
@@ -1 +1,2 @@
DIST krdp-6.4.91.tar.xz 112208 BLAKE2B 5894fd0b79801234cda4551362ba6eb7942aa19dc589403ef24c72b2211db21bb9450fb207d8fa149ed43e091a371f048ce5518e9588dbab17d73e5241e502f8 SHA512 bd5f97c983d2868a8cb586f8acc4b123338465c15a99914d0a1e285e83f161633564e75d15f9b483b5adf2af15a1b4fef56c4f74b56124db695a52331f2bf834
+DIST krdp-6.5.0.tar.xz 112300 BLAKE2B 12ac07555540d13761fd08aaa388de072c6f81df20757710095c1ead2de78aa48fe799e5773f837a0b83c580ed35bd92b793a74d3438b830a7cc2bd2453d9dd0 SHA512 7924e9d2f7e4a0d3d4fbc4da18f5335f70a414af73211dbfe17e5589a9eee1eccdf09583056d423e24820085a5ec303b2c864209692dda96dbf2d46a269765de
diff --git a/kde-plasma/krdp/krdp-6.5.0.ebuild b/kde-plasma/krdp/krdp-6.5.0.ebuild
new file mode 100644
index 00000000000..30dfe1c861e
--- /dev/null
+++ b/kde-plasma/krdp/krdp-6.5.0.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
+}