mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-21 21:13:27 -04:00
app-crypt/uacme: add new package
Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Greg Depoire--Ferrer <greg.depoire+gentoo@gmail.com>
This commit is contained in:
33
app-crypt/uacme/uacme-1.7.1.ebuild
Normal file
33
app-crypt/uacme/uacme-1.7.1.ebuild
Normal file
@@ -0,0 +1,33 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DESCRIPTION="ACMEv2 client written in plain C with minimal dependencies"
|
||||
HOMEPAGE="https://github.com/ndilieto/uacme"
|
||||
SRC_URI="https://github.com/ndilieto/uacme/archive/upstream/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/uacme-upstream-${PV}"
|
||||
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="GPL-3"
|
||||
IUSE="gnutls mbedtls +ualpn +man"
|
||||
REQUIRED_USE="gnutls? ( !mbedtls )"
|
||||
|
||||
RDEPEND="
|
||||
>=net-misc/curl-7.77.0-r1
|
||||
!gnutls? ( !mbedtls? ( >=dev-libs/openssl-1.1.1k ) )
|
||||
gnutls? ( >=net-libs/gnutls-3.7.1 )
|
||||
mbedtls? ( >=net-libs/mbedtls-2.26.0 )
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="man? ( >=app-text/asciidoc-9.0.5-r1 )"
|
||||
|
||||
src_configure() {
|
||||
econf --with$(use gnutls || use mbedtls && echo out)-openssl \
|
||||
$(use_with gnutls) \
|
||||
$(use_with mbedtls) \
|
||||
$(use_with ualpn) \
|
||||
$(use_enable man docs)
|
||||
}
|
||||
Reference in New Issue
Block a user