gentoo-ebuilds/app-crypt/gnupg-pkcs11-scd/gnupg-pkcs11-scd-9999.ebuild
Sam James c971d56225
app-crypt/gnupg-pkcs11-scd: sync 0.10.0 with live template, fixups
* Sync 0.10.0 with the new live template
* Move eautoreconf to src_prepare and only call it conditionally

Signed-off-by: Sam James <sam@gentoo.org>
2024-10-28 13:36:32 +00:00

60 lines
1.2 KiB
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="PKCS#11 support for GnuPG"
HOMEPAGE="https://sourceforge.net/projects/gnupg-pkcs11/"
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/alonbl/gnupg-pkcs11-scd.git"
inherit autotools git-r3
else
SRC_URI="https://github.com/alonbl/${PN}/releases/download/${P}/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="BSD"
SLOT="0"
IUSE="proxy"
DEPEND="
dev-libs/openssl:=
dev-libs/libassuan:=
dev-libs/libgcrypt:=
dev-libs/libgpg-error:=
dev-libs/pkcs11-helper:=
"
RDEPEND="
${DEPEND}
proxy? (
acct-group/gnupg-pkcs11
acct-group/gnupg-pkcs11-scd-proxy
acct-user/gnupg-pkcs11-scd-proxy
)
"
BDEPEND="virtual/pkgconfig"
src_prepare() {
default
[[ ${PV} == 9999 ]] && eautoreconf
}
src_configure() {
local myeconfargs=(
$(use_enable proxy)
--with-proxy-socket=/run/gnupg-pkcs11-scd-proxy/cmd
)
econf "${myeconfargs[@]}"
}
src_install() {
default
if use proxy; then
newinitd "${FILESDIR}"/gnupg-pkcs11-scd-proxy.initd gnupg-pkcs11-scd-proxy
newconfd "${FILESDIR}"/gnupg-pkcs11-scd-proxy.confd gnupg-pkcs11-scd-proxy
fi
}