blob: 349c62c47d36461c89a0649e77f696c8cf6f54ec (
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
45
46
47
48
49
50
51
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/kudzu/kudzu-1.1.62.ebuild,v 1.7 2005/10/11 22:05:44 wolf31o2 Exp $
DESCRIPTION="Red Hat Hardware detection tools"
SRC_URI="http://www.ibiblio.org/onebase/devbase/app-packs/${P}.tar.bz2"
HOMEPAGE="http://fedora.redhat.com/projects/additional-projects/kudzu/"
KEYWORDS="alpha amd64 -mips -ppc -sparc x86"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
RDEPEND="dev-libs/newt"
DEPEND="$RDEPEND
sys-devel/gettext
sys-apps/pciutils
>=dev-libs/dietlibc-0.20
!sys-libs/libkudzu
!sys-libs/libkudzu-knoppix
!sys-apps/kudzu-knoppix"
src_compile() {
emake || die
if use x86
then
cd ddcprobe || die
emake || die
fi
}
src_install() {
einstall install-program DESTDIR=${D} PREFIX=/usr MANDIR=/usr/share/man \
|| die "Install failed"
# Init script isn't appropriate
rm -rf ${D}/etc/rc.d
# Add our own init scripts
newinitd ${FILESDIR}/${PN}.rc ${PN} || die
newconfd ${FILESDIR}/${PN}.conf.d ${PN} || die
if use x86
then
cd ${S}/ddcprobe || die
dosbin ddcxinfo ddcprobe || die
fi
}
|