diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-07-30 14:35:54 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-07-30 16:32:29 +0200 |
commit | 3a88c6f1b382ab5ebfe61539039a694c0e123991 (patch) | |
tree | 08f3cf35bc863ba6278e2950b9c5e72e83efe7be /kde-plasma/libkworkspace | |
parent | acct-group/kvm: make virtualization the primary maintainer (diff) | |
download | gentoo-3a88c6f1b382ab5ebfe61539039a694c0e123991.tar.gz gentoo-3a88c6f1b382ab5ebfe61539039a694c0e123991.tar.bz2 gentoo-3a88c6f1b382ab5ebfe61539039a694c0e123991.zip |
kde-plasma: Add KDE Plasma 5.16.4
Package-Manager: Portage-2.3.69, Repoman-2.3.16
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.16.4.ebuild | 54 |
2 files changed, 55 insertions, 0 deletions
diff --git a/kde-plasma/libkworkspace/Manifest b/kde-plasma/libkworkspace/Manifest index 8d3bfd57d7a5..3cf20875b222 100644 --- a/kde-plasma/libkworkspace/Manifest +++ b/kde-plasma/libkworkspace/Manifest @@ -1,2 +1,3 @@ DIST plasma-workspace-5.15.5.tar.xz 4713728 BLAKE2B 7ce14912bf0dc2556484b7b719b00e7296fb67d78faabb9e3c00fbfb56a41db04e27b5f94636142f07e88e24d51ff308025a50d719a940e1287943a35db93e79 SHA512 5d5429114a733d4328f7db6c8e3c7dfe5e04862f8083fcad40b21390efb309c58fd1b13cf63aa57f2842c38936b9fe1c60ad61fc601cf4f592b86285c2270bed DIST plasma-workspace-5.16.3.tar.xz 4888740 BLAKE2B 5908b1d9d1c1aff2a7e3dad1461e8bc688bcef5d2177048e12c1f471e4396aafcbea89f470fef7e92d355fa448c23d8af9b09182a5a78e7035dad9278eaa9bb6 SHA512 347be076604b29234845978e3442653507e93d892c47c63a46f659bc11f692944fc9879391bb686893916a77f3be2f12048fb4f870e7de567c3c13f034ba5155 +DIST plasma-workspace-5.16.4.tar.xz 4896860 BLAKE2B fb3f6c89db5bc5142ccb68ab6ebd13d7e0d878c999160301385d163fba0e97bfcfae9bda38dc07547171cfe8823b4375815f1371958ba35c8c9a69272dbaf572 SHA512 d597738c1122fcbe327a1917706e86ed0acc550ddbe2ef4eb776f1a064b09095c0f5d634675787353b90b8b37d24bbd454fa1d8354078bd4ceaa3875471a3bb4 diff --git a/kde-plasma/libkworkspace/libkworkspace-5.16.4.ebuild b/kde-plasma/libkworkspace/libkworkspace-5.16.4.ebuild new file mode 100644 index 000000000000..3dfe68f80a2c --- /dev/null +++ b/kde-plasma/libkworkspace/libkworkspace-5.16.4.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +KDE_TEST="true" +KMNAME="plasma-workspace" +inherit kde5 + +DESCRIPTION="Workspace library to interact with the Plasma session manager" + +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="" + +COMMON_DEPEND=" + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kwindowsystem) + $(add_frameworks_dep plasma) + $(add_qt_dep qtdbus) + $(add_qt_dep qtx11extras) + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXau +" +DEPEND="${COMMON_DEPEND} + $(add_plasma_dep kwin) +" +RDEPEND="${COMMON_DEPEND} + !<kde-plasma/plasma-workspace-5.14.2:5 +" + +S="${S}/${PN}" + +PATCHES=( "${FILESDIR}/${PN}-5.14.90-standalone.patch" ) + +src_prepare() { + # delete colliding libkworkspace translations, let kde5_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 + kde5_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" +} |