Sync with portage [Sat Nov 10 23:32:58 MSK 2018].

mhiretskiy 1273
root 6 years ago
parent 2fbefaac87
commit 05b0c2df08

Binary file not shown.

Binary file not shown.

@ -0,0 +1 @@
DIST msort-8.53.tar.bz2 440307 BLAKE2B 024fa62c9424dd7f994fd9aabdb2414116ba78c2f6bbbfd88c11cde4ed1688260d7bb7f7a18dd36822f4725817df93d218c4382e8b15232fc6d3583098d44db0 SHA512 9afba189d8b703cd6668065ace86733b52a39f6783272849b3582308da5a33db8ae6747501846523ba3671c9fb38a7584fe0db2462cff446b15d79200055a573

@ -0,0 +1,33 @@
--- a/configure.ac 2010-01-11 01:56:36.000000000 +0100
+++ b/configure.ac 2018-09-27 15:05:20.205734233 +0200
@@ -94,7 +94,7 @@
AC_CHECK_HEADERS([alloca.h ctype.h errno.h gnu/libc-version.h langinfo.h libintl.h limits.h locale.h stdargs.h stddef.h stdint.h stdlib.h string.h sys/file.h sys/stat.h time.h tre/tre.h unicode/umachine.h unicode/unorm.h uninum/unicode.h uninum/nsdefs.h uninum/uninum.h unistd.h wchar.h wctype.h])
if ${utf8proc}; then
-AC_CHECK_HEADER([utf8proc.h],[AC_DEFINE([HAVE_UTF8PROC_H], [1],[Define to 1 if you have <utf8proc.h>.])],[AC_MSG_ERROR([LIB UTF8PROC and its header is obligatory. See http://www.flexiguided.de/publications.utf8proc.en.html])])
+AC_CHECK_HEADER([libutf8proc/utf8proc.h],[AC_DEFINE([HAVE_UTF8PROC_H], [1],[Define to 1 if you have <libutf8proc/utf8proc.h>.])],[AC_MSG_ERROR([LIB UTF8PROC and its header is obligatory. See http://www.flexiguided.de/publications.utf8proc.en.html])])
fi
if ${uninum}; then
--- a/misc.c 2009-08-05 05:09:21.000000000 +0200
+++ b/misc.c 2018-09-27 15:10:37.355738021 +0200
@@ -41,7 +41,7 @@
#include <unicode/umachine.h>
#include <unicode/unorm.h>
#else
-#include <utf8proc.h>
+#include <libutf8proc/utf8proc.h>
#include "unorm.h"
#endif
#include <tre/regex.h>
--- a/msort.c 2010-01-11 01:53:32.000000000 +0100
+++ b/msort.c 2018-09-27 15:10:30.275737936 +0200
@@ -57,7 +57,7 @@
#ifndef USEUTF8PROC
#include <unicode/unorm.h>
#else
-#include <utf8proc.h>
+#include <libutf8proc/utf8proc.h>
#include "unorm.h"
#endif
#ifdef HAVE_UNINUM_UNICODE_H

@ -0,0 +1,11 @@
--- a/Makefile.am 2009-08-05 05:09:21.000000000 +0200
+++ b/Makefile.am 2018-09-27 15:41:10.685759919 +0200
@@ -22,7 +22,7 @@
LIBS+=-lutf8proc
AM_CFLAGS += -DUSEUTF8PROC
else
-LIBS+=-licutu
+LIBS+=-licutu -licuuc
endif
msg: msg.tcl

@ -0,0 +1,11 @@
--- a/Makefile.am 2009-08-05 05:09:21.000000000 +0200
+++ b/Makefile.am 2018-09-27 15:32:28.685753684 +0200
@@ -6,7 +6,7 @@
noinst_HEADERS = comparisons.h compdefs.h dstr.h ex_codes.h exitcode.h input.h key.h limits.h record.h retcodes.h unicode.h unorm.h utf8error.h
LOCALEDIR=/usr/local/share/locale
EXTRA_DIST = $(docs) msg.tcl CREDITS msort-${VERSION}.lsm RegressionTests SortOrders
-AUTOMAKE_OPTIONS = dist-zip dist-bzip2
+AUTOMAKE_OPTIONS = dist-zip dist-bzip2 nostdinc
if ALLOCAOK
AM_CFLAGS = -DLOCALEDIR=\"${LOCALEDIR}\" -DALLOCAOK -std=gnu99

@ -0,0 +1,11 @@
--- a/dstr.c 2009-08-05 05:09:21.000000000 +0200
+++ b/dstr.c 2018-09-27 15:43:52.815761856 +0200
@@ -79,7 +79,7 @@
#ifdef SAFECALL
if(length == 0) return(ERROR);
#endif
- if (length > tgt->c) {
+ if (length + 1 > tgt->c) {
if(tgt->s != NULL) free( (void *) tgt->s);
tgt->s = (wchar_t *) malloc((length + 1) * sizeof(wchar_t));
if(tgt->s == NULL) return(ERROR);

@ -0,0 +1,11 @@
--- a/configure.ac 2010-01-11 01:56:36.000000000 +0100
+++ b/configure.ac 2018-09-27 15:36:41.425756703 +0200
@@ -78,8 +78,6 @@
AC_PROG_CC
if ${debugbuild}; then
CFLAGS="-ggdb -g3"
-else
- CFLAGS="-g -O2"
fi
AC_PROG_INSTALL

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>ck+gentoo@bl4ckb0x.de</email>
<name>Conrad Kostecki</name>
</maintainer>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<longdescription>
Msort is a program for sorting files in sophisticated ways.
It was originally developed for alphabetizing dictionaries of "exotic" languages
in formats like those used by Shoebox and Toolbox, for which it has been extensively used,
but is useful for many other purposes.
Msort differs from typical sort utilities in providing greater flexibility in parsing
the input into records and identifying key fields and greater control over the sort order.
</longdescription>
<use>
<flag name="heap">Use heap instead of alloca()</flag>
<flag name="icu">Use <pkg>dev-libs/icu</pkg> instead of <pkg>dev-libs/libutf8proc</pkg>.</flag>
<flag name="libuninum">Use <pkg>dev-libs/libuninum</pkg> for conversion.</flag>
</use>
</pkgmetadata>

@ -0,0 +1,47 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="A program for sorting files in sophisticated ways"
HOMEPAGE="https://billposer.org/Software/msort.html"
SRC_URI="https://billposer.org/Software/Downloads/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
LICENSE="GPL-3 LGPL-3"
SLOT="0"
IUSE="heap +icu +libuninum"
RDEPEND="dev-libs/tre
icu? ( dev-libs/icu:= )
!icu? ( dev-libs/libutf8proc:= )
libuninum? ( dev-libs/libuninum:= )"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}/${P}-find-utf8proc-headers.patch"
"${FILESDIR}/${P}-fix-icu-build.patch"
"${FILESDIR}/${P}-fix-missing-limits-header.patch"
"${FILESDIR}/${P}-fix-segfault-on-certain-input.patch"
"${FILESDIR}/${P}-respect-users-cflags.patch"
)
src_prepare() {
default
eautoreconf
}
src_configure() {
local myeconfargs=(
$(use_enable !heap allocaok)
$(use_enable !icu utf8proc)
$(use_enable libuninum uninum)
--disable-debugbuild
)
econf "${myeconfargs[@]}"
}

Binary file not shown.

@ -0,0 +1 @@
DIST libuninum-2.7.tar.bz2 276712 BLAKE2B 0894c632d7e9081f35d543895809bcc04fde6da674d4e6adc7cdc914f4bbb257a3e683b381e6496a08b65790731f73315d8263970265a351f40fe504f210c883 SHA512 4536a90b9f34fbabd3cc0560c1ff385063151bc381de51e6ca0253d2a42c2290b92329795b1a12ade305c3cb5757b02fe9d92817829977f50da2e34852936274

@ -0,0 +1,26 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A library for converting unicode strings to numbers and vice versa"
HOMEPAGE="https://billposer.org/Software/libuninum.html"
SRC_URI="https://billposer.org/Software/Downloads/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
LICENSE="GPL-2 GPL-2+ LGPL-2 LGPL-2.1"
SLOT="0"
src_configure() {
local myeconfargs=(
--disable-static
)
econf "${myeconfargs[@]}"
}
src_install() {
default
find "${D}" -name '*.la' -delete || die
}

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>ck+gentoo@bl4ckb0x.de</email>
<name>Conrad Kostecki</name>
</maintainer>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<longdescription>
This is a library for converting unicode strings to numbers and numbers to unicode strings.
Standard functions like strtoul, strtod, and sprintf do this for numbers written in the
usual western number system using the indo-arabic numerals, but they do not handle other number systems.
The main functions take as input a UTF-32 unicode string and compute the corresponding unsigned integer.
</longdescription>
</pkgmetadata>

Binary file not shown.

@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy pypy3 )
PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} pypy3 )
inherit distutils-r1

Binary file not shown.

@ -37,11 +37,6 @@ case ${CATEGORY} in
[[ ${KDE_BUILD_TYPE} = live ]] && : ${FRAMEWORKS_MINIMAL:=9999}
;;
kde-plasma)
if [[ ${PV} = 5.12* ]]; then
: ${FRAMEWORKS_MINIMAL:=5.46.0}
: ${KDE_APPS_MINIMAL:=17.12.3}
: ${QT_MINIMAL:=5.9.4}
fi
if [[ ${PV} = 5.13.5 ]]; then
: ${FRAMEWORKS_MINIMAL:=5.46.0}
: ${KDE_APPS_MINIMAL:=17.12.3}

Binary file not shown.

@ -1,3 +1,2 @@
DIST bluedevil-5.12.7.tar.xz 149616 BLAKE2B a149542050a45509f14e667209002787290fc5b49e4e3cba8448cc1586e12a7d5c218ad1c65ba3d9c499e4d856cee5fc6117abfa675db49fcd87b619b13d9a69 SHA512 618256feca8ba3c64d4381d87a65b3de74a3a8f07327888ab499377008045169c46188c579fa78e3f80953e2f1779759b485cd4c84ecbea903a7a4b0d72da76d
DIST bluedevil-5.13.5.tar.xz 149356 BLAKE2B 5c56c17c920b5d10ef8e221917a43d78ccbb9c5006dcddff3ef8e14e07e38519eeeb5acbc5272e790c4a4424e4580876343abf1f0cd58f420dbc21b5ee5e85ea SHA512 757d7886225d2d3698fc743fe9b04d833a82c394d28b0d3708867bcb34e06cc6bbc46e6a2f3f2bab83126bcd13293c158cc0b9527b79677d53f389758cd9cdd9
DIST bluedevil-5.14.3.tar.xz 158780 BLAKE2B 83437d1dd778b1d46d6024f2d244326d0b46433ca8f0d6a0370a487c09924057912f6725f0fedaec9eeab2db65cce500ce2492a65e4b6f11bd88518a38e2c3d5 SHA512 62fc66b2d5dfdf32bc64c14b871a097a38772ba7d5c25970753930b796c23f51c5f928167bed7dfe028118b5914c6f9af1c885ba1cc1d7432834ce14004b4f28

@ -1,40 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="Bluetooth stack for KDE Plasma"
HOMEPAGE="https://cgit.kde.org/bluedevil.git"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
COMMON_DEPEND="
$(add_frameworks_dep bluez-qt)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kded)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep plasma)
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
"
DEPEND="${COMMON_DEPEND}
x11-misc/shared-mime-info
"
RDEPEND="${COMMON_DEPEND}
$(add_plasma_dep kde-cli-tools)
!app-mobilephone/obexd
!app-mobilephone/obex-data-server
!kde-plasma/bluedevil:4
"

@ -1,3 +1,2 @@
DIST breeze-grub-5.12.7.tar.xz 3142328 BLAKE2B 8c57ddcc102d1c0ae5373200a441d4cfacf059edc2a392371a0339e14cd834c8a9786c96328f49eb19cf59fb823612c12cecb1759f27c0c094b12aface28a279 SHA512 80e3a512108189fc211428864ad57c77546a126bbb0f71a1cc5380fa6cb93b433d0d4665145b44f4f8ab5ebcec570e9f03eb53a4cbf2362d2b64f0ae9bd9d140
DIST breeze-grub-5.13.5.tar.xz 3142644 BLAKE2B 40c0c2327c0a6bbd0c1f3420b6f9ba7e8fe9876263835eb6ba7ff4b443ea40fa72635f9c5a64e91ca291f6faafa8bbc11a0b8a1f79961f8c7cf498861c86f09b SHA512 aebb9e02b40c1d3701c3f279122e5110e62a00b55c6c5a7908ea2828aa49c64afa663950c723fa81433ed6542f74797a39813cf3fdd9fc8ab0e4b39a807b8f51
DIST breeze-grub-5.14.3.tar.xz 3146484 BLAKE2B 71e6aa9fccfdd7a9b87634ae22ef98a4ec4ee14bd1e196ddd32cb5b333d6a342261016e6e6416d8b1be112c3f12706232600e792fffca97f533f720904e7990f SHA512 ad1df5c705f3e3e548b37f33989049e08b695a1f96af4cdf8b7dca3a3907c284757b5c7961f95f2a220af2f538aed526ef9c5207a271aad55aae56a2b431eed4

@ -1,30 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_AUTODEPS="false"
KDE_DEBUG="false"
inherit kde5
DESCRIPTION="Breeze theme for GRUB"
LICENSE="GPL-3+"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
src_prepare() {
default
}
src_configure() {
:
}
src_compile() {
:
}
src_install() {
insinto /usr/share/grub/themes
doins -r breeze
}

@ -1,3 +1,2 @@
DIST breeze-gtk-5.12.7.tar.xz 213816 BLAKE2B b5507b4eaaff9e08763dc50ff377dd746f8c87a8dcf4bd6371bb57b09fe8d2b7e50bdd3924db9a99880a5ad0a35c13e6b28f496177b6bb8293dce25b1afd975a SHA512 5be51fc6a884e4f3338b3ad3044b918f7267205c5234b2053edd4773be42b90fb8f665e339a40c1d49d6eea16e90e1e51f58f149002568e2e7ce0be69ee412d9
DIST breeze-gtk-5.13.5.tar.xz 202192 BLAKE2B ab1ac52e77a43219517659e76917817e845e3a4a6e90e6720f17369fdf10862d5d0c2834b043b07d6800a005c1d497238f9f653474da90c70e97eb045a60edc5 SHA512 6d760e3ccc2f987590c6285736a859ab06e4bbbbdf7a885bbe08b34ef3846d5be34607b25d5ded0f1d7b9af240f2903da6bf053a3d16afeae8fbe0ce28da0087
DIST breeze-gtk-5.14.3.tar.xz 202364 BLAKE2B 399a6cf0f68e9876c02b5c627740436e775dfc50c806e0413b6e66d53a1bfc62a670168d2027e4943c5cfa17e36fcb3873a9575cde87a44961ab14dde19fb402 SHA512 9330fdc88c7407cbf236ac83046dfae7fbcb61798ed5a1c440a35da12cbed72a7fc7cb0d496ad0dde943b4918a8deb8bc45411a304e926546042b58c19e7b019

@ -1,12 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="Official GTK+ port of Plasma's Breeze widget style"
HOMEPAGE="https://cgit.kde.org/breeze-gtk.git"
LICENSE="LGPL-2.1+"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""

@ -1,3 +1,2 @@
DIST breeze-plymouth-5.12.7.tar.xz 105592 BLAKE2B ebfe4cfaf7656de884b9da62fd682bd65cf6c7ce4ae96154d41ed436f1e189fc7f1b5ea6ee237f4f07318e6b7a1a8872d3e93f22da14f8301e050dc289fa65d2 SHA512 d50158838204fd5fa541fb3e7c8b0d992e43ee06f4e4698ef01c2ecbd22ef1b4e25d634ab6f9864b0f330870ee22f85fe26aff06fb2b4b0472764d62e944cc44
DIST breeze-plymouth-5.13.5.tar.xz 105628 BLAKE2B 652b09b80dbe45535a7e5ad417c09aa02418ae2117d5a4d612f2bfa1f7a74a207fcea8a83eceeedb422b351b4a205e9be68583edddcc8cd18b22805a00cce5be SHA512 13495b3cdace829fbf8e9b0b6888f9b3e50856209e2f172a29e812705d5df23f983aec04a9b2e0fad7a9a54b255158707df452fd2cd9d5c539ea6318f51969f2
DIST breeze-plymouth-5.14.3.tar.xz 105456 BLAKE2B 4c9315a56a26d86930d9de2397c767599ac795cb5198c67ea04971d2103af6587b22996612e2a958339d592db264b04b08d7a65d3e6293155e3753883e5b4f38 SHA512 9a35a1c9c0ceaaaebec1dfcb9bb7deaa2279bcd3a189a07c3623e0107537eb917ad15f3c9c54fdf32a3ba9effd61b556b05f1189b655ce9feea6bb0bf9b25bf9

@ -1,26 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_AUTODEPS="false"
inherit kde5
DESCRIPTION="Breeze theme for Plymouth"
LICENSE="GPL-2+ GPL-3+"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
RDEPEND="sys-boot/plymouth"
DEPEND="${RDEPEND}
$(add_frameworks_dep extra-cmake-modules)
"
src_configure() {
local mycmakeargs=(
-DDISTRO_NAME="Gentoo Linux"
-DDISTRO_VERSION=
)
kde5_src_configure
}

@ -1,3 +1,2 @@
DIST breeze-5.12.7.tar.xz 22209420 BLAKE2B 4ccb04778b0dd0681b5d9a13bd58ebc62ed14f96381424c5dc1e495f46e141dd4f0cecb3801326d94eefd9a6d2d5daae43836885c8d2b8e2726e4ad2a2031116 SHA512 c0e564fa6df64c225ea7754271c138d4b4304068c5fcf2e0502f109af3478f37d2781ac13d068b0818c819c8f60d6c4a333ff8940334c3ee5030607f80080b99
DIST breeze-5.13.5.tar.xz 24781812 BLAKE2B 6e68d26297f958045b1ffde4c08b0b7ba9a927f51c8f62bc30ea29cb79d0f48dc793f7faa1bdef8cce0408beda67165df52896dc94d87c41675d276957d11628 SHA512 7e2ba028070062602314798151320595e81b2bfae47040885939a0f61cf74e6159b646cf91296d0aad092250d90eb3d94cd6b2081e2debcb3b1813b8cca3aad4
DIST breeze-5.14.3.tar.xz 24905232 BLAKE2B 278e332298478666f833df99187202d0286db0296ee90cbcb56cbde80e75e5e342fcede11ac7166cf2009e0855d2bdf2ff5cdda4ea8fbe9e56b00d2a384d8583 SHA512 070d9477802ecd9f9427976b48c841982d660aa1e59c59a3dce92f11e87e80ea0f418114e70a8231ba97031d854a856d67c2c72bed02b92cc8ccc93852a4c8ac

@ -1,48 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="Breeze visual style for the Plasma desktop"
HOMEPAGE="https://cgit.kde.org/breeze.git"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="wayland X"
COMMON_DEPEND="
$(add_frameworks_dep frameworkintegration)
$(add_frameworks_dep kcmutils)
$(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)
wayland? ( $(add_frameworks_dep kwayland) )
X? (
$(add_qt_dep qtx11extras)
x11-libs/libxcb
)
"
DEPEND="${COMMON_DEPEND}
$(add_frameworks_dep kpackage)
"
RDEPEND="${COMMON_DEPEND}
$(add_frameworks_dep breeze-icons)
$(add_plasma_dep kde-cli-tools)
"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package wayland KF5Wayland)
$(cmake-utils_use_find_package X XCB)
)
kde5_src_configure
}

@ -1,3 +1,2 @@
DIST drkonqi-5.12.7.tar.xz 737848 BLAKE2B e54f75003464ea55ab2cb4f0d7c55ed26ca1f0afe409d60a93ba017c8ff06fe6fe9b65ef22a7432c0318105081f4b4dd713cbfb3db4e98cf9013f9f2557284cd SHA512 011759e7edc4c7901b2c8f5362f084dbd7e726612a8ecb76ad174c219eb5ae5d09442d7076db856359a1270acc1d438102f1444b41782477352bda6e82c21f7b
DIST drkonqi-5.13.5.tar.xz 736196 BLAKE2B e7d9eaa299c4988d08dfdb9c95965a3cdd2e9b2a5eb76b46f98083713efd0f29fcf3bacbaedd40fe599e1bbcc1dfa62832b1ab5a2a6c256854f81cc6181dc121 SHA512 2318e82afb2bf776dee5c61b502f7554d796705ae2fc77d3b7166c24b5f577a7a4dc1322ef42e57b085a0b7cb48eeda638da2cb697dca828cc6c8d5c4042861f
DIST drkonqi-5.14.3.tar.xz 740084 BLAKE2B 350876d0f67fdb1a4a9c45a11026bb37b9084f1f2c2e5a7701400e2af07e93bff89b71f8659f8ebb21c448257922a7bc2d6f8c4018cdca605842cbe21d70242a SHA512 3b6d64061073c795e3bea1c0ac168f1dbeeab709b8e067d3c862151a83899c031d3c06c063c509f604a8db58f5247f4c369dd39c971a89267783c0e170cc48eb

@ -1,56 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="Plasma crash handler, gives the user feedback if a program crashed"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="X"
COMMON_DEPEND="
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kcrash)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kidletime)
$(add_frameworks_dep kio)
$(add_frameworks_dep kjobwidgets)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep kservice)
$(add_frameworks_dep kwallet)
$(add_frameworks_dep kwayland)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kxmlrpcclient)
$(add_qt_dep qtdbus)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
X? ( $(add_qt_dep qtx11extras) )
"
DEPEND="${COMMON_DEPEND}
$(add_qt_dep qtconcurrent)
"
RDEPEND="${COMMON_DEPEND}
!kde-apps/drkonqi:4
!<kde-plasma/plasma-workspace-5.10.95:5
"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package X Qt5X11Extras)
)
kde5_src_configure
}
pkg_postinst() {
kde5_pkg_postinst
if ! has_version "sys-devel/gdb"; then
elog "For more usability consider installing the following package:"
elog " sys-devel/gdb - Easier debugging support"
fi
}

@ -1,3 +1,2 @@
DIST kactivitymanagerd-5.12.7.tar.xz 85316 BLAKE2B e69f1df2157e21e59bc1db54c4551b99c37e7754393e9e72b531446c300e856890f97cf4cba39364e414c28312d7c4c80c6d5a7481bbb3cd8fdf6818f9f1d63e SHA512 3825a79e9f1092af177606d8eb4acaeb0a7022eecc09a5066d6f8f404319e313bc16c7d5f8c22e34f19cbfbfd1dfabd1e01c8df954f8cbdd147c06492ce67245
DIST kactivitymanagerd-5.13.5.tar.xz 85412 BLAKE2B 37c74f63c38cfee000ebe293b1b6f2d4fab90184325ed23c25b9affa078ac7a548e46ba88822f4e948d359e92b47372f6b2efeb6832811252f83e69dee96b328 SHA512 e0f0518bdc8397139c445dfd4bc604cb924add54fc00b44b9b9bdce514bb579fd6c600926b213e5f4b4735714a2f402cfe259c17712c9f71be2dc184012d1713
DIST kactivitymanagerd-5.14.3.tar.xz 86148 BLAKE2B 27d574a8b0197b017139aaff4b77dceee44f92bec3b4988a3030caa72f87f42d5f47da7d1090170fc4cfbb7b2114cb2eb5252e3ac7ea76926ca58aa3a9d88024 SHA512 1f293709a86cac57557542fc4b545bc11e3df7f868500b5d8be4107b4a80a0c04d50ed5fc94709e6a630017fe2c3122e082faa7c2d12fbdd4f6666d5de2bb68a

@ -1,35 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="System service to manage user's activities, track the usage patterns etc."
LICENSE="|| ( GPL-2 GPL-3 )"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE=""
COMMON_DEPEND="
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep kglobalaccel)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kio)
$(add_frameworks_dep kservice)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
$(add_qt_dep qtdbus)
$(add_qt_dep qtgui)
$(add_qt_dep qtsql 'sqlite')
$(add_qt_dep qtwidgets)
"
DEPEND="${COMMON_DEPEND}
>=dev-libs/boost-1.54
"
RDEPEND="${COMMON_DEPEND}
!<kde-frameworks/kactivities-4.13.3-r2:4
!kde-plasma/kactivitymanagerd:4
!<kde-plasma/plasma-desktop-5.6.1
"

@ -1,3 +1,2 @@
DIST kde-cli-tools-5.12.7.tar.xz 583788 BLAKE2B a813436cb49eacdb30eafd5af968475bed529b6ee36bbf784f8a658a313760ba7eb73ec0d5cf6d48c2a0d2fdaf70fd2ef20c9b4a38f92476c7c57bf80532a5c5 SHA512 44dd8a9b999dd0f4fb9f5953da7b9af805ba0508b18bbcb8420418049318b095d9553b1723e1ddab8b7d3d48ed42ca75fb0ede17043c2a82c95769938130ad77
DIST kde-cli-tools-5.13.5.tar.xz 585436 BLAKE2B d288e55297428a2535e073fd82509658dda1c9da8e671c70c2bdce080268950ad8d7901cf173b09c0b4978852686e193daba15c9506366bc87a481c2bafe4554 SHA512 88aaa5c5a70da7d7f43f9d1b01d61d68c60e87942556955927cfb8655a8f6219d5220aff0c1a937f00444b3d03877d539bf544488a432108bf74434fc89566d7
DIST kde-cli-tools-5.14.3.tar.xz 587012 BLAKE2B a5fcc690d21f246d7cd2f7eaba0dae7368e63b6efee4080919f2816baf2381e112cf31f00228591f166061ab1871136ed97af8dfe8bf9dc58d29f8555adcf89c SHA512 4578bbf6bbaf266a19c317945f33b3c9c2c3290855287947382be04a7f66e9e7da4bd8970994786e2d3cf1b4ef26a065f960b89a81dbdbd5263813fae19f114c

@ -1,59 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_HANDBOOK="forceoptional"
KDE_TEST="optional"
VIRTUALX_REQUIRED="test"
inherit kde5
DESCRIPTION="Tools based on KDE Frameworks 5 to better interact with the system"
HOMEPAGE="https://cgit.kde.org/kde-cli-tools.git"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="+kdesu X"
DEPEND="
$(add_frameworks_dep kactivities)
$(add_frameworks_dep kcmutils)
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
$(add_frameworks_dep kservice)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_qt_dep qtdbus)
$(add_qt_dep qtgui)
$(add_qt_dep qtsvg)
$(add_qt_dep qtwidgets)
kdesu? ( $(add_frameworks_dep kdesu) )
X? (
$(add_qt_dep qtx11extras)
x11-libs/libX11
)
"
RDEPEND="${DEPEND}
!kde-apps/kdesu
"
# requires running kde environment
RESTRICT+=" test"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package kdesu KF5Su)
$(cmake-utils_use_find_package X Qt5X11Extras)
)
kde5_src_configure
}
src_install() {
kde5_src_install
use kdesu && dosym ../$(get_libdir)/libexec/kf5/kdesu /usr/bin/kdesu
use kdesu && dosym ../$(get_libdir)/libexec/kf5/kdesu /usr/bin/kdesu5
}

@ -1,3 +1,2 @@
DIST kde-gtk-config-5.12.7.tar.xz 156880 BLAKE2B 40902d816b8559234e5aac73e116538f2bef18bd71203f67e09af57d8f04582da8565657d931083a2c02e1e8435578ddb2b4ca8f1fd9f54c47d7a3d2630bcda7 SHA512 b6698fba63f5a9d3d58112ecd2c198e9edb9b0ad9d6c8a670bef3f0e836fcf0c5f2c5444d6cbdf7370f2bfcfe5ad8a770b513ebb7a693c19624bf52bf9d02056
DIST kde-gtk-config-5.13.5.tar.xz 156428 BLAKE2B 54461c4e58c9abf6ac7bc96a12e7a92f5615ab0cb00ce76f07bbba1d48dd40e7651643ed3c22af948efea873e5a1a68dde1759f261575a3fa482f4f3efb5da08 SHA512 bc9b75961a0a0efd9824a1913266831c27a9840af1f87fdef46527065321731b3c35b550cff2727f62c360ee72f9495d96cfab3a38c06b661bae9bdf7d739575
DIST kde-gtk-config-5.14.3.tar.xz 157292 BLAKE2B fd060e1810058472e24a82819c2b3b737637d8a5430912e22511085c0c361ccc5f355f7d1235d9514dabdaede799528f5522fd83b452c33e06689c70ada3502e SHA512 5c8d14d77cd6707d32f09361247445ff4399bb7331125d795bf2046bd7f8467c374ad68a11899bcc1592c9c207a4f94e9ef523074184550577c9c85fa7de49ef

@ -1,52 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_TEST="forceoptional"
VIRTUALX_REQUIRED="test"
inherit kde5
DESCRIPTION="KDE Plasma systemsettings kcm to set GTK application look&feel"
HOMEPAGE="https://cgit.kde.org/kde-gtk-config.git"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND="
$(add_frameworks_dep karchive)
$(add_frameworks_dep kcmutils)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
$(add_frameworks_dep knewstuff)
$(add_frameworks_dep kwidgetsaddons)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
dev-libs/glib:2
gnome-base/gsettings-desktop-schemas
x11-libs/gtk+:2
x11-libs/gtk+:3
x11-libs/libXcursor
"
RDEPEND="${DEPEND}
$(add_plasma_dep kde-cli-tools)
!kde-plasma/kde-gtk-config:4
"
src_configure() {
local mycmakeargs=(
-DDATA_INSTALL_DIR="${EPREFIX}/usr/share"
)
kde5_src_configure
}
pkg_postinst() {
kde5_pkg_postinst
elog "If you notice missing icons in your GTK applications, you may have to install"
elog "the corresponding themes for GTK. A good guess would be x11-themes/oxygen-gtk"
elog "for example."
}

@ -1,3 +1,2 @@
DIST kdecoration-5.12.7.tar.xz 35576 BLAKE2B 7046ef70d5a9afd87e112e40cd041840db91071e8b5038f68b211db70dd6effb7fd315425c877e02b75ffb462f7b59e59dafc07b8d5fc89347e220e43969cac4 SHA512 acebb17f42e46dfcb57b5f94e2612e0c4f773ad15e911543281c578de4a409b8f65a028b458afd01f578abb69906316b3c6f2b6d6edd4918b302a8a26227ad95
DIST kdecoration-5.13.5.tar.xz 41808 BLAKE2B 319094f68cfb8ac9f6664f6b0548c60a3961e29571386e0acc22956d83bd8ce6b98aab37b281751c2c35c168c344c906a36d7531a64c5c6616c0c80b3d96683e SHA512 a40dc81dc51fda184253986e2b9e4b9b4e5e0ac543a03ae67c80d7ec6dad07f857d05bfa757fd37a77cbe51ee4c43c7185e52a62ed344ddca6f8f10e54cf4ad8
DIST kdecoration-5.14.3.tar.xz 42196 BLAKE2B 4fc93f64d151d83c539ba7f1504c5f44b12d9a3e6c804e702c31ecdd0d8f67cdac2f8c4b71b19eefb49de2bf7333c0891102084279907f35cef06ee02a587650 SHA512 f43368fbb4799c12452232b1a8d28d5befaaa81922f7b189192a73343dd5a4ce21f5ff9b779cf552cabd95a4721ef2d937518f34759d3cdc90c76d3152ec5915

@ -1,16 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_TEST="forceoptional"
VIRTUALX_REQUIRED="test"
inherit kde5
DESCRIPTION="Plugin based library to create window decorations"
LICENSE="|| ( LGPL-2.1 LGPL-3 )"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE=""
DEPEND="$(add_qt_dep qtgui)"
RDEPEND="${DEPEND}"

@ -1,3 +1,2 @@
DIST kdeplasma-addons-5.12.7.tar.xz 572624 BLAKE2B c1f5e0442994722297c2989e327825727e2a581209e7c689ae5f46d77f3ead67874cbce8ac857de7c6e3ae278a760e8f94e0a872780a41d750b942ad172a9abc SHA512 7af90cee5605dd1b3548c033216b57128e3ef99043168a165b75d3a97fd54794182ffb97846bac91cf806ba4e1a82365a5d61c58f8537de43364c626de392bc7
DIST kdeplasma-addons-5.13.5.tar.xz 602896 BLAKE2B 62494961cc1e5c61656a566ac558747378feb44161e26df31692a68c5e1d3154997facbbebd584af437e29e6448c4c4ca1863e0611ff7afc8237c85036217689 SHA512 e7f8f3b5c149519ba49ed3bab49a72995c5c16cd2cb426daa104d52c3eef924f698267d741ecefcdd9455894d19b1d66ab3bc940d5e8137c13ae213b1ef03e85
DIST kdeplasma-addons-5.14.3.tar.xz 603632 BLAKE2B 77ad5c876efa8e13f790b0b822afa43b79d3187955580e31611cfbc5a1e93d9a5905128a0057dccd28f6ddd45e5636207a8833896f51a6bed8fbd723e19d79f0 SHA512 dd53e18d6fd25e6fa17863aa80bd648e1526b72b852de10cf37363c722879244cb9ad22dc98932ddbcf96321b71acb36c8ecdecb2a7c3304e55346d5da08a704

@ -1,59 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="Extra Plasma applets and engines"
LICENSE="GPL-2 LGPL-2"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="dictionary share"
DEPEND="
$(add_frameworks_dep kactivities)
$(add_frameworks_dep karchive)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcmutils)
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
$(add_frameworks_dep knewstuff)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep kpackage)
$(add_frameworks_dep kross)
$(add_frameworks_dep krunner)
$(add_frameworks_dep kservice)
$(add_frameworks_dep kunitconversion)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep plasma)
$(add_frameworks_dep sonnet)
$(add_plasma_dep plasma-workspace)
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtx11extras)
dictionary? ( $(add_qt_dep qtwebengine) )
share? ( $(add_frameworks_dep purpose) )
"
RDEPEND="${DEPEND}
$(add_qt_dep qtquickcontrols)
$(add_qt_dep qtquickcontrols2)
!kde-plasma/kdeplasma-addons:4
"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package dictionary Qt5WebEngine)
$(cmake-utils_use_find_package share KDEExperimentalPurpose)
)
kde5_src_configure
}

@ -6,7 +6,6 @@
<name>Gentoo KDE Project</name>
</maintainer>
<use>
<flag name="dictionary">Enable dictionary applet using <pkg>dev-qt/qtwebengine</pkg></flag>
<flag name="share">Enable applet for quickly sharing data to a variety of sources</flag>
<flag name="webengine">Enable dictionary and web browser applets using <pkg>dev-qt/qtwebengine</pkg></flag>
</use>

@ -1,3 +1,2 @@
DIST kgamma5-5.12.7.tar.xz 60936 BLAKE2B a4d47d0feb18bc1aae87f3a5bd534ffc1e6527ffe7ff15b6b8ae67f823e6bcb85c96c2ca0481a2152d1805ea468a7b6177f2d0f16b33f15167ed62860f74b8dc SHA512 074dffc56a333bf88bb1942b3021c690822a234e26d41ff1b2d3e81f7f86f6ac272cb80f6f2552cbc5098880de520aebb8549f2a004608b824ea0c48f4e01cc6
DIST kgamma5-5.13.5.tar.xz 79232 BLAKE2B 52542622a30aef92b38d15d38128a2b9fcbfeffcb9624dc2aafdd93814d749f3049adb19ac38047d8dd3c1c3593ecae5a2b3a0577e29c8789934a05b52deb91f SHA512 98f5fa770303f57e548b6110ad8bbc3af75705a9a103b0cb0370e25dcda209d9b405051611f2f21941b95a428760580fd2cafad0af76e1528c0672b8511aba8a
DIST kgamma5-5.14.3.tar.xz 79512 BLAKE2B 055e260d53f068e8faf6f2349d620e29cbae0c3b2b556f203175178b05906ee12ddbbd135bcd396b097030f2bf0bf9a83f4191150bae9f3dc53e32188ac0bb22 SHA512 aaf35fa7c502cc12a47819ef3a13f7fab9fdf4ee88fbe4c8d7af2e087eca055aa9c15f0ebacd5ed8454678d4f97581a4c27e05a5c908af0eeda2678dc361b36f

@ -1,26 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_HANDBOOK="forceoptional"
KMNAME="${PN}5"
inherit kde5
DESCRIPTION="Screen gamma values kcontrol module"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
RDEPEND="
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep ki18n)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
x11-libs/libX11
x11-libs/libXxf86vm
"
DEPEND="${RDEPEND}
x11-base/xorg-proto
"

@ -1,3 +1,2 @@
DIST khotkeys-5.12.7.tar.xz 1435272 BLAKE2B 1e7388b52a71c9f1d31d89a25724c0cc4d6460da46e080aaa1f9a376b43502e3abd07d8999f497f7f75a18752dd0d6f5bdbeaf5e7437396749a202031910e7f6 SHA512 5cdfb182fc6c5edabc7bd979c86c423243ab390e25981359c68cfb1a258503fdf26b723399f4e3a688212c3a92703aaeb359b7c71ada216657282952dd4092b4
DIST khotkeys-5.13.5.tar.xz 1381272 BLAKE2B 490ed8a323249a6eacfc10025bb49b4c792f8d1347d35348230e7ef079389da54b17965d544f9b0467bc516dd7bcdae7211bdf24f0604d6894f3ede2005ec638 SHA512 1eb22e42ecc43d2f78d67e0b6c7e86104c484b1597e063e1d78b7ebfb28950d09583c84d60b261791e282cc14fed63c99f0d070690ed0b43eaf2f23a5e01dfa1
DIST khotkeys-5.14.3.tar.xz 1380280 BLAKE2B bc292790fbf68ccf97e4c77dc0aadedf2c31e0cce4095c90cd59133083da0103d6056950a7937c38565ef90922a463dbae26c4dbdf3dc3d1a7f1b6f7066a6543 SHA512 81a1e6fd2def3babf2a48026021266d091f935468309fc34fbc36bb8338e8e138b4c9e029d272a240399cefc8a87ed78a0a53fb546cf87656f5477dde29d7ee5

@ -1,46 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_HANDBOOK="true"
inherit kde5
DESCRIPTION="KDE Plasma workspace hotkey module"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
COMMON_DEPEND="
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep kdelibs4support X)
$(add_frameworks_dep kglobalaccel)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kio)
$(add_frameworks_dep kservice)
$(add_frameworks_dep ktextwidgets)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
$(add_plasma_dep plasma-workspace)
$(add_qt_dep qtdbus)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtx11extras)
x11-libs/libX11
x11-libs/libXtst
"
RDEPEND="${COMMON_DEPEND}
$(add_frameworks_dep kded)
$(add_plasma_dep kde-cli-tools)
!kde-plasma/khotkeys:4
!kde-plasma/systemsettings:4
"
DEPEND="${COMMON_DEPEND}
x11-base/xorg-proto
x11-libs/libxcb
x11-libs/libXtst
"

@ -1,4 +1,3 @@
DIST glogo-small.png 24583 BLAKE2B 0af2ceae708e56f217120e5d8b880fb71401e3761ab26c4af5e74c0622368aa4e34b05160fae15fbfbbc832077810ab5c1e424826632748299fd22997cbe665c SHA512 648be463ec3812a2edcdab54d7a230bf2bd7e6895f4ffe72321d8fca28a5e1e0980f6e3b9a32f369c8369943ceb802a65a94b9dad820dcf2c81d4581d814cb48
DIST kinfocenter-5.12.7.tar.xz 1286660 BLAKE2B fd1548666a9f47e6bcb168942ff9071c16dfc1095434bdee4a3626bc04bd64d89b75cb7bcff4e085fb52125b84faf4acd1cd2c7812dfcb18970a462245a1333e SHA512 440e1d9c6be280fee95681148f6f9c069529431f3367fd5938663afa840cd191c85fd995b9a0a4fb6ae143d2c74415cafcfc99e4a7d7e25dc99fdd3820608f9b
DIST kinfocenter-5.13.5.tar.xz 1286000 BLAKE2B d8e9278f3c7214e13403970e86ac72f5cad3ed2506752c297860d91f26e986b6bce806a7498b78e4517b8d6c8a0ff31e2d2b6f0117babb93839dc8c923cf6bbd SHA512 a54b3ef5df1855f3002965f70c2e627ddc0b1e69eaa36461da1018b9ffd6e033ca61c4890a358ddc22f6f9e66cab5cdbaa1ff5386dda29fe87248f8af5567e50
DIST kinfocenter-5.14.3.tar.xz 1322480 BLAKE2B 447de617a858fee4cb807cf776a945207387317c5e8be6cc41c445f3ea8647620ab30b2495d26c3446ace3447fb3693e6ed7e385874bca34b8118658bca608c1 SHA512 6d07299cb2145cfe172dc79cfe849b03000fe770e397fd050b053b2f40f09dec5d5ffa9336223320597b965a0c612c0b09333e20fb54c3edb41773d473f9998a

@ -1,95 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_HANDBOOK="true"
inherit kde5
DESCRIPTION="A utility that provides information about a computer system"
HOMEPAGE="https://www.kde.org/applications/system/kinfocenter/"
SRC_URI+=" https://www.gentoo.org/assets/img/logo/gentoo-3d-small.png -> glogo-small.png"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="gles2 ieee1394 +opengl +pci wayland"
REQUIRED_USE="wayland? ( || ( gles2 opengl ) )"
COMMON_DEPEND="
$(add_frameworks_dep kcmutils)
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kcrash)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep kdeclarative)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
$(add_frameworks_dep kpackage)
$(add_frameworks_dep kservice)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep solid)
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
x11-libs/libX11
ieee1394? ( sys-libs/libraw1394 )
opengl? (
$(add_qt_dep qtgui 'gles2=')
media-libs/mesa[gles2?]
!gles2? ( media-libs/glu )
)
pci? ( sys-apps/pciutils )
wayland? (
$(add_frameworks_dep kwayland)
media-libs/mesa[egl]
)
"
DEPEND="${COMMON_DEPEND}
$(add_frameworks_dep plasma)
"
RDEPEND="${COMMON_DEPEND}
$(add_plasma_dep kde-cli-tools)
!kde-apps/kcontrol:4
!kde-misc/about-distro
!kde-plasma/kinfocenter:4
"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package ieee1394 RAW1394)
$(cmake-utils_use_find_package pci PCIUTILS)
$(cmake-utils_use_find_package wayland EGL)
$(cmake-utils_use_find_package wayland KF5Wayland)
)
if has_version "dev-qt/qtgui[gles2]"; then
mycmakeargs+=( $(cmake-utils_use_find_package gles2 OpenGLES) )
else
mycmakeargs+=( $(cmake-utils_use_find_package opengl OpenGL) )
fi
kde5_src_configure
}
src_install() {
kde5_src_install
insinto /etc/xdg
doins "${FILESDIR}"/kcm-about-distrorc
insinto /usr/share/${PN}
doins "${DISTDIR}"/glogo-small.png
}
pkg_postinst() {
if ! has_version "net-fs/nfs-utils"; then
elog "Installing net-fs/nfs-utils will enable the NFS information module."
fi
if ! has_version "net-fs/samba"; then
elog "Installing net-fs/samba will enable the Samba status information module."
fi
}

@ -1,3 +1,2 @@
DIST kmenuedit-5.12.7.tar.xz 817080 BLAKE2B 3c33d99acfef942cb4f36b1827bae3a318d7ef9253e76594f4d5dd2e7ea3e0679e925d86dbea773120e998d86720fe67ceff9dc3358f55b45c5c73998cb27087 SHA512 7bc5df0512b58bcc9e403449a3cafd7889a815d17d7387986750477e1420e71fce4d98980a789a16240ef6d2a7f316df9e0a1525c96b89df193aa601a2571062
DIST kmenuedit-5.13.5.tar.xz 774524 BLAKE2B 1ae7f9f1b507f719054000a918b7d6ad16eb5b73eb201e3cb4c19b6d6e29333c2fea8a54f6d32fdf94f5fb87d945db8c50eab92fb817dbc50b8471874954b382 SHA512 3289003f986d9e92708e0af49f9425ea71ec679377ece863e6f5411a00854bae56c86f0fb8b4398fa477829074c55474f9ca47f0d92a8ae314bd3701261d08c9
DIST kmenuedit-5.14.3.tar.xz 770680 BLAKE2B 27bcd385c3e3b82585c96cf07f2040db2774f71729f7e52ea58d919375502e86fe47677d90df3acffdaf6e99dc91632beea7f801e00cba50a08cf9b33af77238 SHA512 889651562d92874ee62e6edd4d9ab119af5ba301262602d52ccc811faffaee0f89ba909bbd2645f062fa060ab58252206f34c73b7b5924f0e22d16e07a7a31e0

@ -1,44 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_HANDBOOK="true"
inherit kde5
DESCRIPTION="KDE Plasma menu editor"
HOMEPAGE="https://cgit.kde.org/kmenuedit.git"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="+hotkeys"
DEPEND="
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
$(add_frameworks_dep kservice)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep sonnet)
$(add_qt_dep qtdbus)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
hotkeys? ( $(add_plasma_dep khotkeys) )
"
RDEPEND="${DEPEND}
!kde-plasma/kmenuedit:4
"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package hotkeys KHotKeysDBusInterface)
)
kde5_src_configure
}

@ -1,3 +1,2 @@
DIST kscreen-5.12.7.tar.xz 118748 BLAKE2B f7790360820f92d2949648f4ca0d30708d7d36c8c027dca14fbcca7b92d0bc1fdbbfe9850f65a38e91e2bcb17326997fbc1297d29a5940a4d1371831559a87c3 SHA512 4967511dfc6ad1444fb51d7f85e8dba42c3c36d490228dac28eef176771b993e1340cdd09a3f38e2abdb835681f4c3435c36b22c0d828487510ce68bba0919ad
DIST kscreen-5.13.5.tar.xz 112972 BLAKE2B b8c61e651efefd4517d5fa75965d481c21aab9d9f9f3b5c757a80c388114db4fc352c62ccad28c5215cd97b381a31b56b17c47e11d3fd46124c686b6572d9268 SHA512 86e0edbd6f4ad9639fc79198fde74ba7c0872878ee3eddf9edcb9515a4d68e09699777c1dc8cabb77cb2f1360e7b294a15edd84c0bdc32e985faa9cbcb174e37
DIST kscreen-5.14.3.tar.xz 122344 BLAKE2B 7a0861586440eb4c03b632bd665ffb0e1afb9b7ebe78a120af855c53c06c8fb08a02532f4686221144b75fc8a7fccb3a37bd11729c7a9ffbda2549f29f5606a0 SHA512 f0331d8ec7cf7868ada1b537ba1b89cec2938e11cc0148722f0ddcf193e2067e73cf41955309bbb0779095df1836f27a105963c8840dfc01615d04c61c23ab82

@ -1,38 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_TEST="forceoptional"
inherit kde5
DESCRIPTION="KDE Plasma screen management"
HOMEPAGE="https://cgit.kde.org/kscreen.git"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND="
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep kglobalaccel)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kxmlgui)
$(add_plasma_dep libkscreen)
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative 'widgets')
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
"
RDEPEND="${DEPEND}
$(add_frameworks_dep plasma)
$(add_plasma_dep kde-cli-tools)
$(add_qt_dep qtgraphicaleffects)
!kde-plasma/kscreen:4
"
# bug #580440, last checked 5.6.3
RESTRICT+=" test"

@ -1,3 +1,2 @@
DIST kscreenlocker-5.12.7.tar.xz 119484 BLAKE2B d8f0e60ec3c3f294d9daf109fc327d895f32e0c9b26841787a1ed20b5b6d3ba8113b30858caec0e8782b56d717d91979f13187466c174f4c2153678e14e7d7f3 SHA512 76554e8ad6872705e903bda5f55f650d859b282b400ca739f346e392ce7961891057c8a8a43b5dcb85c83860e4744252500c338e5d99fd67a33df529a7e040c6
DIST kscreenlocker-5.13.5.tar.xz 122112 BLAKE2B 4effbfd26b15ca9a0225031b11b892092351a95eddf2bad659b7a97e347db402d5f28415d6d8fb11eb3ad095faa7ad430e949d5f21abaf33da8cc8f47ba8e26e SHA512 c09f55da12893f162fcdc7559e55fa50d48bb642673de84809939e695ee93843e97a5224cfc79cb6bea6a1146ac757c45eab0bd1aa20e36206290c0155d8dfe2
DIST kscreenlocker-5.14.3.tar.xz 122280 BLAKE2B 03182f4ffa11727606221e8c0c77f610c18ced1392ac0059e743074cb80cb80b35cc0a5e82f6cc3457df493599e0223b5bb2bef134c45e780ba7ecb649496772 SHA512 186f693a931936658624274c7de77e8cb06c433355932a17a6c600c6cf349f848b90642b613c786c0585f050599a545d0e596d81968a6ec0b7188eb34a6e2a71

@ -1,220 +0,0 @@
#!/bin/sh
# This script is to make unlocking using OpenRC/Consolekit easier when the KDE Screenlocker breaks.
#
# Version: 0.2
# Date written: February 2, 2018
# Last modification: February 17, 2018
#
# Copyright (C) 2018 Daniel Frey
# Copyright (C) 2018 Lars Wendler
#
# This script is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This script is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# Some notes:
# -The switch processing/argument handling is very basic.
# -This script assumes session names start with "Session" when listing
# sessions. This is settable via a variable.
#
# Possible actions:
# -h : Show help screen
# -l : List current consolekit sessions
# -u : Unlock specified session (one parameter required - the session name)
# -a : Attempt to unlock all sessions
# Return code documentation
#
# 0: Script executed normally
# 1: Root access is not present for script
# 2: No arguments passed
# 3: Multiple actions requested, can only do one at a time
# 4: Argument passed was not recognized
# 5: Multiple arguments passed for unlock single session, only one needed
# 6: The argument required for unlocksession() is missing (internal error)
SCRIPTNAME="$(basename $0)"
# Return code constants
readonly ERR_NORMAL_OPERATION=0
readonly ERR_NO_ROOT=1
readonly ERR_NO_ARGS=2
readonly ERR_TOO_MANY_ACTIONS=3
readonly ERR_INVALID_ARGUMENTS=4
readonly ERR_TOO_MANY_ARGS=5
readonly ERR_INTERNAL_ARG_MISSING=6
# Action parameter constants
readonly ACTION_NONE=0
readonly ACTION_HELP=1
readonly ACTION_LIST=2
readonly ACTION_UNLOCKALL=3
readonly ACTION_UNLOCK=4
# This is what's used to look for a session via consolekit.
# By default, assume it is prefixed with "Session".
SESSION_SEARCH_PREFIX="Session"
# Check to make sure script has root access, if not... abort now!
if [ "$(id -u)" -ne 0 ]; then
echo "This script must be run as root."
exit ${ERR_NO_ROOT}
fi
showhelp() {
cat <<EOF
${SCRIPTNAME}: a script that helps unlock consolekit sessions
Usage: ${SCRIPTNAME} [action] [parameters]
Actions:
-l : list current sessions available for unlocking
-u : unlock session specified as a parameter
-a : attempt to unlock all current sessions
-h : this screen
Parameters:
The -u parameter requires a session name to unlock, use -l to
list sessions.
Example:
To unlock a single session, use:
${SCRIPTNAME} -u Session1
No arguments will show this screen.
EOF
}
listsessions() {
# Get a list of all sessions, and remove the full colon from the session name
ALLSESSIONS=$(ck-list-sessions | grep "^${SESSION_SEARCH_PREFIX}" | awk -F : '{print $1}')
echo
echo "Sessions present on this machine, space-delineated:"
echo
echo ${ALLSESSIONS}
echo
echo
echo "Session detail (to help locate a specific session:"
ck-list-sessions | grep -A 2 "^${SESSION_SEARCH_PREFIX}"
}
unlocksession() {
# This function expects one parameter set (the session to unlock).
# Make sure the parameter exists before continuing.
if [ -z "${1}" ]; then
showhelp
exit ${ERR_INTERNAL_ARG_MISSING}
fi
echo "Attempting to unlock session $1; messages from dbus are not suppressed."
# Finally, request the unlock.
dbus-send --system --print-reply --dest="org.freedesktop.ConsoleKit" /org/freedesktop/ConsoleKit/$1 org.freedesktop.ConsoleKit.Session.Unlock
}
unlockallsessions() {
# Get a list of all sessions, and remove the full colon from the session name
ALLSESSIONS=$(ck-list-sessions | grep "^${SESSION_SEARCH_PREFIX}" | awk -F : '{print $1}')
echo "Attempting to unlock all sessions. Messages from dbus are not suppressed."
echo
# Loop through results, attempt to unlock all sessions.
# Count them and report at the end.
COUNT=0
for i in ${ALLSESSIONS}; do
dbus-send --system --print-reply --dest="org.freedesktop.ConsoleKit" /org/freedesktop/ConsoleKit/$i org.freedesktop.ConsoleKit.Session.Unlock
let "COUNT+=1"
done
echo
echo "Attempted to unlock ${COUNT} session(s)."
}
check_actions() {
# Make sure multiple actions are not chosen.
if [ ${ACTION} -ne ${ACTION_NONE} ]; then
echo "You can only declare one action at a time!"
echo ""
showhelp
exit ${ERR_TOO_MANY_ACTIONS}
fi
}
# Start of "main" routine
# Initialize variables:
# ACTION=default 0; used to make sure more than one action are not
# specified at the same time. If an invalid argument was passed
# (e.g. one without the hyphen prefix) it will be caught as well.
ACTION="${ACTION_NONE}"
# Show help if no arguments provided at all
if [ $# -eq 0 ]; then
showhelp
exit ${ERR_NO_ARGS}
fi
# Process arguments passed, setting environment appropriately.
# During this check, ensure only one action was requested. This
# script will not do multiple things at a time.
while getopts “hlau:” OPTION; do
case ${OPTION} in
h) # Help action
check_actions
ACTION=${ACTION_HELP}
;;
l) # List action
check_actions
ACTION="${ACTION_LIST}"
;;
a) # Enable all USB hubs/devices action
check_actions
ACTION="${ACTION_UNLOCKALL}"
;;
u) # Enable specific hub/device via find command action
check_actions
ACTION="${ACTION_UNLOCK}"
# Save session name passed for later
UNLOCKSESSION="${OPTARG}"
;;
?) # Unknown parameter
showhelp
exit ${ERR_INVALID_ARGUMENTS}
;;
esac
done
# If script reaches this point, only one action was specified, so it is safe
# to continue processing.
case ${ACTION} in
${ACTION_HELP}) # help action
showhelp
;;
${ACTION_LIST}) # list action
listsessions
;;
${ACTION_UNLOCKALL}) # unlock all sessions
unlockallsessions
;;
${ACTION_UNLOCK}) # unlock single session
unlocksession ${UNLOCKSESSION}
;;
*)
echo "Unrecognized action."
echo
showhelp
exit ${ERR_INVALID_ARGUMENTS}
;;
esac
exit ${ERR_NORMAL_OPERATION}

@ -1,96 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_TEST="forceoptional"
VIRTUALX_REQUIRED="test"
inherit kde5 pam
DESCRIPTION="Library and components for secure lock screen architecture"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="consolekit +pam seccomp"
REQUIRED_USE="seccomp? ( pam )"
COMMON_DEPEND="
$(add_frameworks_dep kcmutils)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kcrash)
$(add_frameworks_dep kdeclarative)
$(add_frameworks_dep kglobalaccel)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kidletime)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep kpackage)
$(add_frameworks_dep ktextwidgets)
$(add_frameworks_dep kwayland)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep solid)
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative 'widgets')
$(add_qt_dep qtgui)
$(add_qt_dep qtnetwork)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtx11extras)
dev-libs/wayland
x11-libs/libX11
x11-libs/libXi
x11-libs/libxcb
x11-libs/xcb-util-keysyms
pam? ( virtual/pam )
seccomp? ( sys-libs/libseccomp )
"
DEPEND="${COMMON_DEPEND}
x11-base/xorg-proto
"
RDEPEND="${COMMON_DEPEND}
$(add_plasma_dep kde-cli-tools)
!<kde-plasma/kcheckpass-4.11.22-r1:4
!kde-plasma/kdebase-pam:0
"
RESTRICT+=" test"
src_prepare() {
kde5_src_prepare
use consolekit && eapply "${FILESDIR}"/${PN}-consolekit-unlock.patch
use test || sed -i \
-e "/add_subdirectory(autotests)/ s/^/#/" greeter/CMakeLists.txt || die
}
src_test() {
# requires running environment
local myctestargs=(
-E x11LockerTest
)
kde5_src_test
}
src_configure() {
local mycmakeargs=(
-DPAM_REQUIRED=$(usex pam)
$(cmake-utils_use_find_package pam PAM)
$(cmake-utils_use_find_package seccomp Seccomp)
)
kde5_src_configure
}
src_install() {
kde5_src_install
use pam && newpamd "${FILESDIR}/kde.pam" kde
use pam && newpamd "${FILESDIR}/kde-np.pam" kde-np
use consolekit && dobin "${FILESDIR}"/ck-unlock-session
if ! use pam; then
chown root "${ED}"usr/$(get_libdir)/libexec/kcheckpass || die
chmod +s "${ED}"usr/$(get_libdir)/libexec/kcheckpass || die
fi
}

@ -5,7 +5,4 @@
<email>kde@gentoo.org</email>
<name>Gentoo KDE Project</name>
</maintainer>
<use>
<flag name="consolekit">Add support for killing the screenlocker when <pkg>sys-auth/consolekit</pkg> is the session tracker</flag>
</use>
</pkgmetadata>

@ -1,3 +1,2 @@
DIST ksshaskpass-5.12.7.tar.xz 21332 BLAKE2B bef0308071942b1c964ddb6f53574e46ecf04018636d6aa34c42d7cdc9f7cc51110678746d5debdc4dfe8c2463c3369dc91fd7c3446be897c1ff670ad88a8d9e SHA512 0c613b5263721a510844b24f4311d906f229acdbb72967902973f995b88973f68f13fd098bf702d1281023f17eafb87de388589062da1b58923479e6fe831a7a
DIST ksshaskpass-5.13.5.tar.xz 21408 BLAKE2B f69798427ca5e4681543580158fc0ded5c4c3d352e31476cbc7832e99844cd30d8134785c460900724fdbd922ef526974dfc28d76ef89369ac309bcbf495e334 SHA512 88712a268710bac6c60bb111d79bf52f5b34e0a7e0f27ea1affb32bc1a18925998a5040e1b96907e4e1648304706ca2c3c2815d98b7807d972fbf8f57f285e96
DIST ksshaskpass-5.14.3.tar.xz 21400 BLAKE2B 86606d6de13b785a5b78cbd08e588d88057818b91799aedecee5514e88a34c4cfc4b1cc0910d0ff145963aa74f979f80d17146342f5fc4e64a794cb85f701a0a SHA512 d4aa1870c9e484e8e855d701585076e6ff25af6647e3c97075b3296a4a7603b32833e147dcd8c42073c67ffa9fff77b2f65697bb5885529ce0fd17e29dbe8e76

@ -1,49 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="KDE implementation of ssh-askpass with Kwallet integration"
HOMEPAGE="https://cgit.kde.org/ksshaskpass.git"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND="
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kwallet)
$(add_frameworks_dep kwidgetsaddons)
$(add_qt_dep qtwidgets)
"
RDEPEND="
${DEPEND}
!kde-plasma/ksshaskpass:4
"
src_install() {
kde5_src_install
insinto /etc/plasma/startup
doins "${FILESDIR}/05-ksshaskpass.sh"
}
pkg_postinst() {
kde5_pkg_postinst
elog ""
elog "In order to have ssh-agent start at kde startup,"
elog "edit /etc/plasma/startup/10-agent-startup.sh and uncomment"
elog "the lines enabling ssh-agent."
elog
elog "If you do so, do not forget to uncomment the respective"
elog "lines in /etc/plasma/shutdown/10-agent-shutdown.sh to"
elog "properly kill the agent when the session ends."
elog
elog "${PN} has been installed as your default askpass application"
elog "for Plasma 5 sessions."
elog "If that's not desired, select the one you want to use in"
elog "/etc/plasma/startup/05-ksshaskpass.sh"
elog ""
}

@ -1,3 +1,2 @@
DIST ksysguard-5.12.7.tar.xz 496904 BLAKE2B da069b522a5f4de685f7b5421fc427026f7bff892e9aee30bad4713717f4864edf0a8314066fc97749fb5e712944c07e29d95ac26afb8f4a05a81104f7844e2f SHA512 745958c74914d9b21373919b0e54cf7d1dd0621769aa8a480bac924862c494c68c86fa36c019fb13d71d8d86c8d923161290ef9a967b98c1182df88da63bbb35
DIST ksysguard-5.13.5.tar.xz 497776 BLAKE2B 15daec09221993a9c5f39845a3cd168d01ee9a367020312507ac96615722fdf0e5244b3130dd5f09905db8a95b7ddf5df58cdada64a1e291c069f1b58912e684 SHA512 3df272468c6ea1a1211fd9f1e40bab5be8cdff8cb02556999cde8dde81042d6a0d8ad3958faf507323d7770f6dc2631d9ceba7ade796f8927719ce4a8659ca21
DIST ksysguard-5.14.3.tar.xz 501720 BLAKE2B b3b4ef98ba78c3c30fa76b6914ed93d5a002b1806fc59ad778b27082eb39acdafb68f815743f88cf4d43a4c10cc2de4070603ae5ee18d93a25e7299f0cd0839e SHA512 aa1d2007ffe0b4ad30e3e54a98cb56980d7666a36c879039952a2e589fe054ee773d3b495fbf3605777ed616e90f6f959ade3768e874f45f44223666b398de25

@ -1,47 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_HANDBOOK="forceoptional"
inherit kde5
DESCRIPTION="Network-enabled task manager and system monitor"
LICENSE="GPL-2+"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="lm_sensors"
DEPEND="
$(add_plasma_dep libksysguard '-minimal(-)')
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kinit)
$(add_frameworks_dep kio)
$(add_frameworks_dep kitemviews)
$(add_frameworks_dep knewstuff)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
$(add_qt_dep qtdbus)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
lm_sensors? ( sys-apps/lm_sensors )
"
RDEPEND="${DEPEND}
!kde-plasma/ksysguard:4
"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package lm_sensors Sensors)
)
kde5_src_configure
}

@ -1,3 +1,2 @@
DIST kwallet-pam-5.12.7.tar.xz 18728 BLAKE2B 66386c982597a4a1024a9a0e8317106900423959213a543a14ba1d3f3c2cf6aed21ace24b01cffcd2ed0a7acf409111d4488ecb3183a71bb026f606fd76520cf SHA512 7d2c8776f481bd03396056321f8c94f8bcea4b821c3cf58531077cd09922dacbe8896998d56a7856721f0dbaf7b2f7e24188292aed7b17c288d0346e8d14695b
DIST kwallet-pam-5.13.5.tar.xz 18668 BLAKE2B 4dac7c037fe8ad89be884d5e4c7e850b62d2838161a9086e6f193345d4001860e7ff286e4052009f2010f6517ee30b3f6838c955bef5efc30c9e6999076b231e SHA512 cdd273d13406a927f93ce4f6189484b67d7ad146c5eb42f4d99d85c95938fe457082790453709c3d7129b2321c723e12ef93468e8febb68a19132f6f0fe72f62
DIST kwallet-pam-5.14.3.tar.xz 19104 BLAKE2B a804e6786cfc860af1c2de17348cb128a9f7922c1399d50fc69382ef139e959e54bde36b8d46f3995b4800de12ea79528a6ef0f3df45d5cf9d7fb4a26b15fc35 SHA512 b6011aa8dbff209e7645f3a6f8ce2c8bc33239bd91c756cc3baa8555f6339f20c7d5c9efae7f5fbb8c85844973b5be28833b513f4432e7cfe39e8fec78032298

@ -1,33 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="KWallet PAM module to not enter password again"
LICENSE="LGPL-2.1"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND="
dev-libs/libgcrypt:0=
virtual/pam
"
RDEPEND="${DEPEND}
net-misc/socat
"
src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_LIBDIR="/$(get_libdir)"
-DKWALLET4=0
)
kde5_src_configure
}
pkg_postinst() {
kde5_pkg_postinst
elog "This package enables auto-unlocking of kde-frameworks/kwallet:5."
elog "See also: https://wiki.gentoo.org/wiki/KDE#KWallet_auto-unlocking"
}

@ -1,3 +1,2 @@
DIST kwayland-integration-5.12.7.tar.xz 18592 BLAKE2B 86c7f323491b8fe7c7c239709ada0a1cc7d9835174f844cd32218216e4c19752db5ee2805f60a9278646d44d116f28431a47d82f9d4b59d5ffea673cbcaba486 SHA512 6537b2aad637d0792a1dc056d78f03a59a642e509ef156c9693b68cffccfbba370eea1faa88c8c5aae533c5fcb69d54b54c79deed9cb6a724c202400a51f4414
DIST kwayland-integration-5.13.5.tar.xz 18512 BLAKE2B 44be32c2a9b233a7abf646234091656a24a0053112e4750b3317fc59fd7a3c6bfaaf4bc92a8c27d6ec2ef95a3e3b04baa971cfd135c4a36dd1ad8db151a271fd SHA512 1347bdc52e53fcc7f2b9dee859836ea232120736834a31b54efb188a6332cca429164d2a2139ab6e578bc3befd056e75e113ef3e72b2c4d15f2bf7d0ede01f16
DIST kwayland-integration-5.14.3.tar.xz 18812 BLAKE2B 8eaa74c417dc2841b54e1ce2e2c6dda5328bf584e6b103527932709fa737cce91359f0a5255b5d01f8d234efef02bf07c97e5068c18af35dfe2845b34e196fcb SHA512 844dfd0ed6568a18b74e86752a636e216e0198203bbf51c0061b9fdd0a16c974d1bb0bbdb728ace53c6e72a0f5127b4bd90284b71983c323d093f5a54919a6da

@ -1,22 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="Provides integration plugins for various KDE frameworks for Wayland"
HOMEPAGE="https://cgit.kde.org/kwayland-integration.git"
LICENSE="LGPL-2.1"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND="
$(add_frameworks_dep kidletime)
$(add_frameworks_dep kwayland)
$(add_frameworks_dep kwindowsystem)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
"
RDEPEND="${DEPEND}"

@ -1,3 +1,2 @@
DIST kwin-5.12.7.tar.xz 6521368 BLAKE2B 5cf898b85ead7c7b88017b86ddee2c4c0444637414094c07b972681be45c2eeac43cb4c3ceb167d22b5e3f685216922c065b76e5db555d22fd378faa2b2e7a94 SHA512 acb58cd5681727aa2ebcfb75d2abc3ea636811b490d8b15a4b89e55cfb81ce8aeed9568a52d4d1c3274852f26823ec5301a6721d9be64ba9a2b65e04f6029760
DIST kwin-5.13.5.tar.xz 6525660 BLAKE2B b159dd8223f018e7a17d8e17296c8f6bd40d95ed666839198a82b6c65c13965e0ba49af45ac13ac579567a4f2e3f088c571f2f300103a4477284327609076272 SHA512 73f2d16403b7972db8ebe228569504d1e6345a633f8b006b6399575b0ed26dc5a3d047be0f476dedfce16acaaba0e3870e62059d96e4f8471fecafca7eee5a14
DIST kwin-5.14.3.tar.xz 6573740 BLAKE2B 53d80cf2e2bdb8b74421badddf2c3c7620ddaf337a8f91239c5de8a74efb7c3f4cce1bddda722a93f0d5a89e7639015b3207fb3b5ef483be2781ca742f742d29 SHA512 4ba7a6cc02c1a5e94f4d08c6c72968ecf1e1c72fb9f047e2db014a525d3f6e30b8e16d1dc2043f077e3f63b67362355c456295f7962e1661d667c01e0b22626c

@ -1,104 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_HANDBOOK="optional"
KDE_TEST="optional"
VIRTUALX_REQUIRED="test"
inherit kde5
DESCRIPTION="KDE window manager"
LICENSE="GPL-2+"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="caps gles2 multimedia"
COMMON_DEPEND="
$(add_frameworks_dep kactivities)
$(add_frameworks_dep kauth)
$(add_frameworks_dep kcmutils)
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kcrash)
$(add_frameworks_dep kdeclarative)
$(add_frameworks_dep kglobalaccel '' '' '5=')
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kidletime '' '' '5=')
$(add_frameworks_dep kinit)
$(add_frameworks_dep kio)
$(add_frameworks_dep knewstuff)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep kpackage)
$(add_frameworks_dep kservice)
$(add_frameworks_dep ktextwidgets)
$(add_frameworks_dep kwayland)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem X)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep plasma)
$(add_plasma_dep breeze)
$(add_plasma_dep kdecoration)
$(add_plasma_dep kscreenlocker)
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui 'gles2=' '' '5=')
$(add_qt_dep qtscript)
$(add_qt_dep qtsensors)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtx11extras)
>=dev-libs/libinput-1.5
>=dev-libs/wayland-1.2
media-libs/fontconfig
media-libs/freetype
media-libs/libepoxy
media-libs/mesa[egl,gbm,gles2?,wayland]
virtual/libudev:=
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXi
x11-libs/libdrm
>=x11-libs/libxcb-1.10
>=x11-libs/libxkbcommon-0.7.0
x11-libs/xcb-util-cursor
x11-libs/xcb-util-image
x11-libs/xcb-util-keysyms
x11-libs/xcb-util-wm
caps? ( sys-libs/libcap )
"
RDEPEND="${COMMON_DEPEND}
$(add_plasma_dep kde-cli-tools)
$(add_qt_dep qtvirtualkeyboard)
multimedia? ( $(add_qt_dep qtmultimedia 'gstreamer,qml') )
!kde-plasma/kwin:4
!kde-plasma/systemsettings:4
"
DEPEND="${COMMON_DEPEND}
$(add_qt_dep designer)
$(add_qt_dep qtconcurrent)
x11-base/xorg-proto
"
RESTRICT+=" test"
PATCHES=( "${FILESDIR}/${PN}-5.10.95-test-optional.patch" )
src_prepare() {
kde5_src_prepare
use multimedia || eapply "${FILESDIR}/${PN}-gstreamer-optional.patch"
# Access violations, bug #640432
sed -e "s/^ecm_find_qmlmodule.*QtMultimedia/#&/" \
-i CMakeLists.txt || die
}
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package caps Libcap)
)
kde5_src_configure
}

@ -1,3 +1,2 @@
DIST kwrited-5.12.7.tar.xz 20392 BLAKE2B 15925bc4650b6b89fefd57d5b6164f1ebeb881845f164743eaba13069e2e0797cc35a6cfeea48e5a8b12249231ba8d3f6eead7cdb0990a95262329125ecf6070 SHA512 f77d2c068a0b6fb8cf86f6e1444e66b8fcddda386ee319dd138b3c861382a9f9e28cd24003386910cb91390e65691168359062be4ec3c800ec4742232e9dca9a
DIST kwrited-5.13.5.tar.xz 19796 BLAKE2B 0e0487bd18b6cdccaacc598f544af7f3af8591e59fb753f7351542f453601e8ce7b1544511921ff4e6c2361b38902ddb7e004c35ea8bd5f74e0339f5ff84b985 SHA512 d4d006de0d029ff8103e6b9d7d8771bd5703f6a1b190bafad7b5358e7ad12ecc52fb883947b93a7f3391d28bf063f797d5eca9422c4fb9bd1549ca2c57060388
DIST kwrited-5.14.3.tar.xz 20116 BLAKE2B 62857079674003d4f2116532bdd38efa543e3b7e3450498dddcfddf2c69640e0b4c582d8175effccadb80194a56187632f24d066194ef709400bc771e04d86bd SHA512 ed39586685b8f1dc7acda6b8de88fe3d68abb613bd0b4574f4994dc177f29ca696989eae3a8c2c249bc2386761f836a43c5b9cf7d5768f1a80b0907e95635759

@ -1,23 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="KDE Plasma daemon listening for wall and write messages"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND="
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep kpty)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
"
RDEPEND="${DEPEND}
!kde-plasma/kwrited:4
"

@ -1,3 +1,2 @@
DIST libkscreen-5.12.7.tar.xz 94840 BLAKE2B 3cefc37380dabda2951962eb7c63961eff0b6da2a0dce49e02f8ad8027f114f41f162728173f46bf436e4dbccccb443325ca6938ff1ed4b48b99fa87a56dae9f SHA512 fb24d0f4f79468d4246e912f4b7e814df398911cdbd475e18263e89502ecca35c9e4974b7f0af92afa8cba3081056f8f27b0f051eb287c682dd37b35568b3c5c
DIST libkscreen-5.13.5.tar.xz 78380 BLAKE2B 701fd156edacab9941b102a7ce4e36c1038ac6efa1410be5a3317b03771a61bce1c3dede247021b034ffe9a1ab2b9490ccf24bbd0c6e1e21decdfd9a9a2fe97f SHA512 1089eba583490807e87ea02e33e63c89b750585f0c612bc70517b36e88779dc4a3a8d300d4295735967ee04689a7a9361910c67f3f3d5cb2511304e9e05657d2
DIST libkscreen-5.14.3.tar.xz 80060 BLAKE2B 39014ab27f0ef6ac9c7e24785247b8ae3307f306a0375996193ce457a126ffbe8bc22e0144cefe71a01242be4a147d3bfadf39bbd0bf5f691ac6ce15bc6500f8 SHA512 c909291132e362f8408f0696f08d3fdff70d56ab8d128b68d4984626d1bb19f274cb3b84f08e2af7c0c0fde3eaee12689c1aa9a5fa267406b51d1d2d02a82d54

@ -1,27 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_TEST="forceoptional"
VIRTUALX_REQUIRED="test"
inherit kde5
DESCRIPTION="Plasma screen management library"
SLOT="5/7"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE=""
DEPEND="
$(add_frameworks_dep kwayland)
$(add_qt_dep qtdbus)
$(add_qt_dep qtgui)
$(add_qt_dep qtx11extras)
x11-libs/libxcb
"
RDEPEND="${DEPEND}
!x11-libs/libkscreen:5
"
# requires running session
RESTRICT+=" test"

@ -1,3 +1,2 @@
DIST libksysguard-5.12.7.tar.xz 572060 BLAKE2B 9eec376f5af64a90554513bd9f714b170987c0f18313b6fe21fbf4647f79b11cc8077d4945095210a234b5c8d31de70c9bc27784304415dc689d56b1bcafffba SHA512 78a063606567632c19a7f1c9d2e7d69634432f3e49bb08a3162805aeb94e0930f2d43e9372207512558b785b8c7e20fdca801de35c055e456ac3cb812bd96efa
DIST libksysguard-5.13.5.tar.xz 568200 BLAKE2B aafe167cca39ce33eaa56579a228c3d4b9a1a25c55ee268f9e54bfa33162233a242bec0ba9c2adafe238bdaa0b37573d8846c50338e91ec9a1cea797c308a0d9 SHA512 4be616ee2c6e3293f95c3f63ed2722395a6a78510765bcdb3112f37402507a2b7aa9e7bc58fb84bc6d294863e033c1843b228801a3bb534763ca96c1ec729978
DIST libksysguard-5.14.3.tar.xz 576328 BLAKE2B fa10444f1c08f1ba70f4fcd32591714736d2fe7982685c705e90f662c402ad5194edf00b1a6ce425bf8b25f5d4a91a88092408b3cce2ae6a40b49d13805cca7d SHA512 b561ad796ccf290176d116b8c5c9845d07a76e3f089bf578cf4a9cb2ef323dfb848c5011d084da0e3f548e3d92b57c732db0d4c93b79b7aee5085d8df2516467

@ -1,53 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_TEST="true"
VIRTUALX_REQUIRED="test"
inherit kde5
DESCRIPTION="Task management and system monitoring library"
LICENSE="LGPL-2+"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="+detailedmemory minimal X"
COMMON_DEPEND="
$(add_frameworks_dep kauth)
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_qt_dep qtdbus)
$(add_qt_dep qtgui)
$(add_qt_dep qtnetwork)
$(add_qt_dep qtwidgets)
sys-libs/zlib
detailedmemory? ( $(add_qt_dep qtwebkit) )
X? (
$(add_qt_dep qtx11extras)
x11-libs/libX11
x11-libs/libXres
)
"
RDEPEND="${COMMON_DEPEND}
!kde-plasma/ksysguard:4
"
DEPEND="${COMMON_DEPEND}
$(add_frameworks_dep kiconthemes)
!minimal? ( $(add_frameworks_dep plasma) )
X? ( x11-base/xorg-proto )
"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package detailedmemory Qt5WebKitWidgets)
$(cmake-utils_use_find_package !minimal KF5Plasma)
$(cmake-utils_use_find_package X X11)
)
kde5_src_configure
}

@ -1,3 +1,2 @@
DIST milou-5.12.7.tar.xz 57944 BLAKE2B e813bada0a318243d7f0995eac09b113db562d60424594bfdfe766c127154669a5e77d1854a81f9165e3c5177981d1bcc3625029d7a827de2d60f2a3c54fd6a5 SHA512 e46395992fd53ec9f230790d4e0eccfb91f925729088f0c8d602524828ce4ff2a55bbcab843daa66c57eff20393c291f9e0f860a4b4b11fc834374b386fcfdbd
DIST milou-5.13.5.tar.xz 57880 BLAKE2B 30501efa72fbe339865b4a2eb82ad8cc5031ec6f698403c5f1930fc45e7c4f4b24c49ad30374a81a4e9b0ab29b86c1dd5272c002a0749811c9629b2be9d42fca SHA512 b03e6568698e510c5069fa5c9e99d2de38abd725c2a78d183957f32a2cd59ae0620d99258736c9c8e46bd005e084fb0f19051a112f6133ef35803ea06867113f
DIST milou-5.14.3.tar.xz 57924 BLAKE2B f7dc799dcab3981bcefc488fcf1e221e450d45f5c706a595e86ee58db26c8bee9aa0a090f75c8cdff895a64280aeed1e962537a9e34f5a1142f0b3bf574e6070 SHA512 3ede4995eb258e15aeac4b87a8eab5502abfbfaa921f1a1c3414329b79ec3cb65c916b37313e5bca398a1e8ca8347919c2ff464b74b87834f2dfa6b943950775

@ -1,30 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_TEST="forceoptional-recursive"
inherit kde5
DESCRIPTION="Dedicated search application built on top of Baloo"
HOMEPAGE="https://cgit.kde.org/milou.git"
LICENSE="GPL-2 LGPL-2.1"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE=""
DEPEND="
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdeclarative)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep krunner)
$(add_frameworks_dep kservice)
$(add_frameworks_dep plasma)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
"
RDEPEND="${DEPEND}
!kde-plasma/milou:4
"

@ -1,3 +1,2 @@
DIST oxygen-5.12.7.tar.xz 4469308 BLAKE2B 423dee51d6a7ba4c7c33f4aa4641a9ca264ad0a81db5dc7c6e8912967f54f353029d936bca8850057e9a3c5d052476b0d8d82f8e8dc1be4146944d92b1c37006 SHA512 20e448f223c13f60b929d3fe0be4070868ddf9189a1108b2a798ce08ca654db082798c6389e6dbd06dcc72fff061e3178c805c9f1fb595b1649235e0ec5231ff
DIST oxygen-5.13.5.tar.xz 4468116 BLAKE2B 9e71ca71cfe5acef6b5344e0ab89a63b0ef68119251515534a7841d67ad0d7e5141ed48cfaef828870d9cb0ad9bcfb1188214fae3eaec13f84379ba710a09a5a SHA512 322188223d03b48f09123ef8b8e13dff3b256f190a42d81655707b9fd4707d8ca147a2f859346ba691a54a76b8b3cc5504485aca8f0bd7bd7bf0f13cfba1692e
DIST oxygen-5.14.3.tar.xz 4479292 BLAKE2B 5c1a0c9b3abd7c5823081b7a1b69d510ebab297a9573c066285107ebedeb23a1eb7ccf6811e11322278d5f4940dfa7ff5273a59610f7ec97883b3e4100f74516 SHA512 9ea74fed0228d9431cef6e51fb24a7c59c4070055ae10ee87b25c04b01c7652df97bb7f09b62402cfa71ad27936905b9db3a1a69f73710f40683c5b33a302336

@ -1,46 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="Oxygen visual style for the Plasma desktop"
HOMEPAGE="https://cgit.kde.org/oxygen.git"
KEYWORDS="~amd64 ~arm ~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}
$(add_plasma_dep kde-cli-tools)
!kde-plasma/kdebase-cursors:4
"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package wayland KF5Wayland)
)
kde5_src_configure
}

@ -1,3 +1,2 @@
DIST plasma-desktop-5.12.7.tar.xz 9204292 BLAKE2B 90d7e659b2ba25975ae5883f783671cbd661388429bdac4afb9459f4d56771bf535166be75fcdc055a94a3072edc938155502bf1e9c9950c4e18f6ef0858d26d SHA512 671108c3c1c46bc0dfdbc2eb1438654c84ee3bc098c137466ab28d230651f20251894b3008a030a0c3bf2aa4904cca61418c458f41a023042630c6f80d4bf41d
DIST plasma-desktop-5.13.5.tar.xz 9141164 BLAKE2B f48ab6648cb1c7c289b5a2cce670db774aa53cbd81095cd4aa60414d05a0fac1e460fde115d5d38dd639a7746b1ad83971e38b28841aa430cec3f318e3509930 SHA512 3dd8f27e0127f7568aeee3871ce2f0732267ef50f9659a4a2715eca65bdf8cc5cbd2ca5e39a261cbbf0d1127c9c153f1c2d279729b636184353c6fbb699c4383
DIST plasma-desktop-5.14.3.tar.xz 9141312 BLAKE2B f6be5a432abac3835b7a6102a755f7bfc8809ef851c498ecc57ca2026fadcf7aebc2cf5c4e8b11198551cdaca04eff0607fd0d7ebcfd47a33fb4fd739e1eaf42 SHA512 52ce17321a0dd153446e9e334102ab2f6579e84595c53641864a660969ae410272f4762b345397fd00e9f6e936ce097e179d0b69a62341fa97b7b6b0b1ec38bd

@ -1,161 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_HANDBOOK="forceoptional"
KDE_TEST="true"
VIRTUALX_REQUIRED="test"
inherit kde5
DESCRIPTION="KDE Plasma desktop"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="appstream +fontconfig ibus +mouse pulseaudio scim +semantic-desktop touchpad"
COMMON_DEPEND="
$(add_frameworks_dep attica)
$(add_frameworks_dep kactivities)
$(add_frameworks_dep kactivities-stats)
$(add_frameworks_dep karchive)
$(add_frameworks_dep kauth)
$(add_frameworks_dep kbookmarks)
$(add_frameworks_dep kcmutils)
$(add_frameworks_dep kcodecs)
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep kdeclarative)
$(add_frameworks_dep kded)
$(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep kemoticons)
$(add_frameworks_dep kglobalaccel)
$(add_frameworks_dep kguiaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
$(add_frameworks_dep kitemmodels)
$(add_frameworks_dep kitemviews)
$(add_frameworks_dep kjobwidgets)
$(add_frameworks_dep knewstuff)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep knotifyconfig)
$(add_frameworks_dep kparts)
$(add_frameworks_dep kpeople)
$(add_frameworks_dep krunner)
$(add_frameworks_dep kservice)
$(add_frameworks_dep kwallet)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep plasma)
$(add_frameworks_dep solid)
$(add_frameworks_dep sonnet)
$(add_plasma_dep kwin)
$(add_plasma_dep plasma-workspace)
$(add_qt_dep qtconcurrent)
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
$(add_qt_dep qtnetwork)
$(add_qt_dep qtprintsupport)
$(add_qt_dep qtsql)
$(add_qt_dep qtsvg)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtx11extras)
$(add_qt_dep qtxml)
media-libs/phonon[qt5(+)]
x11-libs/libX11
x11-libs/libXcursor
x11-libs/libXfixes
x11-libs/libXi
x11-libs/libxcb
x11-libs/libxkbfile
appstream? ( >=dev-libs/appstream-0.12.2[qt5] )
fontconfig? (
media-libs/fontconfig
media-libs/freetype
x11-libs/libXft
x11-libs/xcb-util-image
)
ibus? (
$(add_qt_dep qtx11extras)
app-i18n/ibus
dev-libs/glib:2
x11-libs/libxcb
x11-libs/xcb-util-keysyms
)
pulseaudio? (
dev-libs/glib:2
media-libs/libcanberra
media-sound/pulseaudio
)
scim? ( app-i18n/scim )
semantic-desktop? ( $(add_frameworks_dep baloo) )
touchpad? ( x11-drivers/xf86-input-synaptics )
"
DEPEND="${COMMON_DEPEND}
dev-libs/boost
x11-base/xorg-proto
fontconfig? ( x11-libs/libXrender )
mouse? (
x11-drivers/xf86-input-evdev
x11-drivers/xf86-input-libinput
)
"
RDEPEND="${COMMON_DEPEND}
$(add_frameworks_dep qqc2-desktop-style)
$(add_plasma_dep breeze)
$(add_plasma_dep kde-cli-tools)
$(add_plasma_dep oxygen)
$(add_qt_dep qtgraphicaleffects)
sys-apps/util-linux
x11-apps/setxkbmap
pulseaudio? ( $(add_plasma_dep plasma-pa ) )
!kde-apps/kcontrol
!<kde-apps/kde4-l10n-17.08.1-r1
!kde-apps/knetattach[handbook]
!kde-misc/kcm-touchpad
!kde-plasma/plasma-desktop:4
!kde-plasma/plasma-workspace:4
!kde-plasma/solid-actions-kcm:4
!kde-plasma/systemsettings:4
"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package appstream AppStreamQt)
$(cmake-utils_use_find_package fontconfig Fontconfig)
$(cmake-utils_use_find_package ibus IBus)
$(cmake-utils_use_find_package mouse Evdev)
$(cmake-utils_use_find_package pulseaudio PulseAudio)
$(cmake-utils_use_find_package scim SCIM)
$(cmake-utils_use_find_package semantic-desktop KF5Baloo)
$(cmake-utils_use_find_package touchpad Synaptics)
)
kde5_src_configure
}
src_test() {
# parallel tests fail, foldermodeltest,positionertest hang, bug #646890
# needs D-Bus, bug #634166
local myctestargs=(
-j1
-E "(foldermodeltest|positionertest|test_kio_fonts)"
)
kde5_src_test
}
pkg_postinst() {
kde5_pkg_postinst
if has_version "x11-libs/gtk+:2" && ! has_version "dev-libs/libappindicator:2"; then
elog "For GTK+2 applications legacy-systray support, please install dev-libs/libappindicator:2."
fi
if has_version "x11-libs/gtk+:3" && ! has_version "dev-libs/libappindicator:3"; then
elog "For GTK+3 applications legacy-systray support, please install dev-libs/libappindicator:3."
fi
}

@ -1,3 +1,2 @@
DIST plasma-integration-5.12.7.tar.xz 53776 BLAKE2B 578d644aed72e7166898db13e8e8209b0285c388fec47b82e0495239a0685e07a848b36991988d42758db2cf02c46962e4cf01335071ec60283e97bc553bfa45 SHA512 b33b1b2d044f36b3dad8bf854acb9a1f94be527c9c9b84d18a58323ab249a63276ee91553b6d92fd77b347a52d6dc4c10c080e0333dd31d4ef1f6058cb557fe0
DIST plasma-integration-5.13.5.tar.xz 53704 BLAKE2B e3bc607fa7270e8f4c7ea686fc4c44f1c47a476a596fa1db646fd3fa729cdd47adb13ae158f4bb2dcf6fecf4ae9feed982438a80b34cb11b9e9abada40d8d67a SHA512 84fadaadda3d91d0ce9a17a2e52dcbb459925a2b20555891219f878df490a52101591da956a06e6362e427a3298499f503924406c28286b4c1b1594f864a6db2
DIST plasma-integration-5.14.3.tar.xz 54088 BLAKE2B 743e4e1083339f3b78cffbd66a54d0363c05b2ca0dd3e456c180b0a39b880c9f6f07fd522e1993e35247dbaaeb330671da44462a0e156c84cfc10619ed642e98 SHA512 8078936e3db9c24a5ea05aaa826b5a69a4f12ae36e7c7e958776dc5b1d12d1d29a45a7f4ebd4f030409f7ecdb40e1f1a57bc859bd75a1ed6106ed74a122b2e23

@ -1,43 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
VIRTUALX_REQUIRED="test"
inherit kde5
DESCRIPTION="Qt Platform Theme integration plugins for the Plasma workspaces"
LICENSE="LGPL-2+"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE=""
DEPEND="
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
$(add_frameworks_dep kjobwidgets)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep kwayland)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
$(add_plasma_dep breeze)
$(add_qt_dep qtdbus)
$(add_qt_dep qtgui 'dbus' '' '5=')
$(add_qt_dep qtquickcontrols2)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtx11extras)
x11-libs/libXcursor
x11-libs/libxcb
"
RDEPEND="${DEPEND}
media-fonts/hack
media-fonts/noto
"
# requires running kde environment
RESTRICT+=" test"

@ -1,76 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5-functions
DESCRIPTION="Merge this to pull in all Plasma 5 packages"
HOMEPAGE="https://www.kde.org/workspaces/plasmadesktop/"
LICENSE="metapackage"
SLOT="5"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="bluetooth crypt +display-manager grub gtk +handbook legacy-systray
networkmanager pam plymouth pulseaudio +sddm sdk +wallpapers"
RDEPEND="
$(add_plasma_dep breeze)
$(add_plasma_dep drkonqi)
$(add_plasma_dep kactivitymanagerd)
$(add_plasma_dep kde-cli-tools)
$(add_plasma_dep kdecoration)
$(add_plasma_dep kdeplasma-addons)
$(add_plasma_dep kgamma)
$(add_plasma_dep khotkeys)
$(add_plasma_dep kinfocenter)
$(add_plasma_dep kmenuedit)
$(add_plasma_dep kscreen)
$(add_plasma_dep kscreenlocker)
$(add_plasma_dep ksshaskpass)
$(add_plasma_dep ksysguard)
$(add_plasma_dep kwayland-integration)
$(add_plasma_dep kwin)
$(add_plasma_dep kwrited)
$(add_plasma_dep libkscreen)
$(add_plasma_dep libksysguard)
$(add_plasma_dep milou)
$(add_plasma_dep oxygen)
$(add_plasma_dep plasma-desktop)
$(add_plasma_dep plasma-integration)
$(add_plasma_dep plasma-workspace)
$(add_plasma_dep polkit-kde-agent)
$(add_plasma_dep powerdevil)
$(add_plasma_dep systemsettings)
$(add_plasma_dep user-manager)
bluetooth? ( $(add_plasma_dep bluedevil) )
crypt? ( $(add_plasma_dep plasma-vault) )
display-manager? (
sddm? (
$(add_plasma_dep sddm-kcm)
x11-misc/sddm
)
!sddm? ( x11-misc/lightdm )
)
grub? ( $(add_plasma_dep breeze-grub) )
gtk? (
$(add_plasma_dep breeze-gtk)
$(add_plasma_dep kde-gtk-config)
legacy-systray? (
dev-libs/libappindicator:3
dev-libs/libappindicator:2
)
)
handbook? ( $(add_kdeapps_dep khelpcenter) )
networkmanager? ( $(add_plasma_dep plasma-nm) )
pam? ( $(add_plasma_dep kwallet-pam) )
plymouth? (
$(add_plasma_dep breeze-plymouth)
$(add_plasma_dep plymouth-kcm)
)
pulseaudio? ( $(add_plasma_dep plasma-pa) )
sdk? ( $(add_plasma_dep plasma-sdk) )
wallpapers? ( $(add_plasma_dep plasma-workspace-wallpapers) )
"
REQUIRED_USE="legacy-systray? ( gtk )"

@ -1,3 +1,2 @@
DIST plasma-nm-5.12.7.tar.xz 707240 BLAKE2B d6355e2a0ce181144842871c9335a02968d53f95d587f5d7fa982de33e64d6642a2ef450ba98052526f5114777f516daa801b42424e8bd48d65f3a334eca7aa3 SHA512 1727a113c2c48485d2864ca48d4bf7b05cec8fdeaf41bca2c6c0820a8f5665b77530b846eba4512aebe7c13362573154146f94538bee533c268781e70c462e56
DIST plasma-nm-5.13.5.tar.xz 705984 BLAKE2B 0a00bb3696ebc4ee5f26746cb1c1e9ef14e456abf448faf17d8ddb919f272354a88969ac54447ac626640d260c8bc1c4ffe3a578e3d2683c5efdf80d9b7d9a4b SHA512 13c0c5c27a5d01cf20093f314ff620658688fb10dfa052419b54f37e6de20fc947b120c7c9f3df5b3e8f3d92a1e701674c917456dbfb681c94e06a1da0456ead
DIST plasma-nm-5.14.3.tar.xz 718288 BLAKE2B 6fc68e0bf8661519889bead3b816cd51159dd1f48fb4243e4e8adb2097d9297d33d8246947ac92170d0290855f8b80f344d1f456e24c1f2007fa5333b3fc7bea SHA512 6337c35407074c649645df447b0502fce853115514e28fd216be0738bb35c86c3ec8313780ef6d7e4df3836c44851d644a07190c2333a1bb583e612056bc22a2

@ -1,75 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="KDE Plasma applet for NetworkManager"
LICENSE="GPL-2 LGPL-2.1"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="modemmanager openconnect teamd"
DEPEND="
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep kdeclarative)
$(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
$(add_frameworks_dep kitemviews)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep kservice)
$(add_frameworks_dep kwallet)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep networkmanager-qt 'teamd=')
$(add_frameworks_dep plasma)
$(add_frameworks_dep solid)
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
$(add_qt_dep qtnetwork)
$(add_qt_dep qtwidgets)
>=app-crypt/qca-2.1.1:2[qt5(+)]
net-misc/networkmanager[teamd=]
modemmanager? (
$(add_frameworks_dep modemmanager-qt)
$(add_qt_dep qtxml)
net-misc/mobile-broadband-provider-info
)
openconnect? (
$(add_qt_dep qtxml)
net-misc/networkmanager-openconnect
net-vpn/openconnect:=
)
"
RDEPEND="${DEPEND}
$(add_plasma_dep kde-cli-tools)
!kde-plasma/plasma-nm:4
"
src_configure() {
local mycmakeargs=(
-DDISABLE_MODEMMANAGER_SUPPORT=$(usex !modemmanager)
$(cmake-utils_use_find_package modemmanager KF5ModemManagerQt)
$(cmake-utils_use_find_package openconnect OpenConnect)
)
kde5_src_configure
}
pkg_postinst() {
kde5_pkg_postinst
if ! has_version "kde-plasma/plasma-workspace:5"; then
elog "${PN} is not terribly useful without kde-plasma/plasma-workspace:5."
elog "However, the networkmanagement KCM can be called from either systemsettings"
elog "or manually: $ kcmshell5 kcm_networkmanagement"
fi
}

@ -1,3 +1,2 @@
DIST plasma-pa-5.12.7.tar.xz 88284 BLAKE2B 34ccb14229716bcd5d74d92fe82852a413606d7f2dd1ed69c00daac3c78f5e4a485e3ea0f4ed57ee3dbfd2340208d62173d68a3311155b648fbfa580e19614e5 SHA512 07d9fb3bca31d737069e3d2f122a3d6a77f2dbf26c4dbd1c5c515da5db5667da1d3305b0a08eab6abc83582825fc9468b185a2f1dcbc733ddab649ad0cbe78d9
DIST plasma-pa-5.13.5.tar.xz 90692 BLAKE2B 783fcf99ca9547818564370d1745c99b943409d8c0617844462fd74af94e34d00f392765525f422c245429838e75fae846e938e6bb039b7c27a0817ccf821eda SHA512 58667b60b4c9dc8f81d7defe35b7dab23f52b8e6e2bde3ce242b6d3e3f959335d3dadc855a12d2b04fa01da9243bf0408011e87a649bd6132b48c2eec964813f
DIST plasma-pa-5.14.3.tar.xz 94724 BLAKE2B 5f4088ca4278852af15575c00a973b1d32563b39f05a6cc8eee0962e728e662b4e4862134dedf860167a6535fcc225807c2d3a6fe859058b5dcc12cd441e06a3 SHA512 174eb9449188e3b97c0476874ee79f8f54074c9dc40c47c09cebe680af1539cd8f144c2d6afe79b821e44c22eb9049e1aa8232cf01895d5d4e8e3a02ae973df5

@ -1,29 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_HANDBOOK="forceoptional"
inherit kde5
DESCRIPTION="Plasma applet for audio volume management using PulseAudio"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND="
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdeclarative)
$(add_frameworks_dep kglobalaccel)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep plasma)
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
dev-libs/glib:2
gnome-base/gconf:2
media-libs/libcanberra
media-sound/pulseaudio[gnome]
"
RDEPEND="${DEPEND}"

@ -1,3 +1,2 @@
DIST plasma-sdk-5.12.7.tar.xz 245872 BLAKE2B c96941fb41d6343e631b8c7571e9112432f8b0886332d2e0225c86abaf8d95565e60444139af572e7d906a13736ee51b5a6f76538e606c0cdf9c06a240f116c5 SHA512 a12ed059838e282e72772b9113ebdb8977525dc76a2c3d8c377871e7157c9c78de87d1e11ce704123df0b39c3c0f5e48b533b69404367f917557804c372a8c8c
DIST plasma-sdk-5.13.5.tar.xz 250032 BLAKE2B 0269457091da4d462450883eeb7a7d7ccc26bb59804a8fe6ce04c131a77f2f0146060717479ace02f2f9b629b77188f44ac8d1217094e2a6d2429a3dc2b86c00 SHA512 bf73297d8d62c5336c1cb8c6c3e5918efce0a2a069c1b76f4e0c2b6d421aa3ee37f427a3f22c17d2b045af9a807a4104ab142d95b5c92f71237a72ffacd709f6
DIST plasma-sdk-5.14.3.tar.xz 250856 BLAKE2B 4607654ebc9a0eaabc7f4a0cc5ea2bb697d6dac90131aae4b4366febfa23a44e73910d14890b6bd64d8fc36ce16fd12b4220fb17862cbf00186004ec0d3ec15c SHA512 9610abafb27147a398fb5bff28f2aa3ec367cf062fb1804e987da410786086c8f8c8d6def464b2924ebe24b37c2369d5f75e5c8c12f412b68e398cdb8682ca35

@ -1,39 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_TEST="optional"
VIRTUALX_REQUIRED="test"
inherit kde5
DESCRIPTION="Useful applications for Plasma development"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND="
$(add_frameworks_dep karchive)
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep kdeclarative)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
$(add_frameworks_dep kpackage)
$(add_frameworks_dep kservice)
$(add_frameworks_dep ktexteditor)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep plasma)
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
"
RDEPEND="${DEPEND}
!dev-util/plasmate
$(add_frameworks_dep kirigami)
"

@ -1,3 +1,2 @@
DIST plasma-vault-5.12.7.tar.xz 106780 BLAKE2B 75f6ebd3b4f6eaa565e6abc318632577a74488dc0a6e21dfe20df74c2562bb34ef85050ca5b0a18d02f7781c7b10c1588030bfec01b99712212c6ae6c850fdba SHA512 fc628ebaeb7b8ff24ca91290c3a0c27ef47b4245d1ca4766eabbdc5a59010b99375bb6128f36719be97261b7b11283a46759b37bc11211ac60e9dfc0d5c56e47
DIST plasma-vault-5.13.5.tar.xz 114908 BLAKE2B 8043b46b5f8c0d2b6f22e6afedabc3b8116aadf47a5cdd1ca690ba2a232e5b6b7deb8de3bfd58a3566880f0b6c445e5d8ddec3165a6b74ecbf5d51ee3c981422 SHA512 f6579fd9134039c105f3399818520077e080a603459ad20d08825f00f341930dd84c0e6cb1ced8d722efd941a40751e7025a74098c4c1d4daca3b8f284fe38bd
DIST plasma-vault-5.14.3.tar.xz 121448 BLAKE2B 554ad3ce9699ae937c5bb0759f994a4cbf53d72606e9eb6fae5bd39136be3c47a4fa5aecb9eda335f13e939fb349d37088e389ea7036ad97ed348837a3197e11 SHA512 243c9201644f0c1408f5911e21eacd447d2f13133fec6bfdd540fdc7e49afd59fc0f5c090d315b6b48bfcd42848fb6f2d9738c14701f8815e719c6e1f18a1456

@ -1,34 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="Plasma applet and services for creating encrypted vaults"
HOMEPAGE+=" https://cukic.co/2017/02/03/vaults-encryption-in-plasma/"
LICENSE="LGPL-3"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND="
$(add_frameworks_dep kactivities)
$(add_frameworks_dep kcodecs)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kio)
$(add_frameworks_dep plasma)
$(add_frameworks_dep kwidgetsaddons)
$(add_plasma_dep libksysguard)
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
"
RDEPEND="${DEPEND}
|| ( >=sys-fs/encfs-1.9.2 sys-fs/cryfs )
"

@ -1,3 +1,2 @@
DIST plasma-workspace-wallpapers-5.12.7.tar.xz 45917468 BLAKE2B 5becc9cb005942a884add3c0792df5b5fb176f9f32bad1592e1dad1a0b3cc7b45d66e4946f537e6f9e5143c4ba12cdc81a07787797579b8f4bc2c20ffbaf8a0f SHA512 7abda6e4cf223a72222ab2f2b3d8deb631b7ce1e6a415697c367acb53ae5f653fc8dbf6ddd631ff7a1888c2293d102bc0ba1753e50419138f7c9d7d2ea5f08a9
DIST plasma-workspace-wallpapers-5.13.5.tar.xz 45916196 BLAKE2B e483fcdff5d72867ed0e6a10ba004b748f89b04d71b320910a5654c8dc7ebf3658a97050c619a9115cc5a26fe3fe13baf812cb8f2ab58fa1a9a5f06436c8cb6b SHA512 51010cc3da749dc494bc5677b42efba408149110feb1320175fdc71044b777f13cd700511d1766b7dfdbdb98c29b7bdae6898f08ccd05517bd991de7c83974f3
DIST plasma-workspace-wallpapers-5.14.3.tar.xz 45915252 BLAKE2B bb1a8676bad8747512884dd35fcfa2ecd8b8fa76ecc55a9e81b34ced6df36a1663e220ef2551ba9ca75b998b54d1599429efc4da22fd37a85ea369c99ecd9a25 SHA512 6dd8dcf7c7e24eb905eefd347527bd4132187b5cf2a26d3d2f40306c95d1565e36bcc27b349f6db9a7960cbf9ef3ab5c36b77e73e48bed8fba13e352ef85b981

@ -1,18 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_AUTODEPS="false"
KDE_DEBUG="false"
inherit kde5
DESCRIPTION="Additional wallpapers for the Plasma workspace"
KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
IUSE=""
DEPEND="
$(add_frameworks_dep extra-cmake-modules)
$(add_qt_dep qtcore)
"
RDEPEND="!<kde-apps/kde-wallpapers-15.08.3-r2"

@ -1,3 +1,2 @@
DIST plasma-workspace-5.12.7.tar.xz 4574632 BLAKE2B 225a63a199f0644e68e25316adc85c11818c0a8e57fbfa64188233a1172f819aa98920b96f9bd1039355651005f4df35f376104e1cdcb511d82ef43eba1eb89c SHA512 e9d4a85b11264eebbce0845eefa5d01818e944c2179d5cbc3e23b720118894d88fbfe96467c68849a3fa89728cecff248cd7f9dfc0ab133e50dad28ecc957623
DIST plasma-workspace-5.13.5.tar.xz 4577444 BLAKE2B 4aef4cc12762113bb193f62a2a400b6cc53390ec1ff800048bc6f41391ed8a9228e1afd6379425d6e636f1d229d9cc9bb3d976515026c874fa27a3fe29bc0499 SHA512 f30dc3ea83ec3e2a754fb531be24b1f573e743724abcd7df88f83daba07b3bf360f2e6b5c7d2a54a8dd5c15a39e73123d6f2a00730d09f1caed08002c2da24d6
DIST plasma-workspace-5.14.3.tar.xz 4584420 BLAKE2B 50975eef224435e4359447fb0ea8f2ed447cd459860071bbdd32ac2239e0e8ab035fe2703474c856bc3ca173cfddd2d4166d281ca2fa2b6e2c355d19ee2f45ee SHA512 c79ffa14874f5ef1b476ebd5586f7175dcce1190601af3e75d8d0186aca8cb526c94b1445624d75b6a0dbc5bb780673d0c361aa49c5e5752a4639bba75af42a0

@ -1,170 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_HANDBOOK="forceoptional"
KDE_TEST="forceoptional"
VIRTUALX_REQUIRED="test"
inherit kde5 qmake-utils
DESCRIPTION="KDE Plasma workspace"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="appstream +calendar geolocation gps prison qalculate +semantic-desktop systemd"
REQUIRED_USE="gps? ( geolocation )"
COMMON_DEPEND="
$(add_frameworks_dep kactivities)
$(add_frameworks_dep kauth)
$(add_frameworks_dep kbookmarks)
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kcrash)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep kdeclarative)
$(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep kglobalaccel)
$(add_frameworks_dep kguiaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kidletime)
$(add_frameworks_dep kio)
$(add_frameworks_dep kitemmodels)
$(add_frameworks_dep kitemviews)
$(add_frameworks_dep kjobwidgets)
$(add_frameworks_dep kjs)
$(add_frameworks_dep kjsembed)
$(add_frameworks_dep knewstuff)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep knotifyconfig)
$(add_frameworks_dep kpackage)
$(add_frameworks_dep krunner)
$(add_frameworks_dep kservice)
$(add_frameworks_dep ktexteditor)
$(add_frameworks_dep ktextwidgets)
$(add_frameworks_dep kwallet)
$(add_frameworks_dep kwayland)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep plasma)
$(add_frameworks_dep solid)
$(add_plasma_dep kscreenlocker)
$(add_plasma_dep kwin)
$(add_plasma_dep libksysguard)
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative 'widgets')
$(add_qt_dep qtgui 'jpeg')
$(add_qt_dep qtnetwork)
$(add_qt_dep qtscript)
$(add_qt_dep qtsql)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtx11extras)
$(add_qt_dep qtxml)
media-libs/phonon[qt5(+)]
sys-libs/zlib
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXau
x11-libs/libxcb
x11-libs/libXfixes
x11-libs/libXrender
x11-libs/libXtst
x11-libs/xcb-util
x11-libs/xcb-util-image
appstream? ( dev-libs/appstream[qt5] )
calendar? ( $(add_frameworks_dep kholidays) )
geolocation? ( $(add_frameworks_dep networkmanager-qt) )
gps? ( sci-geosciences/gpsd )
prison? ( $(add_frameworks_dep prison) )
qalculate? ( sci-libs/libqalculate:= )
semantic-desktop? ( $(add_frameworks_dep baloo) )
"
RDEPEND="${COMMON_DEPEND}
$(add_frameworks_dep kded)
$(add_frameworks_dep kdesu)
$(add_kdeapps_dep kio-extras)
$(add_plasma_dep kde-cli-tools)
$(add_plasma_dep ksysguard)
$(add_plasma_dep milou)
$(add_plasma_dep plasma-integration)
$(add_qt_dep qdbus)
$(add_qt_dep qtgraphicaleffects)
$(add_qt_dep qtpaths)
$(add_qt_dep qtquickcontrols 'widgets')
app-text/iso-codes
x11-apps/mkfontdir
x11-apps/xmessage
x11-apps/xprop
x11-apps/xrdb
x11-apps/xset
x11-apps/xsetroot
systemd? ( sys-apps/dbus[user-session] )
!systemd? ( sys-apps/dbus )
!kde-plasma/freespacenotifier:4
!kde-plasma/libtaskmanager:4
!kde-plasma/kcminit:4
!kde-plasma/kdebase-startkde:4
!kde-plasma/klipper:4
!kde-plasma/krunner:4
!kde-plasma/ksmserver:4
!kde-plasma/ksplash:4
!kde-plasma/plasma-workspace:4
"
DEPEND="${COMMON_DEPEND}
$(add_qt_dep qtconcurrent)
x11-base/xorg-proto
"
PATCHES=(
"${FILESDIR}/${PN}-5.4-startkde-script.patch"
"${FILESDIR}/${PN}-5.10-startplasmacompositor-script.patch"
"${FILESDIR}/${PN}-5.10.4-unused-dep.patch"
)
RESTRICT+=" test"
src_prepare() {
kde5_src_prepare
sed -e "s|\`qtpaths|\`$(qt5_get_bindir)/qtpaths|" \
-i startkde/startkde.cmake startkde/startplasmacompositor.cmake || die
}
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package appstream AppStreamQt)
$(cmake-utils_use_find_package calendar KF5Holidays)
$(cmake-utils_use_find_package geolocation KF5NetworkManagerQt)
$(cmake-utils_use_find_package prison KF5Prison)
$(cmake-utils_use_find_package qalculate Qalculate)
$(cmake-utils_use_find_package semantic-desktop KF5Baloo)
)
use gps && mycmakeargs+=( $(cmake-utils_use_find_package gps libgps) )
kde5_src_configure
}
src_install() {
kde5_src_install
# startup and shutdown scripts
insinto /etc/plasma/startup
doins "${FILESDIR}/10-agent-startup.sh"
insinto /etc/plasma/shutdown
doins "${FILESDIR}/10-agent-shutdown.sh"
}
pkg_postinst () {
kde5_pkg_postinst
elog "To enable gpg-agent and/or ssh-agent in Plasma sessions,"
elog "edit ${EPREFIX}/etc/plasma/startup/10-agent-startup.sh and"
elog "${EPREFIX}/etc/plasma/shutdown/10-agent-shutdown.sh"
}

@ -1,3 +1,2 @@
DIST plymouth-kcm-5.12.7.tar.xz 39500 BLAKE2B eb7d9e8ac77b936c9cdd522fe48edf8538b23227f1d01fd715bce7e8c35eeeb8cd1e80215ac2c58f9268bf3516c7e7a0d05a39f082e3819dae83583d134ed754 SHA512 9b1e0456794b26c7630d88f3c6e568c8e13d77bfc70c89bd6631db51f06d82c6a8508a587290400f5be0ba96a5c78c92a9a0cabea40b201283fb8dc6ae2d45e5
DIST plymouth-kcm-5.13.5.tar.xz 39612 BLAKE2B 7b47ac2c6eccbd423180110b70ee2bd4f68da541ac6538e7ae8c2adbce2d0ceb1170abe6c35a8ee3b15f5c974879364f1249b57c626b9a1be5c76b0a0941fc5e SHA512 4f97e85782454a80d9e08ed472d26b6e25ba4681b44a9a1abb3664a52a1cb11c43dd35f043ed3dfd289becfcccd42ca45be354498b2128d3f2d28fed557854a0
DIST plymouth-kcm-5.14.3.tar.xz 39660 BLAKE2B 2f183a2348820b2214089b01ebd6e827fa0221347f84f696a6cdae5e4c84363297c01c07b571d5a97b5930e12de8fe797da2275f413717266d769fed3e2ebde6 SHA512 6024b44cb0c567d405c398f33bb242c1256032660e4a7f2a575db4c7b70bf3b35de8ae3491a76be96b9de9e24dcd84d3345797a2978dbbcc53c96c312b4e4d59

@ -1,36 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
BOGUS=1
inherit kde5
DESCRIPTION="KDE Plasma control module for Plymouth"
HOMEPAGE="https://cgit.kde.org/plymouth-kcm.git"
LICENSE="GPL-2+"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND="
$(add_frameworks_dep karchive)
$(add_frameworks_dep kauth)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdeclarative)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kio)
$(add_frameworks_dep knewstuff)
$(add_frameworks_dep kwidgetsaddons)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
$(add_qt_dep qtquickcontrols)
$(add_qt_dep qtwidgets)
sys-boot/plymouth
"
RDEPEND="${DEPEND}
$(add_plasma_dep kde-cli-tools)
"
DOCS=( CONTRIBUTORS )

@ -1,3 +1,2 @@
DIST polkit-kde-agent-1-5.12.7.tar.xz 42280 BLAKE2B 99dcda17826ace1099508f7a1a28a7196c3ae5b7e46f082083102f7c1bca765ced37685db9ff0172d313ccdac778c3b0960e098c2922dc204786870eea925f2a SHA512 76fe764b3f0c9b1c1447ca0fe6d594fe19475c0294c0cc655cfc72957559e84d5805e20cb1901cc42bf67385b4aadc7e69f57feb6f2e52aa89f7872d30b7bc93
DIST polkit-kde-agent-1-5.13.5.tar.xz 42916 BLAKE2B 7ce6b938fe5acba332b565eabc67eef337ba74e6c393768c64cb09288c0273fb8940fe6de1ae0126881e781449e9b8ac24cc8062a1442c77cd8172894568f9ac SHA512 a66c410bf55d64088287de4b29fdc4ee8e41e283df3bd9e49b2403c54a6433d3d4638f7902374b8d2d5e3c0bf6add42c55b80ccc53bf886df3cbda4613902955
DIST polkit-kde-agent-1-5.14.3.tar.xz 42844 BLAKE2B 29518813e2a6642282cf7151f632aba3e9573edcfa73fbb8a11498dbac575f76802edb29d37199cd6d203e4750c31591d23d65d2e2259b908b7bdc6d1d2ba33b SHA512 6c4f616a11a2f741bdb85f7146f604ef9a9c89b957ca5507f5bc9ec8b5c3848f5392d886340ff4f089655c1fdcb144eb82f12d43102ce163333adbd2629ea445

@ -1,30 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KMNAME="${PN}-1"
inherit kde5
DESCRIPTION="PolKit agent module for KDE Plasma"
HOMEPAGE="https://www.kde.org"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE=""
DEPEND="
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kcrash)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_qt_dep qtdbus)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
>=sys-auth/polkit-qt-0.112.0[qt5(+)]
"
RDEPEND="${DEPEND}
!sys-auth/polkit-kde-agent:4[-minimal(-)]
!sys-auth/polkit-kde-agent:5
"

@ -1,3 +1,2 @@
DIST powerdevil-5.12.7.tar.xz 537708 BLAKE2B f5d85d191b740e11acf718886001ebda997fe1196f53813099a18a35cd4d17f1061269354035296ce8cf5aecfe20181b017f2c97165368a729ee3f6a53908c16 SHA512 e85f93f494d2ce86676269c1bfe49d59a855bbcd5f260bc3205e3b2ef38de5dd17ee47397eca3280e9dcb484c80b79c670a1b2e089891d5090e9ee935504d4c9
DIST powerdevil-5.13.5.tar.xz 597764 BLAKE2B 910422fb97a732f640800dd786566ab4029fca7b4dabae776ed4fa0fe85eaeb81338f6421607af113fcf509a831170061b92c1352af5fc24d87ca8640dc4a0f1 SHA512 d2ac3196b80297da62872f6078dc65ebaca7805cff3a0325c45127d6e19d4d54f305e5a6b190e03414c2a189bb236bb8e04353fe5403ea38e54077fc7dd2e167
DIST powerdevil-5.14.3.tar.xz 599436 BLAKE2B 0d971be6e007cb1c7e29534f45ec6942ed6172acc9700a6a9d7c7eff4c93fd32313824e3ac05a35fee2cffe9e8f024798db2887c015b00a5c1b1eb61a2c35b7a SHA512 2dd9482efef0bfe407bef2f48e57a08d00a74238d19b2bd6c2874ed602a90e30c15e17ea114ae368fbfa3a9fb914207758dcee2f5d0d6340e7eddebebfd6064a

@ -1,67 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_HANDBOOK="true"
inherit kde5
DESCRIPTION="Power management for KDE Plasma Shell"
HOMEPAGE="https://cgit.kde.org/powerdevil.git"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="consolekit +wireless"
DEPEND="
$(add_frameworks_dep kactivities)
$(add_frameworks_dep kauth policykit)
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kcrash)
$(add_frameworks_dep kdbusaddons)
$(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep kglobalaccel)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kidletime)
$(add_frameworks_dep kio)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep knotifyconfig)
$(add_frameworks_dep kservice)
$(add_frameworks_dep kwayland)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep solid)
$(add_plasma_dep libkscreen)
$(add_plasma_dep plasma-workspace)
$(add_qt_dep qtdbus)
$(add_qt_dep qtgui)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtx11extras)
virtual/libudev:=
x11-libs/libxcb
wireless? (
$(add_frameworks_dep bluez-qt)
$(add_frameworks_dep networkmanager-qt)
)
"
RDEPEND="${DEPEND}
$(add_plasma_dep kde-cli-tools)
>=sys-power/upower-0.9.23
consolekit? (
>=sys-auth/consolekit-1.0.1
sys-power/pm-utils
)
!kde-plasma/powerdevil:4
!kde-plasma/systemsettings:4[handbook]
"
src_configure() {
local mycmakeargs=(
-DWITH_DDCUTIL=OFF
$(cmake-utils_use_find_package wireless KF5BluezQt)
$(cmake-utils_use_find_package wireless KF5NetworkManagerQt)
)
kde5_src_configure
}

@ -1,3 +1,2 @@
DIST sddm-kcm-5.12.7.tar.xz 60712 BLAKE2B e6c82d0b43c7038b4c6733e0883974993f338e6b94b2c1b9d4eeda051d48c72e31ced992fda32ba2e772b496fac0bca76b62850020f3fa222e4540d96c1a5eef SHA512 29d7b03378a6d5a3d58a0c2b85f6dbe4d0114785456072f16872cd09e7ce355f4e59149e31cb69fe7fbb35678c6fc075c788a091c3b638661a64a856aa4a145b
DIST sddm-kcm-5.13.5.tar.xz 60560 BLAKE2B 8a335f49471fc4f763247b1f207eb15eb0d30ca1268dd5fa855301f2cd691319859dc1291c0156ed8053a8910eebea24d8f1f47a270a9106e8ae57fe6959b64f SHA512 b535efa9115bf6c8ce9351f89e09b90f445fb5cbbd931a68af8f7f09633af87f2ffe4545eab53778012c2e45a8214f11383b4e41c5e92724a171e1ab1843c479
DIST sddm-kcm-5.14.3.tar.xz 60940 BLAKE2B 2cb3594e935a3010d23b33f333eae52e24ee987536e42e21ec3fcd28b428761d21d799e5ef589439e5fd271835b3c3bc0d762ad2e450e82ba2a202120fa1a267 SHA512 0458a6e624e3d882f0e42d5c8a1b14d030d33fab463dd5cb46149e4e70604f1563dd075efe89561d68372f768b1c2045f9c1cb23e59e23f07ddd702a293038be

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save