blob: e3c177f4ba405dde56e7aaaf2938d2fd82c9a946 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="AVFS is a virtual filesystem that allows browsing of compressed files"
HOMEPAGE="https://sourceforge.net/projects/avf/"
SRC_URI="mirror://sourceforge/avf/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~hppa ppc ppc64 x86"
IUSE="+lzma webdav +zstd"
BDEPEND="
dev-build/libtool
virtual/pkgconfig
"
RDEPEND="
app-arch/bzip2:=
>=sys-fs/fuse-2.4:0
sys-libs/zlib
lzma? ( app-arch/xz-utils )
webdav? ( net-libs/neon:= )
zstd? ( app-arch/zstd:= )
"
DEPEND="${RDEPEND}"
src_configure() {
econf \
--enable-fuse \
--enable-library \
--enable-shared \
--with-system-zlib \
--with-system-bzlib \
--disable-static \
$(use_enable webdav dav) \
$(use_with lzma xz) \
$(use_with zstd)
}
src_install() {
default
# remove cruft
rm "${ED}"/usr/bin/{davpass,ftppass} || die
# install docs
dodoc doc/{api-overview,background,FORMAT,INSTALL.*,README.avfs-fuse}
dosym ../../../$(get_libdir)/avfs/extfs/README /usr/share/doc/${PF}/README.extfs
docinto scripts
dodoc scripts/*pass
find "${ED}" -name "*.la" -delete || die
}
pkg_postinst() {
if [[ -z "${REPLACING_VERSIONS}" ]]; then
einfo "This version of AVFS includes FUSE support. It is user-based."
einfo "To execute:"
einfo "1) as user, mkdir ~/.avfs"
einfo "2) make sure fuse is either compiled into the kernel OR"
einfo " modprobe fuse or add to startup."
einfo "3) run mountavfs"
einfo "To unload daemon, type umountavfs"
einfo
einfo "READ the documentation! Enjoy :)"
fi
}
|