diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-10-23 12:16:38 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-10-23 18:46:25 +0200 |
commit | 04b7a5abc61721150cbdaefb391c4365903d11a1 (patch) | |
tree | 17167a551e6bc11df15961a74f7e0e1dbbb04cf6 /kde-plasma/oxygen | |
parent | app-crypt/argon2: Use optimized code on x86 only (diff) | |
download | gentoo-04b7a5abc61721150cbdaefb391c4365903d11a1.tar.gz gentoo-04b7a5abc61721150cbdaefb391c4365903d11a1.tar.bz2 gentoo-04b7a5abc61721150cbdaefb391c4365903d11a1.zip |
kde-plasma: KDE Plasma 5.17.1 version bump
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/oxygen')
-rw-r--r-- | kde-plasma/oxygen/Manifest | 1 | ||||
-rw-r--r-- | kde-plasma/oxygen/oxygen-5.17.1.ebuild | 48 |
2 files changed, 49 insertions, 0 deletions
diff --git a/kde-plasma/oxygen/Manifest b/kde-plasma/oxygen/Manifest index ff4f4cb94285..25b32de92f5e 100644 --- a/kde-plasma/oxygen/Manifest +++ b/kde-plasma/oxygen/Manifest @@ -1 +1,2 @@ DIST oxygen-5.16.5.tar.xz 4466432 BLAKE2B 99ffbf358ebe687402d2ad08b01f0043c4c2510762a4eed9556d97727000d9a6144c712775c206cc4b98f4c247ed6d4fa96aceda0af6e82c2e75b69250ce8490 SHA512 6ed14b6fc454e22e837525efa7298245d62cd7c86a0f8b608960141f8820722fa9996214848309cb89d4212d9a8ad1384ce82e7917b62114aea8d65247b68951 +DIST oxygen-5.17.1.tar.xz 4469068 BLAKE2B 1e76342033f4b71d28578df5c3ecaa4fb1f82f95bc639d0aaa5246661fb0b729e3d6b57fe711b044b64780e5c8791ce8296bba57b9258c5576275c6850f58f2c SHA512 bc38754ee3a39dc377276cf720e89001a9b7eab1617d2c97dbbdd25378ea696beb6ce23dca59e2cace8cf1103fa683f6c9fc62e9ac2998e0094a0bf7a42158df diff --git a/kde-plasma/oxygen/oxygen-5.17.1.ebuild b/kde-plasma/oxygen/oxygen-5.17.1.ebuild new file mode 100644 index 000000000000..be7ec3f5e9c0 --- /dev/null +++ b/kde-plasma/oxygen/oxygen-5.17.1.ebuild @@ -0,0 +1,48 @@ +# 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 ~arm64 ~x86" +IUSE="wayland" + +COMMON_DEPEND=" + $(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="${COMMON_DEPEND} + $(add_frameworks_dep kservice) +" +RDEPEND="${COMMON_DEPEND} + !<kde-plasma/plasma-desktop-5.16.80 +" +PDEPEND=" + $(add_plasma_dep kde-cli-tools) +" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package wayland KF5Wayland) + ) + kde5_src_configure +} |