summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps/sydbox/sydbox-1.0.7.ebuild')
-rw-r--r--sys-apps/sydbox/sydbox-1.0.7.ebuild35
1 files changed, 0 insertions, 35 deletions
diff --git a/sys-apps/sydbox/sydbox-1.0.7.ebuild b/sys-apps/sydbox/sydbox-1.0.7.ebuild
deleted file mode 100644
index 951a50fa3a49..000000000000
--- a/sys-apps/sydbox/sydbox-1.0.7.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="ptrace-based sandbox"
-HOMEPAGE="https://git.exherbo.org/sydbox-1.git"
-SRC_URI="http://distfiles.exherbo.org/distfiles/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="debug seccomp test"
-
-RDEPEND="sys-libs/pinktrace:=
- debug? ( sys-libs/libunwind:= )"
-DEPEND="${RDEPEND}
- test? ( !<sys-apps/sandbox-2.13 )"
-
-src_configure() {
- local myconf=(
- $(use_enable debug)
- $(use_enable seccomp)
- )
-
- econf "${myconf[@]}"
-}
-
-src_test() {
- # unload the Gentoo sandbox
- local -x SANDBOX_ON=0
- local -x LD_PRELOAD=
-
- emake check
-}