sys-fs/ffmpegfs: add 2.17

Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
This commit is contained in:
Alexey Sokolov 2024-11-28 23:54:27 +00:00
parent a711ac55f6
commit 512af101a1
No known key found for this signature in database
GPG Key ID: 5AE420CC0209989E
2 changed files with 53 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST ffmpegfs-2.16.tar.gz 14630485 BLAKE2B 69fcf7b9020b2a3b38a8719d9fd6766963ec0f642567c3b852a92408531988295c4e71557bd16f520660078fd314f170a934d6bb700321f9d90bff108209ca30 SHA512 9e3f3a8fc186c19b73edfa98f88a64d5536a1b8ade47f07c4e053a0e002aa729968efb67d92f4086476f55d72c67c4037e7c0965a672c4638be07afc3ed6a9a5
DIST ffmpegfs-2.17.tar.gz 14627337 BLAKE2B 1ab781ffe5bd655efd47b81216ead58576d2a965910ce852a4d60907718ec356798156b63f20e12ea158f2fbad77b389c47d89a7d14fca7b5a636e726db66d15 SHA512 89b8a5de7ed5ae6c7d53b9c56a711563229a6859e0d21ee4eaf0b362deff72424b0f6376956cc0e2cf9c676268aa3264db83cf22fd9b60de3bfd1d6f580786bd

View File

@ -0,0 +1,52 @@
# 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.16-cflags.patch"
"${FILESDIR}/ffmpegfs-2.16-varcache.patch"
)
src_prepare() {
default
# bug 936615
sed 's/-D_FORTIFY_SOURCE=2//' -i Makefile.am || die
eautoreconf
}
src_configure() {
econf \
$(use_with bluray libbluray) \
$(use_with dvd libdvd)
}