# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 EGO_PN="github.com/cloudflare/${PN}" inherit golang-build golang-vcs-snapshot SRC_URI="https://${EGO_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="amd64" DESCRIPTION="Cloudflare's PKI and TLS toolkit" HOMEPAGE="https://github.com/cloudflare/cfssl" LICENSE="BSD-2" SLOT="0" IUSE="hardened" RDEPEND="!!dev-lang/mono" #File collision (bug 614364) RESTRICT="test" src_compile() { pushd src || die CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" GOPATH="${S}" go install -v github.com/cloudflare/cfssl/cmd/... || die popd || die } src_install() { dobin bin/* pushd src/${EGO_PN} || die dodoc CHANGELOG README.md popd || die }