diff options
author | Yixun Lan <dlan@gentoo.org> | 2014-05-16 08:10:16 +0000 |
---|---|---|
committer | Yixun Lan <dlan@gentoo.org> | 2014-05-16 08:10:16 +0000 |
commit | 6c644bf15ceec56310565a6379f3a5398f117671 (patch) | |
tree | ed9e9329bdf6c416feda56b0e8e78fac097f25ec /dev-util/lttng-ust | |
parent | version bump 2.4.1 (diff) | |
download | gentoo-2-6c644bf15ceec56310565a6379f3a5398f117671.tar.gz gentoo-2-6c644bf15ceec56310565a6379f3a5398f117671.tar.bz2 gentoo-2-6c644bf15ceec56310565a6379f3a5398f117671.zip |
version bump 2.4.1
(Portage version: 2.2.10/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 | 7 | ||||
-rw-r--r-- | dev-util/lttng-ust/lttng-ust-2.4.1.ebuild | 27 |
2 files changed, 33 insertions, 1 deletions
diff --git a/dev-util/lttng-ust/ChangeLog b/dev-util/lttng-ust/ChangeLog index 3a7b429fc4c3..d1a57b14e217 100644 --- a/dev-util/lttng-ust/ChangeLog +++ b/dev-util/lttng-ust/ChangeLog @@ -1,6 +1,11 @@ # 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 $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/lttng-ust/ChangeLog,v 1.2 2014/05/16 08:10:16 dlan Exp $ + +*lttng-ust-2.4.1 (16 May 2014) + + 16 May 2014; Yixun Lan <dlan@gentoo.org> +lttng-ust-2.4.1.ebuild: + version bump 2.4.1 *lttng-ust-2.4.0 (04 Mar 2014) diff --git a/dev-util/lttng-ust/lttng-ust-2.4.1.ebuild b/dev-util/lttng-ust/lttng-ust-2.4.1.ebuild new file mode 100644 index 000000000000..0c92c157beeb --- /dev/null +++ b/dev-util/lttng-ust/lttng-ust-2.4.1.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.1.ebuild,v 1.1 2014/05/16 08:10:16 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 +} |