Install this version:
emerge -a =sys-fs/x11fs-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sys-fs/x11fs-9999
Or alternatively:
emerge --autounmask-write -a =sys-fs/x11fs-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 2026 mva
# Distributed under the terms of the Public Domain or CC0 License
EAPI=8
inherit git-r3
DESCRIPTION="Self-syncing tree-merging file system based on FUSE"
HOMEPAGE="https://github.com/sdhand/x11fs"
EGIT_REPO_URI="https://github.com/sdhand/x11fs.git"
LICENSE="BSD"
SLOT="0"
DEPEND="
x11-libs/libxcb
sys-fs/fuse:0
"
RDEPEND="${DEPEND}"
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install || die "emake install failed"
}
pkg_postinst() {
einfo "How to mount:"
einfo
einfo "mount -t fuse x11fs <path>/<to>/<mountpoint>"
}