diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2016-10-01 15:24:39 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2016-10-01 15:25:25 -0700 |
commit | 3cabac399d2e3228da9969679d32e644fb1fa39c (patch) | |
tree | 6adc9b2ec3d533588aacfeccedfd01c52d437230 /sys-block/blktrace/blktrace-1.1.0-r1.ebuild | |
parent | dev-python/botocore: remove version 1.4.51 (diff) | |
download | gentoo-3cabac399d2e3228da9969679d32e644fb1fa39c.tar.gz gentoo-3cabac399d2e3228da9969679d32e644fb1fa39c.tar.bz2 gentoo-3cabac399d2e3228da9969679d32e644fb1fa39c.zip |
sys-block/blktrace: fix rename from bad PR.
Package-Manager: portage-2.2.28
RepoMan-Options: --force
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'sys-block/blktrace/blktrace-1.1.0-r1.ebuild')
-rw-r--r-- | sys-block/blktrace/blktrace-1.1.0-r1.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/sys-block/blktrace/blktrace-1.1.0-r1.ebuild b/sys-block/blktrace/blktrace-1.1.0-r1.ebuild new file mode 100644 index 000000000000..0278e0ca9889 --- /dev/null +++ b/sys-block/blktrace/blktrace-1.1.0-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils toolchain-funcs flag-o-matic linux-info + +MY_PN="blktrace" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="btrace can show detailed info about what is happening on a block device io queue" +HOMEPAGE="http://git.kernel.dk/cgit/blktrace/" +SRC_URI="http://brick.kernel.dk/snaps/${MY_P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~amd64 ~arm ~ppc ~x86" +IUSE="doc" + +RDEPEND="dev-libs/libaio" +# This is a Linux specific app! +DEPEND="${RDEPEND} + sys-kernel/linux-headers + doc? ( virtual/latex-base app-text/dvipdfm )" +S="${WORKDIR}/${MY_P}" + +CONFIG_CHECK="~BLK_DEV_IO_TRACE" +WARNING_BLK_DEV_IO_TRACE="you need to enable BLK_DEV_IO_TRACE kernel option if you want to gather traces from this machine" + +PATCHES=( "${FILESDIR}"/${PN}-1.1.0-ldflags-parallel-make.patch ) + +src_compile() { + append-flags -DLVM_REMAP_WORKAROUND -W -I"${S}" + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" + if use doc; then + export VARTEXFONTS="${T}/fonts" + emake docs + fi +} + +src_install() { + emake install DESTDIR="${D}" prefix="/usr" mandir="/usr/share/man" + einstalldocs + use doc && dodoc doc/blktrace.pdf btt/doc/btt.pdf +} |