blob: ddfa5dec4784882e8b02b1da1cc480952cbddcab (
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
|
# Copyright 2016-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools flag-o-matic
DESCRIPTION="FUSE filesystem to mount squashfs archives"
HOMEPAGE="https://github.com/vasi/squashfuse"
SRC_URI="https://github.com/vasi/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="amd64 ~riscv ~x86 ~amd64-linux ~x86-linux"
IUSE="lz4 lzma lzo static-libs +zlib zstd"
REQUIRED_USE="|| ( lz4 lzma lzo zlib zstd )"
RESTRICT="test" # Tests require access to /dev/fuse.
DEPEND="
>=sys-fs/fuse-2.8.6:0=
lzma? ( >=app-arch/xz-utils-5.0.4:= )
zlib? ( >=sys-libs/zlib-1.2.5-r2:= )
lzo? ( >=dev-libs/lzo-2.06:= )
lz4? ( >=app-arch/lz4-0_p106:= )
zstd? ( app-arch/zstd:= )
"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
src_prepare() {
default
eautoreconf
}
src_configure() {
filter-lto
filter-flags -fwhole-program -fno-common
local econfargs=(
$(use_enable static-libs static)
$(use lz4 || echo --without-lz4)
$(use lzma || echo --without-xz)
$(use lzo || echo --without-lzo)
$(use zlib || echo --without-zlib)
$(use zstd || echo --without-zstd)
)
econf "${econfargs[@]}"
}
src_install() {
default
find "${ED}" -name "*.la" -type f -delete || die
}
|