blob: ac347bf9f921b4c73c808487152d93cfd50f5e33 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
# cmake generates make-specific code
#: ${CMAKE_MAKEFILE_GENERATOR:=ninja}
inherit linux-mod bash-completion-r1 cmake-utils
DESCRIPTION="A system exploration and troubleshooting tool"
HOMEPAGE="http://www.sysdig.org/"
SRC_URI="https://github.com/draios/sysdig/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+modules"
RDEPEND="
dev-lang/luajit:2=
>=dev-libs/jsoncpp-0.6_pre:0=
dev-libs/libb64:0=
sys-libs/ncurses:0=
sys-libs/zlib:0=
dev-libs/openssl:0=
net-misc/curl:0="
DEPEND="${RDEPEND}
app-arch/xz-utils
virtual/os-headers"
# needed for the kernel module
CONFIG_CHECK="HAVE_SYSCALL_TRACEPOINTS ~TRACEPOINTS"
pkg_pretend() {
use modules && linux-mod_pkg_setup
}
pkg_setup() {
use modules && linux-mod_pkg_setup
}
src_prepare() {
sed -i -e 's:-ggdb::' CMakeLists.txt || die
cmake-utils_src_prepare
}
src_configure() {
local mycmakeargs=(
# we will use linux-mod for that
-DBUILD_DRIVER=OFF
# libscap examples are not installed or really useful
-DBUILD_LIBSCAP_EXAMPLES=OFF
# unbundle the deps
-DUSE_BUNDLED_DEPS=OFF
)
cmake-utils_src_configure
# setup linux-mod ugliness
MODULE_NAMES="sysdig-probe(extra:${BUILD_DIR}/driver:)"
BUILD_PARAMS='KERNELDIR="${KERNEL_DIR}"'
BUILD_TARGETS="driver"
}
src_compile() {
cmake-utils_src_compile
use modules && linux-mod_src_compile
}
src_install() {
cmake-utils_src_install
use modules && linux-mod_src_install
# remove sources
rm -r "${ED%/}"/usr/src || die
# move bashcomp to the proper location
dobashcomp "${ED%/}"/usr/etc/bash_completion.d/sysdig || die
rm -r "${ED%/}"/usr/etc || die
}
|