Gentoo Archives: gentoo-commits

From: "Andreas Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/pipebench/
Date: Sat, 08 Apr 2017 21:05:33
Message-Id: 1491685521.800a25ad113240717dbcec37e028ac2aac5389ca.dilfridge@gentoo
1 commit: 800a25ad113240717dbcec37e028ac2aac5389ca
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 8 21:05:21 2017 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 8 21:05:21 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=800a25ad
7
8 app-benchmarks/pipebench: Remove old
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 app-benchmarks/pipebench/pipebench-0.40-r1.ebuild | 34 -----------------------
13 1 file changed, 34 deletions(-)
14
15 diff --git a/app-benchmarks/pipebench/pipebench-0.40-r1.ebuild b/app-benchmarks/pipebench/pipebench-0.40-r1.ebuild
16 deleted file mode 100644
17 index 8a6239e3f19..00000000000
18 --- a/app-benchmarks/pipebench/pipebench-0.40-r1.ebuild
19 +++ /dev/null
20 @@ -1,34 +0,0 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="3"
25 -
26 -inherit toolchain-funcs
27 -
28 -DESCRIPTION="Measures the speed of stdin/stdout communication"
29 -HOMEPAGE="http://www.habets.pp.se/synscan/programs.php?prog=pipebench"
30 -SRC_URI="ftp://ftp.habets.pp.se/pub/synscan/${P}.tar.gz"
31 -
32 -LICENSE="GPL-2"
33 -SLOT="0"
34 -KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86 ~arm-linux ~x86-linux"
35 -IUSE=""
36 -
37 -src_prepare() {
38 - sed -i Makefile \
39 - -e 's:CFLAGS=-Wall:CFLAGS+= -Wall:' \
40 - -e 's:$(CFLAGS) -o:$(LDFLAGS) &:g' \
41 - -e "s:/usr/local/bin/:${ED}/usr/bin:" \
42 - -e "s:/usr/local/man/man1/:${ED}/usr/share/man/man1:" \
43 - || die "sed Makefile"
44 -}
45 -
46 -src_compile() {
47 - emake CC=$(tc-getCC) || die
48 -}
49 -
50 -src_install() {
51 - dodir /usr/{bin,share/man/man1}
52 - emake install || die
53 - dodoc README
54 -}