diff options
Diffstat (limited to 'sys-fs/ffmpegfs/ffmpegfs-2.16.ebuild')
-rw-r--r-- | sys-fs/ffmpegfs/ffmpegfs-2.16.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/sys-fs/ffmpegfs/ffmpegfs-2.16.ebuild b/sys-fs/ffmpegfs/ffmpegfs-2.16.ebuild new file mode 100644 index 000000000..4b681adab --- /dev/null +++ b/sys-fs/ffmpegfs/ffmpegfs-2.16.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2023 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-text/asciidoc + virtual/pkgconfig + www-client/w3m +" +DEPEND=" + dev-db/sqlite:3 + dev-libs/libchardet + media-libs/libcue:= + media-video/ffmpeg:= + sys-fs/fuse + 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 + eautoreconf +} + +src_configure() { + econf \ + $(use_with bluray libbluray) \ + $(use_with dvd libdvd) +} |