Ryan Harrison | ddded7c | 2013-02-26 15:45:52 -0500 | [diff] [blame^] | 1 | # Copyright 1999-2013 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/dev-util/lcov/lcov-1.10.ebuild,v 1.1 2013/02/04 08:48:33 patrick Exp $ |
| 4 | |
| 5 | EAPI="4" |
| 6 | |
| 7 | inherit eutils |
| 8 | |
| 9 | DESCRIPTION="A graphical front-end for GCC's coverage testing tool gcov" |
| 10 | HOMEPAGE="http://ltp.sourceforge.net/coverage/lcov.php" |
| 11 | SRC_URI="mirror://sourceforge/ltp/${P}.tar.gz" |
| 12 | |
| 13 | LICENSE="GPL-2" |
| 14 | SLOT="0" |
| 15 | KEYWORDS="amd64 ~arm ~ppc ~x86 ~x86-linux ~x64-macos" |
| 16 | IUSE="" |
| 17 | |
| 18 | DEPEND="" |
| 19 | RDEPEND=">=dev-lang/perl-5 |
| 20 | dev-perl/GD[png]" |
| 21 | |
| 22 | src_prepare() { |
| 23 | epatch "${FILESDIR}"/00_geninfo-gcov-4.7_format_parsing.patch |
| 24 | } |
| 25 | |
| 26 | src_compile() { :; } |
| 27 | |
| 28 | src_install() { |
| 29 | emake PREFIX="${ED}" install |
| 30 | } |