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 1E7191382C5 for ; Mon, 16 Apr 2018 07:48:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C9EAE079E; Mon, 16 Apr 2018 07:48:16 +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 DC12EE079E for ; Mon, 16 Apr 2018 07:48:15 +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 3E0F3335C7F for ; Mon, 16 Apr 2018 07:48:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F4EB28B for ; Mon, 16 Apr 2018 07:48:12 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1523864886.c3c949743e9ea38e8a3a0785784c791e5ce6ea36.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/file/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/file/file-9999.ebuild X-VCS-Directories: sys-apps/file/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: c3c949743e9ea38e8a3a0785784c791e5ce6ea36 X-VCS-Branch: master Date: Mon, 16 Apr 2018 07:48:12 +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: 78e6db45-4178-4c3f-90e8-554e0142b8ea X-Archives-Hash: 848488e1095392ae5243b92f7a52e328 commit: c3c949743e9ea38e8a3a0785784c791e5ce6ea36 Author: Lars Wendler gentoo org> AuthorDate: Mon Apr 16 07:48:06 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Apr 16 07:48:06 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3c94974 sys-apps/file: Added "seccomp" USE flag to live ebuild. Package-Manager: Portage-2.3.28, Repoman-2.3.9 sys-apps/file/file-9999.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sys-apps/file/file-9999.ebuild b/sys-apps/file/file-9999.ebuild index 3c9e2e50e4a..5f51b583c40 100644 --- a/sys-apps/file/file-9999.ebuild +++ b/sys-apps/file/file-9999.ebuild @@ -21,7 +21,7 @@ HOMEPAGE="https://www.darwinsys.com/file/" LICENSE="BSD-2" SLOT="0" -IUSE="python static-libs zlib" +IUSE="python seccomp static-libs zlib" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" DEPEND=" @@ -31,7 +31,8 @@ DEPEND=" ) zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )" RDEPEND="${DEPEND} - python? ( !dev-python/python-magic )" + python? ( !dev-python/python-magic ) + seccomp? ( sys-libs/libseccomp )" src_prepare() { default @@ -46,6 +47,7 @@ src_prepare() { multilib_src_configure() { local myeconfargs=( --enable-fsect-man5 + $(use_enable seccomp libseccomp) $(use_enable static-libs static) $(use_enable zlib) ) @@ -70,7 +72,7 @@ src_configure() { LDFLAGS="${BUILD_LDFLAGS} -static" \ CC=${BUILD_CC} \ CXX=${BUILD_CXX} \ - econf --disable-shared + econf --disable-shared $(use_enable seccomp libseccomp) fi multilib-minimal_src_configure