aboutsummaryrefslogtreecommitdiff
blob: 65af03f3b0df6bed95d188a2f7517ca07b91494f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit git-r3

DESCRIPTION="Manager of SSH ControlMaster connections"
HOMEPAGE="https://github.com/ClockworkNet/cmc"
EGIT_REPO_URI="https://github.com/ClockworkNet/cmc.git"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND="
	>=app-shells/bash-3.0
	net-misc/openssh
"
DEPEND="${RDEPEND}
"

DOCS="README.rst docs/annotated_config.rst docs/workflow.rst"

src_install() {
	dobin cmc
	dodoc ${DOCS}
}