Install this version:
emerge -a =sys-fs/lxcfs-4.0.1
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sys-fs/lxcfs-4.0.1
Or alternatively:
emerge --autounmask-write -a =sys-fs/lxcfs-4.0.1
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 4.0.1 | 7 | 0 |
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit autotools
inherit systemd vcs-snapshot
DESCRIPTION="FUSE filesystem for LXC"
HOMEPAGE="https://linuxcontainers.org/lxcfs/introduction/"
LICENSE="Apache-2.0"
SLOT="0"
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/lxc/lxcfs.git"
EGIT_BRANCH="master"
inherit git-r3
SRC_URI=""
KEYWORDS=""
else
RESTRICT="mirror"
EGIT_COMMIT="2df8b9f9b20fb9dd76f8ca8d77eadf3458f25b5b"
SRC_URI="https://github.com/lxc/lxcfs/archive/${EGIT_COMMIT}.tar.gz -> ${CATEGORY}-${PN}-${PV}.tar.gz"
S="${WORKDIR}/${CATEGORY}-${PN}-${PV}"
KEYWORDS=""
fi
# Omit all dbus. Upstream appears to require it because systemd, but
# lxcfs makes no direct use of dbus.
RDEPEND="
dev-libs/glib:2
sys-fs/fuse:0
"
DEPEND="
sys-apps/help2man
${RDEPEND}
"
src_prepare() {
default
eautoreconf
./bootstrap.sh || die "Failed to bootstrap configure files"
}
src_configure() {
# Without the localstatedir the filesystem isn't mounted correctly
econf --localstatedir=/var
eapply "${FILESDIR}/${PN}-fusermount-path-4.patch"
}
src_install() {
default
keepdir /var/lib/lxcfs
newinitd "${FILESDIR}"/${PN}.initd lxcfs
systemd_dounit config/init/systemd/lxcfs.service
}
pkg_preinst() {
# In an upgrade situation merging /var/lib/lxcfs (an empty dir)
# fails because that is a live mountpoint when the service is
# running. It's unnecessary anyway so skip the action.
[[ -d ${ROOT}/var/lib/lxcfs ]] && rm -rf ${D}/var
}
sys-apps/help2man dev-libs/glib:2 sys-fs/fuse:0
dev-libs/glib:2 sys-fs/fuse:0