diff options
author | Dennis Lamm <expeditioneer@gentoo.org> | 2020-07-23 15:14:28 +0200 |
---|---|---|
committer | Dennis Lamm <expeditioneer@gentoo.org> | 2020-08-22 12:17:48 +0200 |
commit | 7821208c43c08e1c373d232932a07f7f799d3573 (patch) | |
tree | b5e08db4ba24293e6dad6a59f26367dec3c511a2 /sys-apps/firejail-lts | |
parent | sys-apps/firejail: drop old (diff) | |
download | gentoo-7821208c43c08e1c373d232932a07f7f799d3573.tar.gz gentoo-7821208c43c08e1c373d232932a07f7f799d3573.tar.bz2 gentoo-7821208c43c08e1c373d232932a07f7f799d3573.zip |
sys-apps/firejail: don't call CC directly
Closes: https://bugs.gentoo.org/725606
Signed-off-by: Dennis Lamm <expeditioneer@gentoo.org>
Diffstat (limited to 'sys-apps/firejail-lts')
-rw-r--r-- | sys-apps/firejail-lts/firejail-lts-0.9.56.2-r2.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/sys-apps/firejail-lts/firejail-lts-0.9.56.2-r2.ebuild b/sys-apps/firejail-lts/firejail-lts-0.9.56.2-r2.ebuild new file mode 100644 index 000000000000..162766f95cd6 --- /dev/null +++ b/sys-apps/firejail-lts/firejail-lts-0.9.56.2-r2.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Security sandbox for any type of processes; LTS version" +HOMEPAGE="https://firejail.wordpress.com/" + +MY_PN=firejail + +SRC_URI="https://github.com/netblue30/${MY_PN}/archive/${PV}-LTS.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64" +IUSE="apparmor +globalcfg +network +seccomp +suid +userns test +whitelist" +RESTRICT="!test? ( test )" + +DEPEND="!sys-apps/firejail + apparmor? ( sys-libs/libapparmor ) + test? ( dev-tcltk/expect )" + +RDEPEND="apparmor? ( sys-libs/libapparmor )" + +PATCHES=( "${FILESDIR}/${PN}-fix-compressed-manpages.patch" ) + +S="${WORKDIR}/${MY_PN}-${PV}-LTS" + +src_prepare() { + default + + find -type f -name Makefile.in | xargs sed --in-place --regexp-extended \ + --expression='/^\tinstall .*COPYING /d' \ + --expression='/CFLAGS/s: (-O2|-ggdb) : :g' || die + + sed --in-place --regexp-extended '/CFLAGS/s: (-O2|-ggdb) : :g' ./src/common.mk.in || die +} + +src_configure() { + econf \ + $(use_enable apparmor) \ + $(use_enable globalcfg) \ + $(use_enable network) \ + $(use_enable seccomp) \ + $(use_enable suid) \ + $(use_enable userns) \ + $(use_enable whitelist) +} + +src_compile() { + emake CC="$(tc-getCC)" +} |