Install this version:
emerge -a =net-misc/ssh-honeypot-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =net-misc/ssh-honeypot-9999
Or alternatively:
emerge --autounmask-write -a =net-misc/ssh-honeypot-9999
# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit git-r3
DESCRIPTION="Fake sshd that logs ip addresses, usernames, and passwords."
HOMEPAGE="https://github.com/droberson/ssh-honeypot"
EGIT_REPO_URI="https://github.com/droberson/ssh-honeypot.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}
net-libs/libssh[server]
dev-libs/json-c"
src_install() {
dobin bin/${PN}
newinitd "${FILESDIR}/${PN}.init" ${PN}
newconfd "${FILESDIR}/${PN}.conf" ${PN}
dodir usr/share/ssh-honeypot/
}