summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-emulation/firejail/firejail-0.9.36_rc1.ebuild')
-rw-r--r--app-emulation/firejail/firejail-0.9.36_rc1.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/app-emulation/firejail/firejail-0.9.36_rc1.ebuild b/app-emulation/firejail/firejail-0.9.36_rc1.ebuild
deleted file mode 100644
index fa7238d..0000000
--- a/app-emulation/firejail/firejail-0.9.36_rc1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-#inherit
-
-DESCRIPTION="a SUID sandbox program using linux namespaces"
-HOMEPAGE="https://l3net.wordpress.com/projects/firejail/"
-SRC_URI="https://github.com/netblue30/${PN}/archive/${PV/_/-}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+bind +chroot +seccomp"
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}-${PV/_/-}"
-
-src_prepare() {
- local -a EXTRA_ECONF;
- sed \
- -e '/\tstrip/d' \
- -i Makefile.in
- sed \
- -e 's#/usr/bin/zsh#/bin/zsh#g' \
- -i \
- src/man/${PN}.txt \
- src/${PN}/usage.c \
- src/${PN}/sandbox.c \
- src/${PN}/main.c
-}
-
-src_configure() {
- for flag in ${IUSE}; do
- EXTRA_ECONF+=( $(use_enable "${flag/+}") )
- done
- EXTRA_ECONF="${EXTRA_ECONF[@]}"
- default
-}
-