Install this version:
emerge -a =app-crypt/uacme-1.8.1
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-crypt/uacme-1.8.1
Or alternatively:
emerge --autounmask-write -a =app-crypt/uacme-1.8.1
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 1.8.1 | 8 | ~amd64 | 0 |
# Copyright 2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="uacme is a client for the RFC8555 ACMEv2 protocol."
HOMEPAGE="
https://github.com/ndilieto/uacme
https://ndilieto.github.io/uacme/uacme.html
https://ndilieto.github.io/uacme/ualpn.html
"
SRC_URI="
https://github.com/ndilieto/uacme/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="doc gnutls +openssl +ualpn"
DEPEND="
net-misc/curl:=
openssl? ( dev-libs/openssl:= )
gnutls? ( net-libs/gnutls:= )
"
RDEPEND="
${DEPEND}
"
BDEPEND="
doc? ( app-text/asciidoc )
"
REQUIRED_USE="
^^ ( gnutls openssl )
"
src_prepare() {
default
eautoreconf
}
src_configure() {
local -a myeconfargs=(
--with-libcurl
$(use_enable doc docs)
$(use_with gnutls)
$(use_with openssl)
$(use_with ualpn)
)
econf "${myeconfargs[@]}"
}
src_install() {
default
if ! use doc; then
doman uacme.1
use ualpn && doman ualpn.1
fi
}
Manage flags for this package:
euse -i <flag> -p app-crypt/uacme |
euse -E <flag> -p app-crypt/uacme |
euse -D <flag> -p app-crypt/uacme
net-misc/curl:= openssl? ( dev-libs/openssl:= ) gnutls? ( net-libs/gnutls:= )
net-misc/curl:= openssl? ( dev-libs/openssl:= ) gnutls? ( net-libs/gnutls:= )
doc? ( app-text/asciidoc )
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | uacme-1.8.1.tar.gz | 252881 bytes | https://github.com/ndilieto/uacme/archive/refs/tags/v1.8.1.tar.gz |