Diff dwz-0.14 with a dwz-0.15-r1
/usr/portage/sys-devel/dwz/dwz-0.15-r1.ebuild 2023-10-09 14:52:35.480368501 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2021 Gentoo Authors |
|
1 |
# Copyright 1999-2023 Gentoo Authors |
|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 | 4 |
EAPI=8 |
... | ... | |
17 | 17 |
IUSE="test" |
18 | 18 |
RESTRICT="!test? ( test )" |
19 | 19 | |
20 |
RDEPEND="dev-libs/elfutils" |
|
20 |
RDEPEND=" |
|
21 |
dev-libs/elfutils |
|
22 |
dev-libs/xxhash |
|
23 |
" |
|
21 | 24 |
DEPEND="${RDEPEND}" |
22 | 25 |
BDEPEND="test? ( |
23 | 26 |
dev-libs/elfutils[utils] |
... | ... | |
27 | 30 | |
28 | 31 |
src_prepare() { |
29 | 32 |
default |
30 |
sed -e '/^CFLAGS/d' -i Makefile || die |
|
31 | 33 |
tc-export CC |
32 | 34 |
} |
35 | ||
36 |
src_compile() { |
|
37 |
emake CFLAGS="${CFLAGS}" srcdir="${S}" |
|
38 |
} |
|
39 | ||
40 |
src_test() { |
|
41 |
emake CFLAGS="${CFLAGS}" srcdir="${S}" check |
|
42 |
} |
|
43 | ||
44 |
src_install() { |
|
45 |
emake DESTDIR="${D}" CFLAGS="${CFLAGS}" srcdir="${S}" install |
|
46 |
} |