38 lines
942 B
Bash
38 lines
942 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
KEYWORDS="~amd64"
|
|
DESCRIPTION="A simple certificate manager written in Go. Easy to use with limited capability"
|
|
HOMEPAGE="https://github.com/coreos/etcd-ca"
|
|
EGIT_COMMIT="31fef42f75294cf8bf1e7facf82648de0c2d87a3"
|
|
SRC_URI="${HOMEPAGE}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
IUSE="doc"
|
|
DEPEND=">=dev-lang/go-1.2"
|
|
RDEPEND=""
|
|
S=${WORKDIR}/${PN}-${EGIT_COMMIT}
|
|
|
|
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
|
|
}
|
|
|
|
# go tool: no such tool "cover"; to install:
|
|
# go get code.google.com/p/go.tools/cmd/cover
|
|
#src_test() {
|
|
# ./test || die
|
|
#}
|
|
|
|
src_install() {
|
|
dobin "${S}"/bin/${PN}
|
|
dodoc README.md
|
|
use doc && dodoc -r Documentation
|
|
}
|