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 8FAFD139085 for ; Tue, 27 Dec 2016 00:05:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02B95E0C47; Tue, 27 Dec 2016 00:05:50 +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 CE177E0C47 for ; Tue, 27 Dec 2016 00:05:49 +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 824D2341142 for ; Tue, 27 Dec 2016 00:05:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18E6924EB for ; Tue, 27 Dec 2016 00:05:46 +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: <1482797129.be9dc0afd2c1b2cfbb06c7390d674edc123fb243.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: be9dc0afd2c1b2cfbb06c7390d674edc123fb243 X-VCS-Branch: master Date: Tue, 27 Dec 2016 00:05:46 +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: 1dc2c96f-4a56-4fd7-b6d8-e0d5b020c494 X-Archives-Hash: d4784cb9b3855b0ade1f75d0b1329376 commit: be9dc0afd2c1b2cfbb06c7390d674edc123fb243 Author: Patrice Clement gentoo org> AuthorDate: Mon Dec 26 19:59:12 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Tue Dec 27 00:05:29 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be9dc0af app-misc/tpipe: stable for amd64. mark stable for the remaining arches using the ALLARCHES policy. Package-Manager: portage-2.3.0 app-misc/tpipe/tpipe-1.6-r1.ebuild | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/app-misc/tpipe/tpipe-1.6-r1.ebuild b/app-misc/tpipe/tpipe-1.6-r1.ebuild index bf27758..b312f01 100644 --- a/app-misc/tpipe/tpipe-1.6-r1.ebuild +++ b/app-misc/tpipe/tpipe-1.6-r1.ebuild @@ -12,15 +12,19 @@ SRC_URI="http://www.eurogaran.com/downloads/tpipe/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" +KEYWORDS="amd64 ppc x86" + +DOCS=( README.txt ) src_compile() { - emake OPTFLAGS="-ansi -pedantic ${CFLAGS}" PREFIX=/usr CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" + emake OPTFLAGS="-ansi -pedantic ${CFLAGS}" \ + PREFIX=/usr \ + CC="$(tc-getCC)" \ + LDFLAGS="${LDFLAGS}" } src_install() { dobin "${PN}" doman "${PN}.1" - dodoc README.txt + einstalldocs }