diff options
author | 2006-07-26 21:48:55 +0000 | |
---|---|---|
committer | 2006-07-26 21:48:55 +0000 | |
commit | d37101c66ab85bcd59b1be8258eedc2e02606746 (patch) | |
tree | b73b550c34c8bbeb79e121961e19a1065d97af3b /sys-apps/vbetool/vbetool-0.6.ebuild | |
parent | v4l2 cvs plugin (diff) | |
download | zaheerm-d37101c66ab85bcd59b1be8258eedc2e02606746.tar.gz zaheerm-d37101c66ab85bcd59b1be8258eedc2e02606746.tar.bz2 zaheerm-d37101c66ab85bcd59b1be8258eedc2e02606746.zip |
915resolution and vbetool, needed for macbook
svn path=/; revision=10
Diffstat (limited to 'sys-apps/vbetool/vbetool-0.6.ebuild')
-rw-r--r-- | sys-apps/vbetool/vbetool-0.6.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/sys-apps/vbetool/vbetool-0.6.ebuild b/sys-apps/vbetool/vbetool-0.6.ebuild new file mode 100644 index 0000000..e0505a6 --- /dev/null +++ b/sys-apps/vbetool/vbetool-0.6.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/vbetool/vbetool-0.5-r1.ebuild,v 1.1 2006/05/18 18:39:01 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" +#SRC_URI="http://www.srcf.ucam.org/~mjg59/${PN}/${P//-/_}-1.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" +RDEPEND="sys-apps/pciutils" +DEPEND="${RDEPEND}" +S="${WORKDIR}/${PN}-0.5" + +#src_unpack() { +# unpack ${A} +# epatch ${FILESDIR}/${P}-pci-compile-fix.patch +#} + +src_compile() { + # when on non-x86 machines, we need to use the x86 emulator + LIBS="-lpci" econf `use_with !x86 x86emu` || die "could not configure" + emake || die "emake failed" +} + +src_install() { + emake install DESTDIR="${D}" || die "install failed" + dodoc LRMI +} |