blob: 49708d673ee5dbad2de343884ca83ff8f50ac4ea (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-laptop/radeontool/radeontool-1.5-r3.ebuild,v 1.3 2006/07/19 11:21:15 uberlord Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Control the backlight and external video output of ATI Radeon Mobility graphics cards"
HOMEPAGE="http://fdd.com/software/radeon/"
SRC_URI="http://fdd.com/software/radeon/${P}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="sys-apps/sed"
RDEPEND="sys-apps/pciutils"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}"-mmap.patch
epatch "${FILESDIR}/${P}"-vga-ati.patch
sed -i \
-e "s:-Wall -O2:${CFLAGS}:" \
-e "s:gcc:$(tc-getCC):" \
"${S}"/Makefile
}
src_compile() {
emake || die "emake failed"
}
src_install() {
dosbin radeontool
dodoc CHANGES
}
|