blob: fad152f0cb3f7e4375d8231ea08de7b5d7bb2265 (
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
|
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
XORG_MULTILIB=yes
inherit xorg-2
DESCRIPTION="Library providing generic access to the PCI bus and devices"
KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86"
IUSE="zlib"
DEPEND="!<x11-base/xorg-server-1.5
zlib? ( >=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}] )"
RDEPEND="${DEPEND}
sys-apps/hwids"
PATCHES=(
"${FILESDIR}"/${PN}-0.13.2-limits.patch
"${FILESDIR}"/${PN}-0.13.2-arm.patch
)
pkg_setup() {
xorg-2_pkg_setup
XORG_CONFIGURE_OPTIONS=(
"$(use_with zlib)"
"--with-pciids-path=${EPREFIX}/usr/share/misc"
)
}
multilib_src_install() {
default
if multilib_is_native_abi; then
dodir /usr/bin
${BASH} libtool --mode=install "$(type -P install)" -c scanpci/scanpci "${ED}"/usr/bin || die
fi
}
|