diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-12 10:58:04 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-12 11:07:37 +0200 |
commit | 03b5070fa51fa15ac47489fae77811eaa07e1b91 (patch) | |
tree | 891706a5e6725e4f37f331422302e6d53a82aa6a /kde-plasma/xembed-sni-proxy | |
parent | www-apps/mediawiki: fixed test in postupgrade file (diff) | |
download | gentoo-03b5070fa51fa15ac47489fae77811eaa07e1b91.tar.gz gentoo-03b5070fa51fa15ac47489fae77811eaa07e1b91.tar.bz2 gentoo-03b5070fa51fa15ac47489fae77811eaa07e1b91.zip |
kde-plasma: Add KDE Plasma 5.16.0
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/xembed-sni-proxy')
-rw-r--r-- | kde-plasma/xembed-sni-proxy/Manifest | 1 | ||||
-rw-r--r-- | kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.16.0.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/kde-plasma/xembed-sni-proxy/Manifest b/kde-plasma/xembed-sni-proxy/Manifest index abf940ac1e08..9aea7c6ea1d0 100644 --- a/kde-plasma/xembed-sni-proxy/Manifest +++ b/kde-plasma/xembed-sni-proxy/Manifest @@ -1 +1,2 @@ DIST plasma-workspace-5.15.5.tar.xz 4713728 BLAKE2B 7ce14912bf0dc2556484b7b719b00e7296fb67d78faabb9e3c00fbfb56a41db04e27b5f94636142f07e88e24d51ff308025a50d719a940e1287943a35db93e79 SHA512 5d5429114a733d4328f7db6c8e3c7dfe5e04862f8083fcad40b21390efb309c58fd1b13cf63aa57f2842c38936b9fe1c60ad61fc601cf4f592b86285c2270bed +DIST plasma-workspace-5.16.0.tar.xz 4891740 BLAKE2B 5d79938109be98a838336772d7149c0e8a05f44e496e09589460f4f10d0e18b55ba81f33754f4cd63e6cb8b881e4db5529577a60557098e1137e1362b10bede2 SHA512 7b38021cc78e150cdf4422db42c5d0d10e1f1f96845ab4f0273c53680b0bb0f008171062d87f15b634bd74b9434a333c0f5c4defb13f8e4b51c7009a6151209a diff --git a/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.16.0.ebuild b/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.16.0.ebuild new file mode 100644 index 000000000000..54a97db0e7e7 --- /dev/null +++ b/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.16.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +KDE_AUTODEPS="false" +KMNAME="plasma-workspace" +inherit kde5 + +DESCRIPTION="Legacy xembed tray icons support for SNI-only system trays" +HOMEPAGE="https://cgit.kde.org/plasma-workspace.git/tree/xembed-sni-proxy/Readme.md" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +DEPEND=" + $(add_frameworks_dep extra-cmake-modules) + $(add_frameworks_dep kwindowsystem) + $(add_qt_dep qtcore) + $(add_qt_dep qtdbus) + $(add_qt_dep qtgui) + $(add_qt_dep qtx11extras) + x11-libs/libxcb + x11-libs/libXtst + x11-libs/xcb-util-image +" +RDEPEND="${DEPEND} + !<kde-plasma/plasma-workspace-5.14.2:5 + !kde-plasma/xembed-sni-proxy:0 +" + +S="${S}/${PN}" + +PATCHES=( "${FILESDIR}/${PN}-5.14.90-standalone.patch" ) + +src_prepare() { + kde5_src_prepare + + sed -e "/set/s/GENTOO_PV/$(ver_cut 1-3)/" \ + -i CMakeLists.txt || die "Failed to prepare CMakeLists.txt" +} |