mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
47 lines
1.1 KiB
Bash
47 lines
1.1 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="A PAM module that can mount volumes for a user session"
|
|
HOMEPAGE="https://inai.de/projects/pam_mount/"
|
|
SRC_URI="https://inai.de/files/pam_mount/${P}.tar.xz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc x86"
|
|
|
|
IUSE="crypt ssl selinux"
|
|
|
|
DEPEND="
|
|
>=sys-libs/pam-0.99
|
|
>=sys-libs/libhx-3.12.1:=
|
|
>=sys-apps/util-linux-2.20:=
|
|
>=dev-libs/libxml2-2.6:=
|
|
dev-libs/libpcre2
|
|
crypt? ( >=sys-fs/cryptsetup-1.1.0:= )
|
|
ssl? ( dev-libs/openssl:0= )
|
|
selinux? ( sys-libs/libselinux )"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
src_configure() {
|
|
econf --with-slibdir="/$(get_libdir)" \
|
|
$(use_with crypt cryptsetup) \
|
|
$(use_with ssl crypto) \
|
|
$(use_with selinux)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
use selinux || rm -r "${D}"/etc/selinux
|
|
dodoc doc/*.txt
|
|
|
|
# Remove unused nonstandard run-dir, current version uses
|
|
# FHS-compatible /run, but has leftover mkdir from old version
|
|
# Upstream report: https://codeberg.org/jengelh/pam_mount/pulls/9
|
|
rm -r "${D}/var/lib"
|
|
|
|
find "${ED}" -name '*.la' -delete || die
|
|
}
|