You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/libfido2/libfido2-1.3.0.ebuild

39 lines
837 B

# Copyright 2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake-utils
DESCRIPTION="Provides library functionality for FIDO 2.0"
HOMEPAGE="https://github.com/Yubico/libfido2"
SRC_URI="https://github.com/Yubico/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0/1"
KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE="libressl +static-libs"
DEPEND="
dev-libs/libcbor:=
virtual/libudev:=
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}/libfido2-1.3.0-cmakelists.patch"
# from upstream git, no longer needed with openssh-8.2
"${FILESDIR}/libfido2-1.3.0-remove-openssh-middleware.patch"
)
src_install() {
cmake-utils_src_install
if ! use static-libs; then
rm -f "${D}/$(get_libdir)"/*.a || die
fi
}