blob: c77c2bae1305b7b0d9fe196084cc08a67446851a (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/kudzu/kudzu-1.2.83-r1.ebuild,v 1.3 2015/02/08 08:32:34 mgorny Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* 2.7-pypy-* *-jython"
inherit eutils multilib python rpm toolchain-funcs
# Revision of the RPM. Shouldn't affect us, as we're just grabbing the source
# tarball out of it
RPMREV="3"
MY_P="${PN/lib}-${PV}"
DESCRIPTION="Red Hat Hardware detection tools"
SRC_URI="mirror://gentoo/${MY_P}-${RPMREV}.src.rpm"
HOMEPAGE="http://rhlinux.redhat.com/kudzu/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
RDEPEND="dev-lang/python
dev-libs/popt
sys-apps/hwdata-redhat
!sys-libs/libkudzu"
DEPEND="dev-libs/popt
>=sys-apps/pciutils-2.2.4"
S="${WORKDIR}/${MY_P}"
pkg_setup() {
PYTHON_VERSIONS=
python_pkg_setup
local version
for version in ${PYTHON_ABIS}; do
PYTHON_VERSIONS+="${PYTHON_VERSIONS:+ }python${version}"
done
}
src_prepare() {
sed -i -e 's/make/$(MAKE)/g' \
-e 's/$(CC) -o/$(CC) $(LDFLAGS) -o/' \
Makefile || die
}
src_compile() {
emake \
all \
CC=$(tc-getCC) \
AR=$(tc-getAR) \
RANLIB=$(tc-getRANLIB) \
RPM_OPT_FLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}" \
PYTHONVERS="${PYTHON_VERSIONS}" \
|| die "emake failed"
}
src_install() {
emake \
install \
install-program \
DESTDIR="${D}" \
libdir="${D}/usr/$(get_libdir)" \
CC=$(tc-getCC) \
PYTHONVERS="${PYTHON_VERSIONS}" \
|| die "emake install failed"
# don't install incompatible init scripts
rm -fr "${D}etc/rc.d" || die "removing rc.d files failed"
}
pkg_postinst() {
python_mod_optimize kudzu.py
}
pkg_postrm() {
python_mod_cleanup kudzu.py
}
|