# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="5" inherit eutils flag-o-matic DESCRIPTION="Library to deal with DWARF Debugging Information Format" HOMEPAGE="https://github.com/Distrotech/libdwarf" SRC_URI="https://github.com/Distrotech/${PN}/archive/${PV}.tar.gz" LICENSE="GPL-2 LGPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="" RDEPEND="${DEPEND}" S="${WORKDIR}/${P}/${PN}" # dirty hack, since I can't properly patch buildsystem QA_PREBUILT="*/${PN}.so" src_configure() { econf --enable-shared } src_install() { dolib.a libdwarf.a || die dolib.so libdwarf.so || die insinto /usr/include doins libdwarf.h || die dodoc NEWS README CHANGES || die }