Install this version:
emerge -a =cli-app/xdg-ninja-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =cli-app/xdg-ninja-9999
Or alternatively:
emerge --autounmask-write -a =cli-app/xdg-ninja-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 9 | 0 |
# Copyright 2026 Nadeŭka <me+oss@nadevko.cc>
# Distributed under the terms of the GNU General Public License v2
EAPI=9
inherit git-r3 optfeature
DESCRIPTION='Script to scan $HOME for XDG base directories spec violations and provide fixes'
HOMEPAGE=https://github.com/b3nj5m1n/xdg-ninja
EGIT_REPO_URI=https://github.com/b3nj5m1n/${PN}.git
LICENSE=MIT
SLOT=0
RDEPEND='
app-misc/jq
sys-apps/findutils
sys-apps/sed
'
PATCHES=( "${FILESDIR}" )
src_install() {
emake DESTDIR="${D}" PREFIX="${EPREFIX}"/usr install
einstalldocs
}
pkg_postinst() {
optfeature 'Syntax highlight' app-misc/glow sys-apps/bat dev-python/pygments app-text/highlight
}