Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/kscreenlocker/
Date: Sat, 12 Aug 2017 11:47:35
Message-Id: 1502538443.2d2c0ed424a77cad1a8755bf4ec34ddbc79bcb93.kensington@gentoo
1 commit: 2d2c0ed424a77cad1a8755bf4ec34ddbc79bcb93
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 12 11:46:18 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 12 11:47:23 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d2c0ed4
7
8 kde-plasma/kscreenlocker: introduce seccomp USE flag
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11
12 kde-plasma/kscreenlocker/kscreenlocker-5.10.4.ebuild | 4 +++-
13 1 file changed, 3 insertions(+), 1 deletion(-)
14
15 diff --git a/kde-plasma/kscreenlocker/kscreenlocker-5.10.4.ebuild b/kde-plasma/kscreenlocker/kscreenlocker-5.10.4.ebuild
16 index 8a520afa58b..9f98dbc088a 100644
17 --- a/kde-plasma/kscreenlocker/kscreenlocker-5.10.4.ebuild
18 +++ b/kde-plasma/kscreenlocker/kscreenlocker-5.10.4.ebuild
19 @@ -9,7 +9,7 @@ inherit kde5 pam
20
21 DESCRIPTION="Library and components for secure lock screen architecture"
22 KEYWORDS="~amd64 ~arm ~arm64 ~x86"
23 -IUSE="+pam"
24 +IUSE="+pam seccomp"
25
26 COMMON_DEPEND="
27 $(add_frameworks_dep kcmutils)
28 @@ -40,6 +40,7 @@ COMMON_DEPEND="
29 x11-libs/libxcb
30 x11-libs/xcb-util-keysyms
31 pam? ( virtual/pam )
32 + seccomp? ( sys-libs/libseccomp )
33 "
34 DEPEND="${COMMON_DEPEND}
35 x11-proto/xproto
36 @@ -71,6 +72,7 @@ src_configure() {
37 local mycmakeargs=(
38 -DPAM_REQUIRED=$(usex pam)
39 $(cmake-utils_use_find_package pam PAM)
40 + $(cmake-utils_use_find_package seccomp Seccomp)
41 )
42 kde5_src_configure
43 }