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.
39 lines
1.0 KiB
39 lines
1.0 KiB
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
inherit eutils flag-o-matic rpm
|
|
|
|
# Tag for which Fedora Core version it's from
|
|
FCVER="9"
|
|
# Revision of the RPM. Shouldn't affect us, as we're just grabbing the source
|
|
# tarball out of it
|
|
RPMREV="1"
|
|
|
|
MY_P="${P/-redhat}"
|
|
DESCRIPTION="Hardware identification and configuration data"
|
|
HOMEPAGE="https://fedora.redhat.com/projects/config-tools/"
|
|
SRC_URI="mirror://fedora-dev/releases/9/Everything/source/SRPMS/${MY_P}-${RPMREV}.fc${FCVER}.src.rpm"
|
|
LICENSE="GPL-2 MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~ppc ~ppc64 ~x86 ~amd64"
|
|
IUSE="test"
|
|
RDEPEND="virtual/modutils
|
|
!sys-apps/hwdata-gentoo"
|
|
DEPEND="${RDEPEND}
|
|
test? ( sys-apps/pciutils )"
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
src_unpack() {
|
|
rpm_src_unpack ${A}
|
|
|
|
cd "${S}"
|
|
sed -i -e "s:\(/sbin\/lspci\):/usr\1:g" Makefile || die
|
|
epatch "${FILESDIR}/${P}-python-3.patch"
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "emake install failed"
|
|
# Don't let it overwrite a udev-installed file
|
|
rm -rf "${D}"/etc/ || die
|
|
}
|