mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 06:35:19 +02:00
38 lines
741 B
Bash
38 lines
741 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit pam
|
|
|
|
DESCRIPTION="PAM module for authenticating against PKCS#11 tokens"
|
|
HOMEPAGE="https://github.com/opensc/pam_p11/wiki"
|
|
SRC_URI="https://github.com/OpenSC/${PN}/releases/download/${P}/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~hppa ppc ppc64 ~sparc x86"
|
|
|
|
RDEPEND="
|
|
dev-libs/libp11:=
|
|
>=dev-libs/openssl-1.1.1:=
|
|
sys-libs/pam
|
|
"
|
|
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
src_configure() {
|
|
local myeconfargs=(
|
|
# Controls -Werror
|
|
--disable-strict
|
|
--with-pamdir="$(getpam_mod_dir)"
|
|
)
|
|
|
|
econf "${myeconfargs[@]}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${D}" -name '*.la' -delete || die
|
|
}
|