Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/musl:master commit in: x11-libs/libpciaccess/
Date: Sat, 08 Dec 2018 19:56:11
Message-Id: 1544298859.1d529db574dd84235c7a4e717acdee93c99f8323.blueness@gentoo
1 commit: 1d529db574dd84235c7a4e717acdee93c99f8323
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 8 19:54:19 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 8 19:54:19 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=1d529db5
7
8 x11-libs/libpciaccess: version bump, keeping up with the tree
9
10 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 x11-libs/libpciaccess/Manifest | 1 +
14 x11-libs/libpciaccess/libpciaccess-0.14.ebuild | 39 ++++++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/x11-libs/libpciaccess/Manifest b/x11-libs/libpciaccess/Manifest
18 index b38f11e..c6b5e01 100644
19 --- a/x11-libs/libpciaccess/Manifest
20 +++ b/x11-libs/libpciaccess/Manifest
21 @@ -1 +1,2 @@
22 DIST libpciaccess-0.13.4.tar.bz2 372004 SHA256 07f864654561e4ac8629a0ef9c8f07fbc1f8592d1b6c418431593e9ba2cf2fcf SHA512 d5b32c525dd36dc85c9a09f45696808730eabbbd3cce892a6dbfb02a566598baad27be58567eb7ced15b3d99fb9afa1d1c24ec19754bcf7a1857a0c8cea34d92 WHIRLPOOL d48ecb99e7e31bc1c13e779261b7ae579ca28a054b20521cb7503c2bfe3182fa2f96c939eee0ebcca1783f3f38c07535173a3bb9a0713834cadd4b9709f25174
23 +DIST libpciaccess-0.14.tar.bz2 361375 BLAKE2B 05af836e52c7a8e19537a5c246f2dbbfee0a8c078ed0d6c45de6d1cc5f07b70d91b9409846b175da74f31b0e2536e38ffcb65983d79d40a54abc878b679d845d SHA512 bf40214dfd22f2a223f7c948566e6eaa4bfed60116e71b3eb19f6fe7ab2c4546649eb0416c06d5983e476ea5e27de036936646eb5f800ea97763b6d1f1976f4b
24
25 diff --git a/x11-libs/libpciaccess/libpciaccess-0.14.ebuild b/x11-libs/libpciaccess/libpciaccess-0.14.ebuild
26 new file mode 100644
27 index 0000000..fad152f
28 --- /dev/null
29 +++ b/x11-libs/libpciaccess/libpciaccess-0.14.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=5
35 +
36 +XORG_MULTILIB=yes
37 +inherit xorg-2
38 +
39 +DESCRIPTION="Library providing generic access to the PCI bus and devices"
40 +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~x86"
41 +IUSE="zlib"
42 +
43 +DEPEND="!<x11-base/xorg-server-1.5
44 + zlib? ( >=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}] )"
45 +RDEPEND="${DEPEND}
46 + sys-apps/hwids"
47 +
48 +PATCHES=(
49 + "${FILESDIR}"/${PN}-0.13.2-limits.patch
50 + "${FILESDIR}"/${PN}-0.13.2-arm.patch
51 +)
52 +
53 +pkg_setup() {
54 + xorg-2_pkg_setup
55 +
56 + XORG_CONFIGURE_OPTIONS=(
57 + "$(use_with zlib)"
58 + "--with-pciids-path=${EPREFIX}/usr/share/misc"
59 + )
60 +}
61 +
62 +multilib_src_install() {
63 + default
64 +
65 + if multilib_is_native_abi; then
66 + dodir /usr/bin
67 + ${BASH} libtool --mode=install "$(type -P install)" -c scanpci/scanpci "${ED}"/usr/bin || die
68 + fi
69 +}