summaryrefslogtreecommitdiff
path: root/kde-plasma/krdp
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-01-23 19:45:14 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2025-01-23 19:47:43 +0100
commitbeb7434ff6ebae681c936e245308fa62d6f954f2 (patch)
treed9d97dfe77d8a093c7ec62e5c05650d87e589f63 /kde-plasma/krdp
parent3d6d4e7e1987d1df1836b86325557fcdcb519846 (diff)
downloadkde-beb7434ff6ebae681c936e245308fa62d6f954f2.tar.gz
kde-beb7434ff6ebae681c936e245308fa62d6f954f2.tar.bz2
kde-beb7434ff6ebae681c936e245308fa62d6f954f2.zip
kde-plasma/krdp: 6.2.91 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/krdp')
-rw-r--r--kde-plasma/krdp/Manifest1
-rw-r--r--kde-plasma/krdp/krdp-6.2.91.ebuild50
2 files changed, 51 insertions, 0 deletions
diff --git a/kde-plasma/krdp/Manifest b/kde-plasma/krdp/Manifest
index 7e4b91ac922..1af7a32a8a6 100644
--- a/kde-plasma/krdp/Manifest
+++ b/kde-plasma/krdp/Manifest
@@ -1 +1,2 @@
DIST krdp-6.2.90.tar.xz 101236 BLAKE2B 5a937d3c9c1775c23776825760c07e2d12cf8b96ded1b90d42b0ec13dfb7b2bdb5b3aead465b8722fd27a1d72bbe7e4f09d5a17028238946bd0d7de77d6f1276 SHA512 6ca19801c434c8b4e654f8a526cc1c175fd1e8155000c467158b35a035f693af139e096cfa9542f8f1dae4390512e3606213d5ca257d722183dc810fa5c7878a
+DIST krdp-6.2.91.tar.xz 101276 BLAKE2B f584a65eec24742c9aada68b3dc34af3f9ebc68b2340985e85c3dad2c5f42df2a2656b91e35aba61ae03838500aa85969e402d3fdbd5411dd7f9ac05a86b95d3 SHA512 856ad1da2029286a24440b156c189e597df6991248e3d96da6943297484cbcf63ebea64d5b7375add794b764685ac00b133b30fa4c81e7509fbb8968f6b26a91
diff --git a/kde-plasma/krdp/krdp-6.2.91.ebuild b/kde-plasma/krdp/krdp-6.2.91.ebuild
new file mode 100644
index 00000000000..455259e0248
--- /dev/null
+++ b/kde-plasma/krdp/krdp-6.2.91.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_EXAMPLES="true"
+ECM_TEST="true"
+KFMIN=6.10.0
+QTMIN=6.8.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 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE=""
+
+COMMON_DEPEND="
+ >=dev-libs/qtkeychain-0.14.2:=[qt6(+)]
+ >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,network]
+ >=dev-qt/qtdeclarative-${QTMIN}:6
+ >=dev-qt/qtwayland-${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/ki18n-${KFMIN}:6
+ >=kde-frameworks/kstatusnotifieritem-${KFMIN}:6
+ >=kde-plasma/kpipewire-${KDE_CATV}:6
+ >=net-misc/freerdp-2.10:2[server]
+ x11-libs/libxkbcommon
+"
+DEPEND="${COMMON_DEPEND}
+ dev-libs/plasma-wayland-protocols
+"
+RDEPEND="${COMMON_DEPEND}
+ >=kde-frameworks/kirigami-${KFMIN}: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
+}