sys-apps/jchroot - 9999 (konsolebox)

Search

Install

Install this version:

emerge -a =sys-apps/jchroot-9999

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

autounmask =sys-apps/jchroot-9999

Or alternatively:

emerge --autounmask-write -a =sys-apps/jchroot-9999

Package Information

Description:
A chroot with more isolation
Homepage:
https://github.com/vincentbernat/jchroot
License:
ISC

Ebuild Details

Version EAPI Keywords Slot
9999 7 ~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 0
View Raw Ebuild
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit toolchain-funcs

DESCRIPTION="A chroot with more isolation"
HOMEPAGE="https://github.com/vincentbernat/jchroot"

if [[ ${PV} == 9999 ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/vincentbernat/${PN}.git"
	EGIT_BRANCH=master
else
	SRC_URI="https://github.com/vincentbernat/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
fi

LICENSE="ISC"
SLOT=0

src_compile() {
	emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
}

src_install() {
	dodoc README.md
	doman "${PN}.8"
	dobin "${PN}"
}

Inherited Eclasses