blob: 8b43e6bde07c2bb0800706eb3d5e4d5ced827ebe (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit multilib rpm toolchain-funcs
DESCRIPTION="Hardware detection tool used in SuSE Linux"
HOMEPAGE="http://www.opensuse.org/"
SRC_URI="http://download.opensuse.org/source/factory/repo/oss/suse/src/${P}-1.2.src.rpm"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
IUSE=""
RDEPEND="
amd64? ( dev-libs/libx86emu )
x86? ( dev-libs/libx86emu )"
DEPEND="${RDEPEND}
sys-devel/flex
>=sys-kernel/linux-headers-2.6.17"
MAKEOPTS="${MAKEOPTS} -j1"
src_prepare() {
# Respect AR variable.
sed -i \
-e 's:ar r:$(AR) r:' \
src/{,isdn,ids,smp,hd}/Makefile || die
# Respect LDFLAGS.
sed -i -e 's:$(CC) $(CFLAGS):$(CC) $(LDFLAGS) $(CFLAGS):' src/ids/Makefile || die
# Respect MAKE variable. Skip forced -pipe and -g. Respect LDFLAGS.
sed -i \
-e 's:make:$(MAKE):' \
-e 's:-pipe -g::' \
-e 's:LDFLAGS.*=:LDFLAGS +=:' \
Makefile{,.common} || die
default
}
src_compile() {
tc-export AR
emake CC="$(tc-getCC)" RPM_OPT_FLAGS="${CFLAGS}"
}
src_install() {
emake DESTDIR="${ED}" LIBDIR="/usr/$(get_libdir)" install
dodoc changelog README*
doman doc/*.{1,8}
insinto /usr/share/doc/${PF}/examples
doins doc/example*.c
}
|