blob: 186201ad4a66bf781a515f3d1fc1dffc2e72e117 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/915resolution/915resolution-0.5.3-r2.ebuild,v 1.4 2009/12/15 19:23:37 ssuominen Exp $
inherit eutils flag-o-matic
DESCRIPTION="Utility to patch VBIOS of Intel 855 / 865 / 915 chipsets"
HOMEPAGE="http://915resolution.mango-lang.org/"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-fbsd"
IUSE=""
DEPEND=""
RDEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-freebsd.patch"
# add support for 965GM (bug #186661)
epatch "${FILESDIR}/${P}-965GM.patch"
}
src_compile() {
filter-flags -O*
emake clean
emake CFLAGS="${CFLAGS}" || die "Compiliation failed."
}
src_install() {
dosbin ${PN}
newconfd "${FILESDIR}/confd" ${PN}
newinitd "${FILESDIR}/initd-r1" ${PN}
dodoc README.txt changes.log chipset_info.txt dump_bios
}
pkg_postinst() {
elog
elog "${PN} alters your video BIOS in a non-permanent way, this means"
elog "that there is no risk of permanent damage to your video card, but"
elog "it also means that it must be run at every boot. To set it up, "
elog "edit /etc/conf.d/${PN} to add your configuration and type the"
elog "following command to add it the your defautl runlevel:"
elog
elog " \"rc-update add ${PN} default\""
elog
}
|