# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=5 inherit base IUSE="" DESCRIPTION="library for making GDB readable cores from multithreaded programs" HOMEPAGE="https://code.google.com/p/google-coredumper/" SRC_URI="https://google-coredumper.googlecode.com/files/${P}.tar.gz" SLOT="0" LICENSE="BSD" KEYWORDS="~x86 ~sparc ~amd64 -*" DEPEND="" src_prepare() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/fix_from_scratch_build.patch } src_install() { make DESTDIR="${D}" install || die "make install failed" dodoc README ChangeLog TODO }