diff options
author | Marek Szuba <marecki@gentoo.org> | 2022-09-02 00:18:38 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2022-09-02 00:18:38 +0100 |
commit | f030de85fe196993b8c0a24cc437e6c57a153d04 (patch) | |
tree | 7338c5d7466863544440b623d14db15d39cd09c3 /sys-auth/ykpers | |
parent | net-misc/oidc-agent: drop 4.2.6 (diff) | |
download | gentoo-f030de85fe196993b8c0a24cc437e6c57a153d04.tar.gz gentoo-f030de85fe196993b8c0a24cc437e6c57a153d04.tar.bz2 gentoo-f030de85fe196993b8c0a24cc437e6c57a153d04.zip |
sys-auth/ykpers: drop 1.20.0
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'sys-auth/ykpers')
-rw-r--r-- | sys-auth/ykpers/ykpers-1.20.0.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/sys-auth/ykpers/ykpers-1.20.0.ebuild b/sys-auth/ykpers/ykpers-1.20.0.ebuild deleted file mode 100644 index a77b20b63462..000000000000 --- a/sys-auth/ykpers/ykpers-1.20.0.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools udev - -DESCRIPTION="Library and tool for personalization of Yubico's YubiKey" -SRC_URI="https://github.com/Yubico/yubikey-personalization/archive/v${PV}.tar.gz -> ${P}.tar.gz" -HOMEPAGE="https://github.com/Yubico/yubikey-personalization" - -KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86" -SLOT="0" -LICENSE="BSD-2" -IUSE="static-libs" - -DEPEND=" - dev-libs/json-c:= - >=sys-auth/libyubikey-1.6 - virtual/libusb:1" -BDEPEND=" - app-text/asciidoc - virtual/pkgconfig" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/yubikey-personalization-${PV}" -PATCHES=( - "${FILESDIR}"/${PN}-1.20.0-fix-gcc10-fno-common.patch - "${FILESDIR}"/${PN}-1.20.0-json-boolean.patch -) - -DOCS=( doc/. AUTHORS NEWS README ) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - local myeconfargs=( - --libdir=/usr/$(get_libdir) - --localstatedir=/var - $(use_enable static-libs static) - ) - econf "${myeconfargs[@]}" -} - -src_install() { - default - - udev_dorules 69-yubikey.rules - - find "${D}" -name '*.la' -delete || die -} |