sys-fs/mergerfs - 9999 (mva)

Search

Install

Install this version:

emerge -a =sys-fs/mergerfs-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =sys-fs/mergerfs-9999

Or alternatively:

emerge --autounmask-write -a =sys-fs/mergerfs-9999

Package Information

Description:
Another (FUSE based) union filesystem
Homepage:
https://github.com/trapexit/mergerfs
License:
ISC

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 ~arm64 ~x86 0
View Raw Ebuild
# Copyright 2026 mva
# Distributed under the terms of the Public Domain or CC0 License

EAPI=8

DESCRIPTION="Another (FUSE based) union filesystem"
HOMEPAGE="https://github.com/trapexit/mergerfs"

if [[ ${PV} == 9999 ]] ; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/trapexit/mergerfs"
else
	SRC_URI="https://github.com/trapexit/mergerfs/archive/${PV}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64 ~arm64 ~x86"
fi

LICENSE="ISC"
SLOT="0"
#IUSE="man-regen"

RDEPEND="
	sys-apps/attr:=
	>=sys-apps/util-linux-2.18
	sys-devel/gettext:=
"

DEPEND="
	${RDEPEND}
"

#TODO: optional man regen
#	man-regen? ( app-text/pandoc )

src_install() {
	dobin mergerfs
	dosym mergerfs /usr/bin/mount.mergerfs
	dodoc README.md
	doman man/mergerfs.1
}

Inherited Eclasses

Dependencies

DEPEND

	
	sys-apps/attr:=
	>=sys-apps/util-linux-2.18
	sys-devel/gettext:=

RDEPEND

	sys-apps/attr:=
	>=sys-apps/util-linux-2.18
	sys-devel/gettext:=