blob: 21311d5541a5687329d5236ddbd5b192dc55c4d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 2022-2025 Liguros Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="A PAM module that can mount volumes for a user session"
HOMEPAGE="https://sourceforge.net/projects/pam-mount/"
SRC_URI="https://codeberg.org/jengelh/pam_mount/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="crypt libressl ssl selinux"
DEPEND="
>=sys-libs/pam-0.99
>=sys-libs/libhx-4.28:=
>=sys-apps/util-linux-2.20:=
>=dev-libs/libxml2-2.6:=
>=dev-libs/libpcre-7:=
crypt? ( >=sys-fs/cryptsetup-1.1.0:= )
ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
)
selinux? ( sys-libs/libselinux )"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
S=${WORKDIR}/${PN}
src_prepare() {
default
eautoreconf
}
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
rm -r "${D}/var/lib"
find "${ED}" -name '*.la' -delete || die
}
|