blob: 716f69a568ac79b7a88a21f36088f21b470655fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/855resolution/855resolution-0.4.ebuild,v 1.2 2007/01/25 04:30:25 beandog Exp $
S="${WORKDIR}/${PN}"
DESCRIPTION="Utility to patch VBIOS of Intel 855 / 865 / 915 chipsets."
HOMEPAGE="http://perso.wanadoo.fr/apoirier"
SRC_URI="http://perso.wanadoo.fr/apoirier/${P}.tgz"
RESTRICT="strip"
LICENSE="public-domain as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="virtual/libc"
src_compile() {
emake || die "emake failed"
}
src_install() {
exeinto /usr/sbin
doexe ${PN}
dodoc README.txt
insinto /etc/conf.d
newins ${FILESDIR}/${PV}/conf 855resolution
exeinto /etc/init.d
newexe ${FILESDIR}/${PV}/init 855resolution
}
|