summaryrefslogtreecommitdiff
blob: 45973eade0d47a6c2639bd34fd595bc1a7a9a664 (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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5
KEYWORDS="~amd64"
DESCRIPTION="A simple command line client for etcd"
HOMEPAGE="https://github.com/coreos/etcdctl/"
SRC_URI="https://github.com/coreos/etcdctl/archive/v${PV}.zip -> ${P}.zip"
LICENSE="Apache-2.0"
SLOT="0"
IUSE="examples"

DEPEND=">=dev-lang/go-1.2"
RDEPEND=""

src_prepare() {
	sed -e "s:^\(go install\)\(.*\)$:\\1 -x -ldflags=\"-v -linkmode=external -extldflags '${LDFLAGS}'\" \\2:" \
		-i build || die
}

src_compile() {
	CGO_CFLAGS="${CFLAGS}" ./build || die
}

src_test() {
	./test || die
}

src_install() {
	dobin bin/${PN}
	dodoc README.md
	use examples && dodoc -r examples
}