blob: e1943e7842a78be58010d0735f4560d3f91e664b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2017 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"
IUSE="apparmor +bind +chroot contrib +file-transfer +network
network-restricted +seccomp +userns x11"
DEPEND="!sys-apps/firejail-lts
apparmor? ( sys-libs/libapparmor )"
RDEPEND="${DEPEND}
x11? ( x11-wm/xpra[client,server] )"
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 bind)
$(use_enable chroot)
$(use_enable contrib contrib-install)
$(use_enable file-transfer)
$(use_enable network)
$(use_enable seccomp)
$(use_enable userns)
$(use_enable x11)
)
use network-restricted && myeconfargs+=( --enable-network=restricted )
econf "${myeconfargs[@]}"
}
|