diff options
Diffstat (limited to 'dev-util/bcc/bcc-0.3.0.ebuild')
-rw-r--r-- | dev-util/bcc/bcc-0.3.0.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/dev-util/bcc/bcc-0.3.0.ebuild b/dev-util/bcc/bcc-0.3.0.ebuild deleted file mode 100644 index 4c73ab15df1c..000000000000 --- a/dev-util/bcc/bcc-0.3.0.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) - -inherit cmake-utils linux-info python-single-r1 python-utils-r1 - -DESCRIPTION="Tools for BPF-based Linux IO analysis, networking, monitoring, and more" -HOMEPAGE="https://iovisor.github.io/bcc/" -EGIT_COMMIT="v${PV}" -SRC_URI="https://github.com/iovisor/bcc/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz - https://github.com/iovisor/bcc/commit/76887992d786064213af87694d2a21745e579338.patch -> bcc-0.3.0-llvm5-76887992d786064213af87694d2a21745e579338.patch" -RESTRICT="test" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -RDEPEND=">=dev-libs/elfutils-0.166:= - sys-devel/clang:= - >=sys-devel/llvm-3.7:=[llvm_targets_BPF(+)] - ${PYTHON_DEPS}" -DEPEND="${RDEPEND}" -S=${WORKDIR}/${PN}-${EGIT_COMMIT#v} - -PATCHES=( - "${DISTDIR}/bcc-0.3.0-llvm5-76887992d786064213af87694d2a21745e579338.patch" -) - -pkg_pretend() { - local CONFIG_CHECK="~BPF ~BPF_SYSCALL ~NET_CLS_BPF ~NET_ACT_BPF - ~BPF_JIT ~BPF_EVENTS" - - check_extra_config -} - -pkg_setup() { - python-single-r1_pkg_setup -} - -src_configure() { - local mycmakeargs=( - -DREVISION=${PV%%_*} - ) - - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - python_fix_shebang "${ED}" -} |