summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2011-02-03 03:07:06 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2011-02-03 03:07:06 +0000
commit419cccd5fa23c73b28e55a8440e67f51a44385d3 (patch)
tree10f115c09532ed08e41cbaa0d114da9248f355a0 /sys-block/btrace/btrace-0.0.20060428050322.ebuild
parentUpdated patch to include installation of icon and bumped revision (diff)
downloadgentoo-2-419cccd5fa23c73b28e55a8440e67f51a44385d3.tar.gz
gentoo-2-419cccd5fa23c73b28e55a8440e67f51a44385d3.tar.bz2
gentoo-2-419cccd5fa23c73b28e55a8440e67f51a44385d3.zip
Revamp the parallel build improvements. Bug #335741: respect LDFLAGS. Bug #348281: Fix USE=doc building missing DEPEND. Bug #269121: Remove old versions where SRC_URI is no longer valid.
(Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
Diffstat (limited to 'sys-block/btrace/btrace-0.0.20060428050322.ebuild')
-rw-r--r--sys-block/btrace/btrace-0.0.20060428050322.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/sys-block/btrace/btrace-0.0.20060428050322.ebuild b/sys-block/btrace/btrace-0.0.20060428050322.ebuild
deleted file mode 100644
index d0b42e909a3d..000000000000
--- a/sys-block/btrace/btrace-0.0.20060428050322.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-block/btrace/btrace-0.0.20060428050322.ebuild,v 1.6 2009/09/23 20:29:31 patrick Exp $
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="btrace can show detailed info about what is happening on a block device io queue."
-HOMEPAGE="http://www.kernel.org/pub/linux/kernel/people/axboe/blktrace/"
-# this is in case Jens ever releases a real version
-MY_PV="${PV/0.0.}"
-MY_PN="blktrace"
-MY_P="${MY_PN}-${MY_PV}"
-SRC_URI="mirror://kernel/linux/kernel/people/axboe/${MY_PN}/${MY_P}.tar.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc"
-IUSE="doc"
-RDEPEND=""
-# This is a Linux specific app!
-DEPEND="${RDEPEND}
- || ( sys-kernel/linux-headers sys-kernel/mips-headers )
- doc? ( virtual/latex-base )"
-S="${WORKDIR}/${MY_PN}"
-
-src_compile() {
- emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall -W" || die "emake failed"
- if use doc; then
- emake docs || die "emake docs failed"
- fi
-}
-
-src_install() {
- emake install DESTDIR="${D}" prefix="/usr" || die "emake install failed"
- dodoc README
- use doc && doc/blktrace.pdf
-}