summaryrefslogtreecommitdiff
path: root/sys-auth/pam_yubico/pam_yubico-2.26-r1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-02 07:12:21 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-10-02 07:12:21 +0100
commite374e165c2ee372e9c6d10860ea6ef47f180f6b2 (patch)
tree3c2c37c3e4e272c01ca3062d0f2428478f1f83e6 /sys-auth/pam_yubico/pam_yubico-2.26-r1.ebuild
parentb0bab803d2f1c96af5760374e2684f9a85591916 (diff)
gentoo auto-resync : 02:10:2022 - 07:12:21
Diffstat (limited to 'sys-auth/pam_yubico/pam_yubico-2.26-r1.ebuild')
-rw-r--r--sys-auth/pam_yubico/pam_yubico-2.26-r1.ebuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/sys-auth/pam_yubico/pam_yubico-2.26-r1.ebuild b/sys-auth/pam_yubico/pam_yubico-2.26-r1.ebuild
deleted file mode 100644
index eaf84fc6bbfa..000000000000
--- a/sys-auth/pam_yubico/pam_yubico-2.26-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit pam
-
-DESCRIPTION="Library for authenticating against PAM with a Yubikey"
-HOMEPAGE="https://github.com/Yubico/yubico-pam"
-SRC_URI="http://opensource.yubico.com/yubico-pam/releases/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="ldap test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- sys-libs/pam
- sys-auth/libyubikey
- >=sys-auth/ykclient-2.15
- >=sys-auth/ykpers-1.6
- ldap? ( net-nds/openldap:= )"
-DEPEND="${RDEPEND}
- app-text/asciidoc
- test? ( dev-perl/Net-LDAP-Server )"
-
-src_configure() {
- #challenge response could be optional but that seems horribly dangerous to me
- local myeconfargs=(
- --with-cr
- --with-pam-dir="$(getpam_mod_dir)"
- $(use_with ldap)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- dodoc doc/*
- find "${D}" -name '*.la' -delete || die
-}