blob: 0df7fb5ba7863bd3a4c059af6fd3330cfb787ea6 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-laptop/radeontool/radeontool-1.6.3.ebuild,v 1.1 2012/03/21 18:42:30 robbat2 Exp $
EAPI=2
inherit eutils toolchain-funcs
DESCRIPTION="Manage the backlight, external video output and registers of ATI Radeon graphics cards"
HOMEPAGE="http://cgit.freedesktop.org/~airlied/radeontool/"
SRC_URI="http://people.freedesktop.org/~airlied/${PN}/${P}.tar.bz2"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="x11-libs/libpciaccess"
DEPEND="${RDEPEND}"
src_install() {
emake install DESTDIR="${D}"
}
|