diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-04-03 16:43:20 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-04-03 16:56:42 +0200 |
commit | 47b84fce9beb134c4584cf12e90a7a69f39eceb8 (patch) | |
tree | e3c7b82c0dbd39ddb6aac4df4cbb377e06cce878 /kde-plasma/libkworkspace | |
parent | dev-lang/python: ignore EPERM in test.support.unlink() (diff) | |
download | gentoo-47b84fce9beb134c4584cf12e90a7a69f39eceb8.tar.gz gentoo-47b84fce9beb134c4584cf12e90a7a69f39eceb8.tar.bz2 gentoo-47b84fce9beb134c4584cf12e90a7a69f39eceb8.zip |
kde-plasma: Add KDE Plasma 5.18.4.1
Closes: https://bugs.gentoo.org/715884
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/libkworkspace')
-rw-r--r-- | kde-plasma/libkworkspace/Manifest | 1 | ||||
-rw-r--r-- | kde-plasma/libkworkspace/libkworkspace-5.18.4.1.ebuild | 60 |
2 files changed, 61 insertions, 0 deletions
diff --git a/kde-plasma/libkworkspace/Manifest b/kde-plasma/libkworkspace/Manifest index 8b1dc7810827..72eb1691cf6c 100644 --- a/kde-plasma/libkworkspace/Manifest +++ b/kde-plasma/libkworkspace/Manifest @@ -1,2 +1,3 @@ DIST plasma-workspace-5.17.5.tar.xz 4962336 BLAKE2B d7c91130d303b612cae09627947547919d44ce91f31340bea4b8987ecc688728e0d937364c76710e0989554282688765bba58308cbb36c889e6729a6fbb7043a SHA512 b8a3f3a1a79d7254deecfb5228749abf15bc6f58ab17eb6d19e9010c74930491439aefa6589980dc0ae53858e4bef6be7edb66a15d3f227c5dfff458c1ca5d1a DIST plasma-workspace-5.18.3.tar.xz 5692500 BLAKE2B a8b6de136b64111b51c8f96dada75f19933745285edb6996fd5c87de02f44c24b8df53b43aa19e411d578c705dce36af2e741a8dd10cd153837a37fa0ff57b1e SHA512 a0acc751e47f6b10753a41009e2b8d99bd901cbf667ce61fec04175c12d877f8dd3fe4a7f3d8f3ca18e126b72a00a59aed1edc33bc542e6e69fdf97af44eae1e +DIST plasma-workspace-5.18.4.1.tar.xz 5696208 BLAKE2B 66dcee693d7755c378971f10ca1a0f8a3020c33df688628d8c3298d5a09aa84f0fc12d5cc5e102dc727a838b3a71114a05dddaf17aaef2ea5d48d71119bfc836 SHA512 683a97a83361149560d866f3d064448a43783c6ea715e9a5e0764ef9ec6dc8bd26e4c7a49023f913b8a649abef39614e5bd3b9e000477949584921c3f1754ab7 diff --git a/kde-plasma/libkworkspace/libkworkspace-5.18.4.1.ebuild b/kde-plasma/libkworkspace/libkworkspace-5.18.4.1.ebuild new file mode 100644 index 000000000000..1602010c63a9 --- /dev/null +++ b/kde-plasma/libkworkspace/libkworkspace-5.18.4.1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +ECM_TEST="true" +KDE_ORG_NAME="plasma-workspace" +KFMIN=5.66.0 +PVCUT=$(ver_cut 1-3) +QTMIN=5.12.3 +inherit ecm kde.org + +DESCRIPTION="Workspace library to interact with the Plasma session manager" + +LICENSE="GPL-2" # TODO: CHECK +SLOT="5" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +IUSE="" + +COMMON_DEPEND=" + >=kde-frameworks/kcoreaddons-${KFMIN}:5 + >=kde-frameworks/ki18n-${KFMIN}:5 + >=kde-frameworks/kwindowsystem-${KFMIN}:5 + >=kde-frameworks/plasma-${KFMIN}:5 + >=kde-plasma/kscreenlocker-${PVCUT}:5 + >=dev-qt/qtdbus-${QTMIN}:5 + >=dev-qt/qtx11extras-${QTMIN}:5 + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXau +" +DEPEND="${COMMON_DEPEND} + >=kde-plasma/kwin-${PVCUT}:5 +" +RDEPEND="${COMMON_DEPEND} + !<kde-plasma/plasma-workspace-5.14.2:5 +" + +S="${S}/${PN}" + +PATCHES=( "${FILESDIR}/${PN}-5.16.80-standalone.patch" ) + +src_prepare() { + # delete colliding libkworkspace translations, let ecm_src_prepare do its magic + if [[ ${KDE_BUILD_TYPE} = release ]]; then + find ../po -type f -name "*po" -and -not -name "libkworkspace*" -delete || die + rm -rf po/*/docs || die + cp -a ../po ./ || die + fi + ecm_src_prepare + if [[ ${KDE_BUILD_TYPE} = release ]]; then + cat >> CMakeLists.txt <<- _EOF_ || die + ki18n_install(po) + _EOF_ + fi + + sed -e "/set/s/GENTOO_PV/$(ver_cut 1-3)/" \ + -i CMakeLists.txt || die "Failed to prepare CMakeLists.txt" +} |