diff options
author | 2016-02-18 15:34:41 +0800 | |
---|---|---|
committer | 2016-02-18 15:43:31 +0800 | |
commit | f049ef9cda34f1734d7482b50fee6f86b8cf83a7 (patch) | |
tree | 0fbf991cb45e9ddf48f032498fbe5fd551525282 /dev-util/lttng-tools/lttng-tools-2.7.1.ebuild | |
parent | ev-util/lttng-ust: version bump (diff) | |
download | gentoo-f049ef9cda34f1734d7482b50fee6f86b8cf83a7.tar.gz gentoo-f049ef9cda34f1734d7482b50fee6f86b8cf83a7.tar.bz2 gentoo-f049ef9cda34f1734d7482b50fee6f86b8cf83a7.zip |
dev-util/lttng-tools: version bump
Package-Manager: portage-2.2.27
Diffstat (limited to 'dev-util/lttng-tools/lttng-tools-2.7.1.ebuild')
-rw-r--r-- | dev-util/lttng-tools/lttng-tools-2.7.1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild b/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild new file mode 100644 index 000000000000..7f5af9aa935a --- /dev/null +++ b/dev-util/lttng-tools/lttng-tools-2.7.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit linux-info versionator + +MY_P="${P/_rc/-rc}" +MY_SLOT="$(get_version_component_range 1-2)" + +DESCRIPTION="Linux Trace Toolkit - next generation" +HOMEPAGE="http://lttng.org" +SRC_URI="http://lttng.org/files/${PN}/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0/${MY_SLOT}" +KEYWORDS="~amd64 ~x86" +IUSE="+ust" + +DEPEND="dev-libs/userspace-rcu + dev-libs/popt + dev-libs/libxml2 + ust? ( dev-util/lttng-ust:= ) +" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" + +pkg_pretend() { + if kernel_is -lt 2 6 27; then + ewarn "${PN} require Linux kernel >= 2.6.27" + ewarn " pipe2(), epoll_create1() and SOCK_CLOEXEC are needed to run" + ewarn " the session daemon. There were introduce in the 2.6.27" + fi +} + +src_configure() { + econf $(use_enable ust lttng-ust) +} |