blob: b7b2552d89089cc390e8fba90d2a040a21e368b5 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/pciutils/pciutils-2.2.6-r1.ebuild,v 1.2 2007/07/06 09:56:12 uberlord Exp $
inherit eutils flag-o-matic toolchain-funcs multilib
DESCRIPTION="Various utilities dealing with the PCI bus"
HOMEPAGE="http://atrey.karlin.mff.cuni.cz/~mj/pciutils.html"
SRC_URI="ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="network-cron zlib"
DEPEND="zlib? ( sys-libs/zlib )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-2.2.3-build.patch
epatch "${FILESDIR}"/pcimodules-${PN}-2.2.6.patch
epatch "${FILESDIR}"/${PN}-2.2.6-link.patch #160421
epatch "${FILESDIR}"/${PN}-2.2.4-update-pciids.patch
epatch "${FILESDIR}"/${PN}-2.2.6-alloca.patch
sed -i "/^LIBDIR=/s:/lib:/$(get_libdir):" Makefile
}
src_compile() {
export ZLIB=$(use zlib && echo yes || echo no)
tc-export AR CC RANLIB
emake OPT="${CFLAGS}" || die "emake failed"
}
src_install() {
emake install install-lib DESTDIR="${D}" || die
use network-cron || return 0
exeinto /etc/cron.monthly
newexe "${FILESDIR}"/pciutils.cron update-pciids || die
}
pkg_postinst() {
cd "${ROOT}"/usr/share/misc
rm -f pci.ids{,.gz}.old
use zlib && rm -f pci.ids || rm -f pci.ids.gz
}
|