Install this version:
emerge -a =net-misc/toxbot-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =net-misc/toxbot-9999
Or alternatively:
emerge --autounmask-write -a =net-misc/toxbot-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 toolchain-funcs
DESCRIPTION="Tox groupchats bot"
HOMEPAGE="https://github.com/JFreegman/ToxBot"
EGIT_REPO_URI="https://github.com/JFreegman/ToxBot"
LICENSE="GPL-3"
SLOT="0"
RDEPEND="net-libs/tox[av]"
DEPEND="
${RDEPEND}
virtual/pkgconfig
"
src_prepare() {
sed -i \
-e 's/@$(CC)/$(CC)/' \
Makefile || die
default
}
src_compile() {
emake \
CC="$(tc-getCC)" \
USER_CFLAGS="${CFLAGS}" \
USER_LDFLAGS="${LDFLAGS}"
}
src_install() {
dobin "${S}/toxbot"
}