Install this version:
emerge -a =net-misc/mpssh-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =net-misc/mpssh-9999
Or alternatively:
emerge --autounmask-write -a =net-misc/mpssh-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit git-r3 toolchain-funcs
DESCRIPTION="Mass parallel ssh"
HOMEPAGE="https://github.com/ndenev/mpssh"
EGIT_REPO_URI="https://github.com/ndenev/${PN}.git"
LICENSE="BSD"
SLOT="0"
RDEPEND="net-misc/openssh"
src_prepare() {
default
# respect CFLAGS and LDFLAGS
sed -i -e '/CFLAGS/s/=/ +=/' \
-e '/LDFLAGS/s/=/+=/' \
Makefile || die "sed faild for Makefile"
}
src_compile() {
emake CC="$(tc-getCC)" LD="$(tc-getCC)"
}
src_install() {
einstalldocs
dobin mpssh
doman mpssh.1
}
net-misc/openssh