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 B586A138334 for ; Tue, 4 Dec 2018 22:16:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C8C0E0D7B; Tue, 4 Dec 2018 22:16:46 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4025BE0D7B for ; Tue, 4 Dec 2018 22:16:45 +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 18C83335CD9 for ; Tue, 4 Dec 2018 22:16:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7516A4CD for ; Tue, 4 Dec 2018 22:16:41 +0000 (UTC) From: "Amadeusz Piotr Żołnowski" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Amadeusz Piotr Żołnowski" Message-ID: <1543961773.a4b8ed5f3e50cc472b7edcb824ea9b2b60272358.aidecoe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/firejail/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/firejail/firejail-0.9.56-r1.ebuild X-VCS-Directories: sys-apps/firejail/ X-VCS-Committer: aidecoe X-VCS-Committer-Name: Amadeusz Piotr Żołnowski X-VCS-Revision: a4b8ed5f3e50cc472b7edcb824ea9b2b60272358 X-VCS-Branch: master Date: Tue, 4 Dec 2018 22:16:41 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 01cc0d99-d049-4929-a964-f334539b40e9 X-Archives-Hash: f83e5493757869bc008fca8e75422ba6 commit: a4b8ed5f3e50cc472b7edcb824ea9b2b60272358 Author: Amadeusz Piotr Żołnowski gentoo org> AuthorDate: Tue Dec 4 22:15:24 2018 +0000 Commit: Amadeusz Piotr Żołnowski gentoo org> CommitDate: Tue Dec 4 22:16:13 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4b8ed5f sys-apps/firejail: Prepare for xpra removal Signed-off-by: Amadeusz Piotr Żołnowski gentoo.org> sys-apps/firejail/firejail-0.9.56-r1.ebuild | 47 +++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/sys-apps/firejail/firejail-0.9.56-r1.ebuild b/sys-apps/firejail/firejail-0.9.56-r1.ebuild new file mode 100644 index 00000000000..6da35dbc147 --- /dev/null +++ b/sys-apps/firejail/firejail-0.9.56-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils + +DESCRIPTION="Security sandbox for any type of processes" +HOMEPAGE="https://firejail.wordpress.com/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="apparmor +chroot contrib +file-transfer +network + +seccomp suid +userns x11" + +DEPEND="!sys-apps/firejail-lts + apparmor? ( sys-libs/libapparmor )" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/${PV}-contrib-fix.patch" ) + +RESTRICT=test + +src_prepare() { + default + find -name Makefile.in -exec sed -i -r \ + -e '/^\tinstall .*COPYING /d' \ + -e '/CFLAGS/s: (-O2|-ggdb) : :g' \ + -e '1iCC=@CC@' {} + || die +} + +src_configure() { + local myeconfargs=( + $(use_enable apparmor) + $(use_enable chroot) + $(use_enable contrib contrib-install) + $(use_enable file-transfer) + $(use_enable network) + $(use_enable seccomp) + $(use_enable suid) + $(use_enable userns) + $(use_enable x11) + ) + econf "${myeconfargs[@]}" +}