From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 29C94138252 for ; Mon, 9 May 2016 19:52:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20678E0877; Mon, 9 May 2016 19:52:38 +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 BD9EAE0877 for ; Mon, 9 May 2016 19:52:37 +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 7AB43340B37 for ; Mon, 9 May 2016 19:52:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C86B331 for ; Mon, 9 May 2016 19:52:29 +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: <1462822658.e928901b04d61474794a5acb71196792d36a011f.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/hilite/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/hilite/hilite-1.5-r1.ebuild X-VCS-Directories: app-misc/hilite/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: e928901b04d61474794a5acb71196792d36a011f X-VCS-Branch: master Date: Mon, 9 May 2016 19:52:29 +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: b84dbd15-8ab7-46a6-bdb2-e4c814dc34d3 X-Archives-Hash: 361e51ee72bc1afc939c788033e1ddc1 commit: e928901b04d61474794a5acb71196792d36a011f Author: Patrice Clement gentoo org> AuthorDate: Mon May 9 19:36:44 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Mon May 9 19:37:38 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e928901b app-misc/hilite: EAPI 6. Package-Manager: portage-2.2.26 app-misc/hilite/hilite-1.5-r1.ebuild | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/app-misc/hilite/hilite-1.5-r1.ebuild b/app-misc/hilite/hilite-1.5-r1.ebuild new file mode 100644 index 0000000..3db014a --- /dev/null +++ b/app-misc/hilite/hilite-1.5-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="A utility which highlights stderr text in red" +HOMEPAGE="http://sourceforge.net/projects/hilite" +SRC_URI="mirror://gentoo/${P}.c" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="" + +S="${WORKDIR}" + +src_unpack() { :; } + +src_prepare() { + default + cp "${DISTDIR}"/${P}.c "${WORKDIR}"/ || die +} + +src_compile() { + ebegin "$(tc-getCC) ${LDFLAGS} ${CFLAGS} -o ${PN} ${P}.c" + $(tc-getCC) ${LDFLAGS} ${CFLAGS} -o ${PN} ${P}.c || die + eend $? +} + +src_install() { + dobin "${PN}" +}