blob: c6750551ef1a45313fdf3fe75369576600043c47 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwdata-knoppix/hwdata-knoppix-0.107-r1.ebuild,v 1.9 2005/07/12 14:16:42 wolf31o2 Exp $
inherit eutils
MY_PV=${PV}-8
DESCRIPTION="Data for the hwsetup program"
SRC_URI="http://developer.linuxtag.net/knoppix/sources/${PN}_${MY_PV}.tar.gz"
HOMEPAGE="http://www.knopper.net"
IUSE="opengl livecd"
KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
SLOT="0"
LICENSE="GPL-2"
DEPEND=""
RDEPEND=""
src_unpack() {
unpack ${A}
if use x86 || use amd64; then
if use livecd && use opengl; then
epatch ${FILESDIR}/${P}-binary_drivers.patch || die "patching"
fi
fi
}
src_install() {
dodoc debian/README.build debian/changelog debian/control debian/copyright debian/mergepcitable
insinto /usr/share/hwdata
doins debian/pcitable-knoppix CardMonitorCombos Cards MonitorsDB pci.ids pcitable upgradelist usb.ids
}
|