From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 48D011382EE for ; Tue, 5 Jul 2016 07:28:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2898A14010; Tue, 5 Jul 2016 07:28:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A2AEC14010 for ; Tue, 5 Jul 2016 07:28:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 40958340D52 for ; Tue, 5 Jul 2016 07:28:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8ED342433 for ; Tue, 5 Jul 2016 07:28:33 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1467701788.41503f368acc28be69196c60c87eab6f5175ea1f.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/tpipe/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/tpipe/tpipe-1.6-r1.ebuild X-VCS-Directories: app-misc/tpipe/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 41503f368acc28be69196c60c87eab6f5175ea1f X-VCS-Branch: master Date: Tue, 5 Jul 2016 07:28:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: df029d97-99a9-4292-8f95-4a8f42360922 X-Archives-Hash: aa60db7e5dbf39edd48782148f470a8f commit: 41503f368acc28be69196c60c87eab6f5175ea1f Author: Patrice Clement gentoo org> AuthorDate: Tue Jul 5 06:56:28 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Tue Jul 5 06:56:28 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41503f36 app-misc/tpipe: EAPI 6 bump. Package-Manager: portage-2.2.28 app-misc/tpipe/tpipe-1.6-r1.ebuild | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/app-misc/tpipe/tpipe-1.6-r1.ebuild b/app-misc/tpipe/tpipe-1.6-r1.ebuild new file mode 100644 index 0000000..bf27758 --- /dev/null +++ b/app-misc/tpipe/tpipe-1.6-r1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="Command to duplicate standard input to more than one program" +HOMEPAGE="http://www.eurogaran.com/downloads/tpipe" +SRC_URI="http://www.eurogaran.com/downloads/tpipe/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +src_compile() { + emake OPTFLAGS="-ansi -pedantic ${CFLAGS}" PREFIX=/usr CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" +} + +src_install() { + dobin "${PN}" + doman "${PN}.1" + dodoc README.txt +}