Install this version:
emerge -a =net-misc/ngrok-bin-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =net-misc/ngrok-bin-9999
Or alternatively:
emerge --autounmask-write -a =net-misc/ngrok-bin-9999
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PN="${PN/-bin/}"
BASE_URI="https://bin.equinox.io/c/4VmDzA7iaHb/${MY_PN}-stable-linux-_arch_.zip"
DESCRIPTION="Secure introspected tunnels to localhost"
HOMEPAGE="https://ngrok.com/"
SRC_URI="amd64? ( ${BASE_URI/_arch_/amd64} )
arm? ( ${BASE_URI/_arch_/arm} )
arm64? ( ${BASE_URI/_arch_/arm64} )
x86? ( ${BASE_URI/_arch_/386} )"
S="${WORKDIR}"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
BDEPEND="app-arch/unzip"
RESTRICT="mirror"
src_install() {
dobin ngrok
}
app-arch/unzip