# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=4 inherit autotools DESCRIPTION="An open-source multi-platform crash reporting system" HOMEPAGE="http://code.google.com/p/google-breakpad/" SRC_URI="mirror://github/jauhien/sources/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~x86" IUSE="" src_prepare() { eautoreconf } src_install() { emake DESTDIR="${D}" install # Install headers that some programs require to build. cd "${S}" insinto /usr/include/google_breakpad/client/linux/handler doins src/client/linux/handler/exception_handler.h insinto /usr/include/google_breakpad/common doins src/google_breakpad/common/*.h insinto /usr/include/google_breakpad/client/linux/minidump_writer doins src/client/linux/minidump_writer/*.h insinto /usr/include/google_breakpad/client/linux/crash_generation doins src/client/linux/crash_generation/*.h insinto /usr/include/google_breakpad/processor doins src/processor/scoped_ptr.h }