Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/tpipe/
Date: Tue, 05 Jul 2016 07:28:40
Message-Id: 1467701788.41503f368acc28be69196c60c87eab6f5175ea1f.monsieurp@gentoo
1 commit: 41503f368acc28be69196c60c87eab6f5175ea1f
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 5 06:56:28 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 5 06:56:28 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41503f36
7
8 app-misc/tpipe: EAPI 6 bump.
9
10 Package-Manager: portage-2.2.28
11
12 app-misc/tpipe/tpipe-1.6-r1.ebuild | 26 ++++++++++++++++++++++++++
13 1 file changed, 26 insertions(+)
14
15 diff --git a/app-misc/tpipe/tpipe-1.6-r1.ebuild b/app-misc/tpipe/tpipe-1.6-r1.ebuild
16 new file mode 100644
17 index 0000000..bf27758
18 --- /dev/null
19 +++ b/app-misc/tpipe/tpipe-1.6-r1.ebuild
20 @@ -0,0 +1,26 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +inherit toolchain-funcs
28 +
29 +DESCRIPTION="Command to duplicate standard input to more than one program"
30 +HOMEPAGE="http://www.eurogaran.com/downloads/tpipe"
31 +SRC_URI="http://www.eurogaran.com/downloads/tpipe/${P}.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~ppc ~x86"
36 +IUSE=""
37 +
38 +src_compile() {
39 + emake OPTFLAGS="-ansi -pedantic ${CFLAGS}" PREFIX=/usr CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}"
40 +}
41 +
42 +src_install() {
43 + dobin "${PN}"
44 + doman "${PN}.1"
45 + dodoc README.txt
46 +}