diff options
Diffstat (limited to 'app-crypt/cfssl/cfssl-1.4.1.ebuild')
-rw-r--r-- | app-crypt/cfssl/cfssl-1.4.1.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app-crypt/cfssl/cfssl-1.4.1.ebuild b/app-crypt/cfssl/cfssl-1.4.1.ebuild new file mode 100644 index 000000000000..68c4204008c1 --- /dev/null +++ b/app-crypt/cfssl/cfssl-1.4.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit go-module + +DESCRIPTION="Cloudflare's PKI and TLS toolkit" +HOMEPAGE="https://github.com/cloudflare/cfssl" +SRC_URI="https://github.com/cloudflare/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="hardened" + +RDEPEND="!!dev-lang/mono" #File collision (bug 614364) + +PATCHES=( + "${FILESDIR}/${P}-build-fix.patch" +) + +src_compile() { + CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" emake VERSION="${PV}" +} + +src_install() { + dobin bin/* + dodoc CHANGELOG README.md +} |