diff options
author | 2019-06-19 19:05:54 -0400 | |
---|---|---|
committer | 2019-06-20 08:30:44 +0200 | |
commit | abe7ef7ebea34cf1f17094557f083a8488df9d5c (patch) | |
tree | 941eef9b36c940583842f53c196dd984ac783de5 /sys-cluster/teleport/teleport-3.2.6.ebuild | |
parent | sys-cluster/teleport: fix ebuild copyright headers (diff) | |
download | gentoo-abe7ef7ebea34cf1f17094557f083a8488df9d5c.tar.gz gentoo-abe7ef7ebea34cf1f17094557f083a8488df9d5c.tar.bz2 gentoo-abe7ef7ebea34cf1f17094557f083a8488df9d5c.zip |
sys-cluster/teleport: add v3.2.6
Signed-off-by: Graeme Lawes <graemelawes@gmail.com>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-cluster/teleport/teleport-3.2.6.ebuild')
-rw-r--r-- | sys-cluster/teleport/teleport-3.2.6.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/sys-cluster/teleport/teleport-3.2.6.ebuild b/sys-cluster/teleport/teleport-3.2.6.ebuild new file mode 100644 index 000000000000..546c0f2921f3 --- /dev/null +++ b/sys-cluster/teleport/teleport-3.2.6.ebuild @@ -0,0 +1,49 @@ +# Copyright 2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit golang-build systemd + +DESCRIPTION="Modern SSH server for teams managing distributed infrastructure" +HOMEPAGE="https://gravitational.com/teleport" + +EGO_PN="github.com/gravitational/${PN}/..." + +if [[ ${PV} == "9999" ]] ; then + inherit git-r3 golang-vcs + EGIT_REPO_URI="https://github.com/gravitational/${PN}.git" +else + inherit golang-vcs-snapshot + SRC_URI="https://github.com/gravitational/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm" +fi + +IUSE="pam" +LICENSE="Apache-2.0" +RESTRICT="test strip" +SLOT="0" + +DEPEND="app-arch/zip" +RDEPEND="pam? ( sys-libs/pam )" + +src_compile() { + BUILDFLAGS="" GOPATH="${S}" emake -j1 -C src/${EGO_PN%/*} full +} + +src_install() { + keepdir /var/lib/${PN} /etc/${PN} + dobin src/${EGO_PN%/*}/build/{tsh,tctl,teleport} + + insinto /etc/${PN} + newins "${FILESDIR}"/${PN}.yaml ${PN}.yaml + + newinitd "${FILESDIR}"/${PN}.init.d ${PN} + newconfd "${FILESDIR}"/${PN}.conf.d ${PN} + + systemd_newunit "${FILESDIR}"/${PN}.service ${PN}.service + systemd_install_serviced "${FILESDIR}"/${PN}.service.conf ${PN}.service +} + +src_test() { + BUILDFLAGS="" GOPATH="${S}" emake -C src/${EGO_PN%/*} test +} |