sys-fs/avfs: drop 1.1.4

Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
This commit is contained in:
Petr Vaněk 2025-03-24 07:57:07 +01:00
parent 594069fdd8
commit 8028e1d98d
No known key found for this signature in database
GPG Key ID: 351D91B6D7DF9E50
2 changed files with 0 additions and 73 deletions

View File

@ -1,2 +1 @@
DIST avfs-1.1.4.tar.bz2 614657 BLAKE2B a742f2e7fd4f97f2a3207cfe95d9358cfd895e4c047c39bbbf3ac0a35e1702542339f46199ba5f92868ceb48f009736a513431c0467ba49d9aacf73a667956ec SHA512 5caa7050e6b9cdce0b5ccd515af8233dc1e9226a97cdf3a3284ced5edd44fbde426049b4ce500ce1daf020d085f9f0a9f81eff339657e92ff2d09b1dec6e4267
DIST avfs-1.1.5.tar.bz2 623927 BLAKE2B 3b4c3f1d510019c82c5c0f954f9ed35e6aebd0cd108ac33f5b89b3dc6e5ffb1ef88102c11351eea84f57922e377257e2e256f4e0fbe436efde669259f5b6c0d5 SHA512 03e9abbda17d7976f9c6e4f8a426ff0b85f626ba2942cb2ec17aff3239476d6de385d7d709d7f0b23e31fbde5bcf131e512d38354f78f7fdc04d4b6d0d593e1b

View File

@ -1,72 +0,0 @@
# 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="https://downloads.sourceforge.net/avf/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~hppa ppc ppc64 x86"
IUSE="lzip +lzma webdav +zstd"
RDEPEND="
app-arch/bzip2:=
>=sys-fs/fuse-2.4:0
sys-libs/zlib
lzip? ( app-arch/lzlib )
lzma? ( app-arch/xz-utils )
webdav? ( net-libs/neon:= )
zstd? ( app-arch/zstd:= )
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-build/libtool
virtual/pkgconfig
"
src_configure() {
econf \
--enable-fuse \
--enable-library \
--enable-shared \
--with-system-zlib \
--with-system-bzlib \
--disable-static \
$(use_enable webdav dav) \
$(use_with lzip) \
$(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
}