You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
2.9 KiB
114 lines
2.9 KiB
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="5"
|
|
|
|
inherit eutils multilib toolchain-funcs multilib-minimal flag-o-matic
|
|
|
|
DESCRIPTION="Various utilities dealing with the PCI bus"
|
|
HOMEPAGE="http://mj.ucw.cz/sw/pciutils/ https://git.kernel.org/?p=utils/pciutils/pciutils.git"
|
|
SRC_URI="ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux"
|
|
IUSE="dns +kmod static-libs +udev zlib"
|
|
|
|
# Have the sub-libs in RDEPEND with [static-libs] since, logically,
|
|
# our libssl.a depends on libz.a/etc... at runtime.
|
|
LIB_DEPEND="zlib? ( >=sys-libs/zlib-1.2.8-r1[static-libs(+),${MULTILIB_USEDEP}] )"
|
|
DEPEND="kmod? ( sys-apps/kmod )
|
|
static-libs? ( ${LIB_DEPEND} )
|
|
!static-libs? ( ${LIB_DEPEND//static-libs(+),} )
|
|
udev? ( >=virtual/libudev-208[${MULTILIB_USEDEP}] )"
|
|
RDEPEND="${DEPEND}
|
|
sys-apps/hwids
|
|
abi_x86_32? (
|
|
!<=app-emulation/emul-linux-x86-baselibs-20140508-r14
|
|
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
|
|
)"
|
|
DEPEND="${DEPEND}
|
|
kmod? ( virtual/pkgconfig )"
|
|
|
|
MULTILIB_WRAPPED_HEADERS=( /usr/include/pci/config.h )
|
|
|
|
switch_config() {
|
|
[[ $# -ne 2 ]] && return 1
|
|
local opt=$1 val=$2
|
|
|
|
sed "s@^\(${opt}=\).*\$@\1${val}@" -i Makefile || die
|
|
return 0
|
|
}
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${PN}-3.1.9-static-pc.patch
|
|
|
|
if use static-libs ; then
|
|
cp -pPR "${S}" "${S}.static" || die
|
|
mv "${S}.static" "${S}/static" || die
|
|
fi
|
|
|
|
multilib_copy_sources
|
|
}
|
|
|
|
multilib_src_configure() {
|
|
append-lfs-flags #471102
|
|
}
|
|
|
|
pemake() {
|
|
emake \
|
|
HOST="${CHOST}" \
|
|
CROSS_COMPILE="${CHOST}-" \
|
|
CC="$(tc-getCC)" \
|
|
AR="$(tc-getAR)" \
|
|
PKG_CONFIG="$(tc-getPKG_CONFIG)" \
|
|
RANLIB="$(tc-getRANLIB)" \
|
|
DNS=$(usex dns) \
|
|
IDSDIR='$(SHAREDIR)/misc' \
|
|
MANDIR='$(SHAREDIR)/man' \
|
|
PREFIX="${EPREFIX}/usr" \
|
|
SHARED="yes" \
|
|
STRIP="" \
|
|
ZLIB=$(usex zlib) \
|
|
PCI_COMPRESSED_IDS=0 \
|
|
PCI_IDS=pci.ids \
|
|
LIBDIR="\${PREFIX}/$(get_libdir)" \
|
|
LIBKMOD=$(multilib_native_usex kmod) \
|
|
HWDB=$(usex udev) \
|
|
"$@"
|
|
}
|
|
|
|
multilib_src_compile() {
|
|
pemake OPT="${CFLAGS}" all
|
|
if use static-libs ; then
|
|
pemake \
|
|
-C "${BUILD_DIR}/static" \
|
|
OPT="${CFLAGS}" \
|
|
SHARED="no" \
|
|
lib/libpci.a
|
|
fi
|
|
}
|
|
|
|
multilib_src_install() {
|
|
pemake DESTDIR="${D}" install install-lib
|
|
use static-libs && dolib.a "${BUILD_DIR}/static/lib/libpci.a"
|
|
}
|
|
|
|
multilib_src_install_all() {
|
|
dodoc ChangeLog README TODO
|
|
|
|
rm "${ED}"/usr/sbin/update-pciids "${ED}"/usr/share/misc/pci.ids \
|
|
"${ED}"/usr/share/man/man8/update-pciids.8*
|
|
|
|
newinitd "${FILESDIR}"/init.d-pciparm pciparm
|
|
newconfd "${FILESDIR}"/conf.d-pciparm pciparm
|
|
}
|
|
|
|
pkg_postinst() {
|
|
if [[ ${REPLACING_VERSIONS} ]] && [[ ${REPLACING_VERSIONS} < 3.2.0 ]]; then
|
|
elog "The 'network-cron' USE flag is gone; if you want a more up-to-date"
|
|
elog "pci.ids file, you should use sys-apps/hwids-99999999 (live ebuild)."
|
|
fi
|
|
}
|