From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 854D21396D0 for ; Sat, 12 Aug 2017 11:47:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7ED0E0EA6; Sat, 12 Aug 2017 11:47:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B6AC6E0EA6 for ; Sat, 12 Aug 2017 11:47:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E8D48341A77 for ; Sat, 12 Aug 2017 11:47:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE2437686 for ; Sat, 12 Aug 2017 11:47:32 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1502538443.2d2c0ed424a77cad1a8755bf4ec34ddbc79bcb93.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/kscreenlocker/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-plasma/kscreenlocker/kscreenlocker-5.10.4.ebuild X-VCS-Directories: kde-plasma/kscreenlocker/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 2d2c0ed424a77cad1a8755bf4ec34ddbc79bcb93 X-VCS-Branch: master Date: Sat, 12 Aug 2017 11:47:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9a208bc9-2f8f-49dd-9409-5635d614dc93 X-Archives-Hash: 14696b8830d4027baced0f53fc0821eb commit: 2d2c0ed424a77cad1a8755bf4ec34ddbc79bcb93 Author: Michael Palimaka gentoo org> AuthorDate: Sat Aug 12 11:46:18 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Aug 12 11:47:23 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d2c0ed4 kde-plasma/kscreenlocker: introduce seccomp USE flag Package-Manager: Portage-2.3.6, Repoman-2.3.3 kde-plasma/kscreenlocker/kscreenlocker-5.10.4.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kde-plasma/kscreenlocker/kscreenlocker-5.10.4.ebuild b/kde-plasma/kscreenlocker/kscreenlocker-5.10.4.ebuild index 8a520afa58b..9f98dbc088a 100644 --- a/kde-plasma/kscreenlocker/kscreenlocker-5.10.4.ebuild +++ b/kde-plasma/kscreenlocker/kscreenlocker-5.10.4.ebuild @@ -9,7 +9,7 @@ inherit kde5 pam DESCRIPTION="Library and components for secure lock screen architecture" KEYWORDS="~amd64 ~arm ~arm64 ~x86" -IUSE="+pam" +IUSE="+pam seccomp" COMMON_DEPEND=" $(add_frameworks_dep kcmutils) @@ -40,6 +40,7 @@ COMMON_DEPEND=" x11-libs/libxcb x11-libs/xcb-util-keysyms pam? ( virtual/pam ) + seccomp? ( sys-libs/libseccomp ) " DEPEND="${COMMON_DEPEND} x11-proto/xproto @@ -71,6 +72,7 @@ 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 }