diff options
author | Yixun Lan <dlan@gentoo.org> | 2014-03-04 06:52:00 +0000 |
---|---|---|
committer | Yixun Lan <dlan@gentoo.org> | 2014-03-04 06:52:00 +0000 |
commit | 5e966d28031768405e0c93db2007d2098d6b05da (patch) | |
tree | cef322331ca08660de339574145ba68e307e2343 /dev-util/lttng-ust | |
parent | initial version added, 2.4.0 (diff) | |
download | gentoo-2-5e966d28031768405e0c93db2007d2098d6b05da.tar.gz gentoo-2-5e966d28031768405e0c93db2007d2098d6b05da.tar.bz2 gentoo-2-5e966d28031768405e0c93db2007d2098d6b05da.zip |
initial version added, 2.4.0
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
Diffstat (limited to 'dev-util/lttng-ust')
-rw-r--r-- | dev-util/lttng-ust/ChangeLog | 10 | ||||
-rw-r--r-- | dev-util/lttng-ust/lttng-ust-2.4.0.ebuild | 27 | ||||
-rw-r--r-- | dev-util/lttng-ust/metadata.xml | 12 |
3 files changed, 49 insertions, 0 deletions
diff --git a/dev-util/lttng-ust/ChangeLog b/dev-util/lttng-ust/ChangeLog new file mode 100644 index 000000000000..3a7b429fc4c3 --- /dev/null +++ b/dev-util/lttng-ust/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-util/lttng-ust +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/lttng-ust/ChangeLog,v 1.1 2014/03/04 06:52:00 dlan Exp $ + +*lttng-ust-2.4.0 (04 Mar 2014) + + 04 Mar 2014; Yixun Lan <dlan@gentoo.org> +lttng-ust-2.4.0.ebuild, + +metadata.xml: + initial version added, 2.4.0 + diff --git a/dev-util/lttng-ust/lttng-ust-2.4.0.ebuild b/dev-util/lttng-ust/lttng-ust-2.4.0.ebuild new file mode 100644 index 000000000000..4712f9fe49eb --- /dev/null +++ b/dev-util/lttng-ust/lttng-ust-2.4.0.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/lttng-ust/lttng-ust-2.4.0.ebuild,v 1.1 2014/03/04 06:52:00 dlan Exp $ + +EAPI=5 + +inherit autotools + +MY_P="${P/_rc/-rc}" +DESCRIPTION="Linux Trace Toolkit - UST library" +HOMEPAGE="http://lttng.org" +SRC_URI="http://lttng.org/files/${PN}/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples" + +DEPEND="dev-libs/userspace-rcu" +RDEPEND="${DEPEND}" + +src_prepare() { + if ! use examples; then + sed -i -e '/SUBDIRS/s:examples::' doc/Makefile.am || die + fi + eautoreconf +} diff --git a/dev-util/lttng-ust/metadata.xml b/dev-util/lttng-ust/metadata.xml new file mode 100644 index 000000000000..1c98ff2ecd20 --- /dev/null +++ b/dev-util/lttng-ust/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>dlan@gentoo.org</email> + <name>Yixun Lan</name> + </maintainer> + + <longdescription> + The userspace tracer is designed to provide detailed information about userspace activity. UST is a port of the LTTng kernel tracer to userspace. Like the LTTng kernel tracer, performance is the main goal. Tracing does not require system calls or traps. UST instrumentation points may be added in any userspace code including signal handlers and libraries. + </longdescription> +</pkgmetadata> |