# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit autotools systemd MY_PN="${PN}-portable" MY_P="${MY_PN}-v${PV}" DESCRIPTION="Secure Let's Encrypt client" HOMEPAGE="https://git.sr.ht/~graywolf/acme-client-portable" SRC_URI="https://git.sr.ht/~graywolf/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" RDEPEND="dev-libs/openssl:0=" DEPEND="${RDEPEND}" BDEPEND="virtual/pkgconfig" S="${WORKDIR}/${MY_P}" src_prepare() { default eautoreconf } src_install() { default keepdir /var/lib/acme-client/{accounts,certs} insinto /etc/acme-client.d doins "${FILESDIR}"/example.org.hook insinto /etc doins "${FILESDIR}"/acme-client.conf systemd_dounit "${FILESDIR}"/acme-client.{service,timer} }