mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-24 09:17:15 +01:00
51 lines
1.3 KiB
Bash
51 lines
1.3 KiB
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libkudzu/libkudzu-1.2.57.1.ebuild,v 1.11 2008/10/31 16:16:26 jer Exp $
|
|
|
|
inherit rpm eutils toolchain-funcs flag-o-matic
|
|
|
|
RPMREV="1"
|
|
DESCRIPTION="Red Hat Hardware detection tools"
|
|
HOMEPAGE="http://rhlinux.redhat.com/kudzu/"
|
|
SRC_URI="mirror://fedora-dev/releases/10/Everything/source/SRPMS/kudzu-1.2.85-${RPMREV}.src.rpm"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
IUSE="zlib"
|
|
|
|
DEPEND="dev-libs/popt
|
|
zlib? ( sys-libs/zlib )
|
|
>=sys-apps/pciutils-2.2.4"
|
|
RDEPEND="${DEPEND}
|
|
sys-apps/hwdata-redhat
|
|
!sys-apps/kudzu"
|
|
|
|
S=${WORKDIR}/kudzu-1.2.85
|
|
|
|
src_compile() {
|
|
if use zlib
|
|
then
|
|
perl -pi -e 's| -lpci| -lz -lpci|g' Makefile
|
|
elif built_with_use --missing false sys-apps/pciutils zlib
|
|
then
|
|
die "You need to build with USE=zlib to match sys-apps/pcituils"
|
|
fi
|
|
# Fix the modules directory to match Gentoo layout.
|
|
perl -pi -e 's|/etc/modutils/kudzu|/etc/modules.d/kudzu|g' *.*
|
|
|
|
if use ppc && [ "$(tc-arch-kernel)" != "ppc" ]; then
|
|
emake libkudzu.a ARCH="ppc" \
|
|
RPM_OPT_FLAGS="${CFLAGS}" || die
|
|
else
|
|
emake libkudzu.a ARCH=$(tc-arch-kernel) \
|
|
RPM_OPT_FLAGS="${CFLAGS}" || die
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
keepdir /etc/sysconfig
|
|
insinto /usr/include/kudzu
|
|
doins *.h
|
|
dolib.a libkudzu.a
|
|
}
|