blob: 126f14b027d6e1558cae1dde5535b4d08e77a7eb (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwsetup/hwsetup-1.1.ebuild,v 1.14 2006/06/22 19:06:43 wolf31o2 Exp $
inherit eutils
MY_PV=${PV}-1
DESCRIPTION="Hardware setup program from Knoppix - used only on LiveCD"
HOMEPAGE="http://www.knopper.net/"
SRC_URI="http://debian-knoppix.alioth.debian.org/sources/${PN}_${MY_PV}.tar.gz"
#http://developer.linuxtag.net/knoppix/sources/${PN}_${MY_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ia64 -mips ppc ppc64 sparc x86"
IUSE=""
DEPEND="sys-libs/libkudzu
sys-apps/pciutils"
RDEPEND="${DEPEND}
|| ( sys-apps/hwdata-gentoo
sys-apps/hwdata )"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-dyn_blacklist.patch
epatch ${FILESDIR}/${P}-fastprobe.patch
epatch ${FILESDIR}/${P}-gentoo.patch
}
src_compile() {
emake || die
}
src_install() {
einstall DESTDIR=${D} PREFIX=/usr MANDIR=/usr/share/man || die "Install failed"
}
pkg_postinst() {
ewarn "This package is intended for usage on the Gentoo release media. If"
ewarn "you are not building a CD, remove this package. It will not work"
ewarn "properly on a running system, as Gentoo does not use any of the"
ewarn "Knoppix-style detection except for CD builds."
}
|