gentoo-ebuilds/sys-auth/pam_p11/pam_p11-0.6.0.ebuild
Arthur Zamarin c03c29d165
sys-auth/pam_p11: Stabilize 0.6.0 ppc, #954451
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2025-04-26 09:06:04 +03:00

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
}