diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-02-19 14:17:39 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-02-19 14:17:39 +0100 |
commit | e5b6f1e7918fa647bd5e182c7ffaed43785b5ed5 (patch) | |
tree | 05955d3b163be1bb5f5042438af1a57e0fda24c7 /kde-plasma/oxygen | |
parent | app-misc/ca-certificates: fix double prefix (diff) | |
download | gentoo-e5b6f1e7918fa647bd5e182c7ffaed43785b5ed5.tar.gz gentoo-e5b6f1e7918fa647bd5e182c7ffaed43785b5ed5.tar.bz2 gentoo-e5b6f1e7918fa647bd5e182c7ffaed43785b5ed5.zip |
kde-plasma: Add KDE Plasma 5.15.1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'kde-plasma/oxygen')
-rw-r--r-- | kde-plasma/oxygen/Manifest | 1 | ||||
-rw-r--r-- | kde-plasma/oxygen/oxygen-5.15.1.ebuild | 45 |
2 files changed, 46 insertions, 0 deletions
diff --git a/kde-plasma/oxygen/Manifest b/kde-plasma/oxygen/Manifest index b6a7f15c0203..e4743ef89218 100644 --- a/kde-plasma/oxygen/Manifest +++ b/kde-plasma/oxygen/Manifest @@ -1,2 +1,3 @@ DIST oxygen-5.14.5.tar.xz 4467780 BLAKE2B e43f1663f16f1c0886f43ced1c8382254144eed256ad80e4c9eb025a11c1e4cb5f3a543cc61f3ae7dcf30f6519ce4857ae1ddffda607b411c43b404504c9faf6 SHA512 b4cab5dbce0828e7a080cb458b00603ddebf9bb4ce5fce9ccf07a0dcee030ee268b9a6c53592035eb15251edb4ccf14dcf0fa921370f76d4cbcca355400d479d DIST oxygen-5.15.0.tar.xz 4467596 BLAKE2B e299ad858ad3bbeb36a21beebc44046137f59f0cfca1f78ddc359b8e0aefdc1ec0a9f468ca04f1d20f2c5d12df32afa64feb5ef1921028ccfe06a076d779d3d5 SHA512 7cec12f43760ff869f691aec9628438b0141040f5d84b2994a4c3fce65aa67f1092d458bdc3f85ba1be7c9eb375ffb3ecb356c2dce6fc8cb24dbe0497af7665d +DIST oxygen-5.15.1.tar.xz 4477392 BLAKE2B b1b08fb937d3693152b1a25345a733824feb3a1933f7c8904b2e1d88c629ea41b5f7221845d56f98fa5e8e3a1d8b7c21193bc6e740e6a622718b7defcaf1126a SHA512 d15aa1769bcae4d64d913dd1056219e29ae5ada2213db53623f8986519b8c2c3791e5ce3364e15aa554479bc0cec6bc2df798bd817ce8b2e0c9928da4b9a81f6 diff --git a/kde-plasma/oxygen/oxygen-5.15.1.ebuild b/kde-plasma/oxygen/oxygen-5.15.1.ebuild new file mode 100644 index 000000000000..68dfdc03eaec --- /dev/null +++ b/kde-plasma/oxygen/oxygen-5.15.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit kde5 + +DESCRIPTION="Oxygen visual style for the Plasma desktop" +HOMEPAGE="https://cgit.kde.org/oxygen.git" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="wayland" + +RDEPEND=" + $(add_frameworks_dep frameworkintegration) + $(add_frameworks_dep kcmutils) + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kguiaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kwindowsystem) + $(add_plasma_dep kdecoration) + $(add_qt_dep qtdbus) + $(add_qt_dep qtdeclarative) + $(add_qt_dep qtgui) + $(add_qt_dep qtwidgets) + $(add_qt_dep qtx11extras) + x11-libs/libxcb + wayland? ( $(add_frameworks_dep kwayland) ) +" +DEPEND="${RDEPEND} + $(add_frameworks_dep kservice) +" +PDEPEND=" + $(add_plasma_dep kde-cli-tools) +" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package wayland KF5Wayland) + ) + kde5_src_configure +} |