# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/vbetool/vbetool-0.3.ebuild,v 1.1 2005/08/08 21:39:05 robbat2 Exp $ inherit eutils DESCRIPTION="Run real-mode video BIOS code to alter hardware state (i.e. reinitialize video card)" HOMEPAGE="http://www.srcf.ucam.org/~mjg59/vbetool/" #SRC_URI="${HOMEPAGE}${PN}_${PV}.orig.tar.gz" SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${P//-/_}-1.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" RDEPEND="sys-apps/pciutils" DEPEND="${RDEPEND}" src_unpack() { unpack ${A} epatch ${FILESDIR}/${P}-pci-compile-fix.patch } src_compile() { LIBS="-lpci" econf || die "could not configure" emake || die "emake failed" } src_install() { emake install DESTDIR="${D}" || die "install failed" dodoc LRMI }