blob: e94089dd579d79417eb035e0c04002c94be739c5 (
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-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwdata-gentoo/hwdata-gentoo-0.4.ebuild,v 1.4 2013/02/01 13:17:49 gmsoft Exp $
inherit eutils
DESCRIPTION="Data for the hwsetup program"
SRC_URI="mirror://gentoo/${P}.tar.bz2
http://wolf31o2.org/sources/hwdata/${P}.tar.bz2"
HOMEPAGE="http://wolf31o2.org"
IUSE="opengl binary-drivers"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
SLOT="0"
LICENSE="GPL-2"
DEPEND="!sys-apps/hwdata-redhat"
RDEPEND=${DEPEND}
src_unpack() {
unpack ${A}
if use x86 || use amd64
then
if use opengl && use binary-drivers
then
continue
else
sed -e 's/DRIVER fglrx/DRIVER radeon/' \
-e 's/DRIVER nvidia/DRIVER nv/' \
-i "${S}"/Cards || die
fi
fi
cd "${S}"
epatch "${FILESDIR}"/${PV}-openchrome.patch
}
src_install() {
dodoc ChangeLog check-cards
insinto /usr/share/hwdata
doins Cards MonitorsDB pcitable blacklist
}
|