blob: 8b80422f966950d38673850670d7702a7c065014 (
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
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit bash-completion-r1
DESCRIPTION="Enterprise Kubernetes for Developers (Client Tools)"
HOMEPAGE="https://www.openshift.org"
SRC_URI="https://github.com/openshift/origin/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="bash-completion kerberos"
DEPEND="dev-lang/go
kerberos? ( app-crypt/mit-krb5 )"
RDEPEND="bash-completion? ( >=app-shells/bash-completion-2.3-r1 )"
S="${WORKDIR}/origin-${PV}"
src_compile() {
use kerberos && MY_TAGS="-tags=gssapi"
emake all OS_GIT_MINOR="" OS_GIT_MAJOR="" OS_GIT_VERSION="v${PV}" WHAT="cmd/oc ${MY_TAGS}"
}
src_install() {
case "${ARCH}" in
x86) MY_ARCH="386" ;;
*) MY_ARCH="${ARCH}" ;;
esac
dobin "_output/local/bin/linux/${MY_ARCH}/oc"
doman docs/man/man1/oc*
use bash-completion && dobashcomp contrib/completions/bash/oc
}
|