# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-libs/libsmbios/libsmbios-0.13.2.ebuild,v 1.2 2007/03/05 22:21:57 cedk Exp $ DESCRIPTION="Provide access to (SM)BIOS information" HOMEPAGE="http://linux.dell.com/libsmbios/main/index.html" SRC_URI="http://linux.dell.com/libsmbios/download/libsmbios/${P}/${P}.tar.gz" LICENSE="GPL-2 OSL-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND="dev-libs/libxml2 sys-libs/zlib" RDEPEND=${DEPEND} src_compile() { econf || die "econf failed" emake || die "emake failed" } src_install() { emake install DESTDIR="${D}" || die "emake install failed" insinto /usr/include/ doins -r include/smbios/ dodoc AUTHORS ChangeLog NEWS README TODO }