Diff wandio-4.2.3_p1-r2 with a wandio-4.2.4
/usr/portage/net-libs/wandio/wandio-4.2.4.ebuild 2023-10-09 14:52:34.604368479 +0300 | ||
---|---|---|
6 | 6 |
inherit autotools |
7 | 7 | |
8 | 8 |
DESCRIPTION="C library for simple and efficient file IO" |
9 |
HOMEPAGE="https://research.wand.net.nz/software/libwandio.php" |
|
10 |
SRC_URI="https://github.com/wanduow/${PN}/archive/${PV/_p/-}.tar.gz -> ${P}.tar.gz" |
|
11 |
S="${WORKDIR}/${P/_p/-}" |
|
9 |
HOMEPAGE="https://github.com/LibtraceTeam/wandio" |
|
10 |
SRC_URI="https://github.com/LibtraceTeam/wandio/archive/refs/tags/${PV}-1.tar.gz -> ${P}.tar.gz" |
|
11 |
S="${WORKDIR}"/${P}-1 |
|
12 | 12 | |
13 | 13 |
LICENSE="LGPL-3" |
14 | 14 |
SLOT="0/6" |
15 | 15 |
KEYWORDS="~amd64 ~x86" |
16 |
IUSE="bzip2 http lzma lzo lz4 test zlib zstd" |
|
16 |
IUSE="bzip2 http lzma lzo test zlib" |
|
17 | 17 |
RESTRICT="!test? ( test )" |
18 | 18 |
REQUIRED_USE="test? ( lzma lzo )" |
19 | 19 | |
... | ... | |
22 | 22 |
bzip2? ( app-arch/bzip2 ) |
23 | 23 |
lzma? ( app-arch/xz-utils ) |
24 | 24 |
lzo? ( dev-libs/lzo ) |
25 |
lz4? ( app-arch/lz4:= ) |
|
26 | 25 |
http? ( net-misc/curl ) |
27 | 26 |
zlib? ( sys-libs/zlib ) |
28 |
zstd? ( app-arch/zstd:= ) |
|
29 | 27 |
" |
30 | 28 |
DEPEND=" |
31 | 29 |
${RDEPEND} |
32 | 30 |
test? ( app-arch/lzop ) |
33 | 31 |
" |
34 | 32 | |
35 |
PATCHES=( |
|
36 |
"${FILESDIR}"/${PN}-4.2.3_p1-fix-lz4-check.patch |
|
37 |
) |
|
38 | ||
39 | 33 |
src_prepare() { |
40 | 34 |
default |
41 | ||
42 | 35 |
eautoreconf |
43 | 36 |
} |
44 | 37 | |
... | ... | |
48 | 41 |
$(use_with http) \ |
49 | 42 |
$(use_with lzma) \ |
50 | 43 |
$(use_with lzo) \ |
51 |
$(use_with lz4) \ |
|
52 |
$(use_with zlib) \ |
|
53 |
$(use_with zstd) |
|
44 |
$(use_with zlib) |
|
54 | 45 |
} |
55 | 46 | |
56 | 47 |
src_test() { |
57 | 48 |
pushd test || die |
49 | ||
58 | 50 |
"${BROOT}"/bin/bash do-basic-tests.sh || die |
59 | 51 |
} |
60 | 52 |