sys-fs/ffmpegfs: add 2.18

Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
This commit is contained in:
Alexey Sokolov
2026-04-17 21:13:42 +01:00
parent f198f73aa0
commit 98d7ab0796
3 changed files with 62 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST ffmpegfs-2.17.tar.gz 14627337 BLAKE2B 1ab781ffe5bd655efd47b81216ead58576d2a965910ce852a4d60907718ec356798156b63f20e12ea158f2fbad77b389c47d89a7d14fca7b5a636e726db66d15 SHA512 89b8a5de7ed5ae6c7d53b9c56a711563229a6859e0d21ee4eaf0b362deff72424b0f6376956cc0e2cf9c676268aa3264db83cf22fd9b60de3bfd1d6f580786bd
DIST ffmpegfs-2.18.tar.gz 14634927 BLAKE2B e0b45768066b03eac257dbf5c5bc3023081cf5592bcf3386c21a0dbe6f0bd04fcf1b886bfcab22ce86c5b2c97c26c9b082efceabda8f9bd13d66c74a60e17330 SHA512 26b3438a6607479607c98cf8e847d83031b540c203257c20a9b70f4292970bb4f47228a6443cf10b9aaf2b4057f2de52ccb6184df38f9e1bed85da22de0b64c1

View File

@@ -0,0 +1,49 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="FUSE-based transcoding filesystem with support from/to many formats."
HOMEPAGE="https://nschlia.github.io/ffmpegfs/"
SRC_URI="https://github.com/nschlia/ffmpegfs/releases/download/v${PV}/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="bluray dvd"
RESTRICT="test" # needs /dev/fuse
BDEPEND="
app-editors/vim-core
app-text/asciidoc
virtual/pkgconfig
www-client/w3m
"
DEPEND="
dev-db/sqlite:3
dev-libs/libchardet
media-libs/libcue:=
media-video/ffmpeg:=
sys-fs/fuse:3
bluray? ( media-libs/libbluray:= )
dvd? ( media-libs/libdvdread:= )
"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}/ffmpegfs-2.18-varcache.patch"
)
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
$(use_with bluray libbluray) \
$(use_with dvd libdvd)
}

View File

@@ -0,0 +1,12 @@
Don't install to /var/cache
--- a/Makefile.am
+++ b/Makefile.am
@@ -156,7 +156,6 @@ install-exec-hook:
echo "$(CACHEDIR) already exists."; \
else \
echo "Creating cache in $(CACHEDIR)."; \
- mkdir -p "$(CACHEDIR)" || true; \
fi
uninstall-hook: