Diff mbuffer-20220418 with a mbuffer-20230301
/usr/portage/sys-block/mbuffer/mbuffer-20230301.ebuild 2023-10-09 14:52:35.436368500 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2022 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 |
... | ... | |
13 | 13 |
SLOT="0" |
14 | 14 |
KEYWORDS="amd64 arm arm64 ppc ~riscv x86" |
15 | 15 |
IUSE="debug ssl test" |
16 | ||
17 | 16 |
REQUIRED_USE="test? ( ssl )" |
18 | ||
19 | 17 |
RESTRICT="!test? ( test )" |
20 | 18 | |
21 |
RDEPEND="ssl? ( |
|
22 |
dev-libs/openssl:0= |
|
23 |
)" |
|
19 |
RDEPEND=" |
|
20 |
ssl? ( |
|
21 |
dev-libs/openssl |
|
22 |
) |
|
23 |
" |
|
24 | 24 |
DEPEND="${RDEPEND}" |
25 | 25 | |
26 | 26 |
PATCHES=( |
... | ... | |
29 | 29 |
) |
30 | 30 | |
31 | 31 |
src_prepare() { |
32 |
ln -s "${DISTDIR}"/${P}.tgz test.tar #258881 |
|
33 | ||
34 | 32 |
default |
35 | 33 | |
36 |
mv configure.in configure.ac || die |
|
34 |
ln -s "${DISTDIR}"/${P}.tgz test.tar # bug #258881 |
|
37 | 35 | |
36 |
mv configure.in configure.ac || die |
|
38 | 37 |
eautoreconf |
39 | 38 |
} |
40 | 39 |