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 B286F139694 for ; Mon, 1 May 2017 22:34:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3AE2E0C35; Mon, 1 May 2017 22:34:45 +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 BB736E0C35 for ; Mon, 1 May 2017 22:34:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 93DAB3416DA for ; Mon, 1 May 2017 22:34:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 736DE7441 for ; Mon, 1 May 2017 22:34:41 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1493677929.be5b5ba4a4e33d5eebcc9acf6eea26be18232d84.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/lcov/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/lcov/lcov-1.13-r1.ebuild X-VCS-Directories: dev-util/lcov/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: be5b5ba4a4e33d5eebcc9acf6eea26be18232d84 X-VCS-Branch: master Date: Mon, 1 May 2017 22:34:41 +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: 79d6d997-2901-4cea-b4c6-da49266e90bc X-Archives-Hash: 83c2f1d01f0b361290d4d844bbd67118 commit: be5b5ba4a4e33d5eebcc9acf6eea26be18232d84 Author: Sebastian Pipping gentoo org> AuthorDate: Mon May 1 22:32:09 2017 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Mon May 1 22:32:09 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be5b5ba4 dev-util/lcov: Fix installation prefix (bug #609452) Thanks to Jordan Yelloz for report and patch! Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-util/lcov/lcov-1.13-r1.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/dev-util/lcov/lcov-1.13-r1.ebuild b/dev-util/lcov/lcov-1.13-r1.ebuild new file mode 100644 index 00000000000..6a4c0d034e7 --- /dev/null +++ b/dev-util/lcov/lcov-1.13-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="A graphical front-end for GCC's coverage testing tool gcov" +HOMEPAGE="http://ltp.sourceforge.net/coverage/lcov.php" +SRC_URI="mirror://sourceforge/ltp/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-linux ~x64-macos" +IUSE="" + +DEPEND="" +RDEPEND=">=dev-lang/perl-5 + dev-perl/GD[png]" + +src_compile() { :; } + +src_install() { + emake PREFIX="${ED}/usr" CFG_DIR="${ED}/etc" install +}