blob: d50b02614e9ccf1a3635560cace3546e3c384191 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/pam_mount-2.6.ebuild,v 1.4 2012/05/04 18:57:21 jdhore Exp $
EAPI=3
inherit multilib autotools
DESCRIPTION="A PAM module that can mount volumes for a user session"
HOMEPAGE="http://pam-mount.sourceforge.net"
SRC_URI="mirror://sourceforge/pam-mount/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="crypt"
DEPEND=">=sys-libs/pam-0.99
dev-libs/openssl
>=sys-libs/libhx-3.6
dev-libs/libxml2
>=sys-fs/cryptsetup-1.1.0
virtual/pkgconfig
app-arch/xz-utils"
RDEPEND=">=sys-libs/pam-0.99
dev-libs/openssl
>=sys-libs/libhx-3.6
dev-libs/libxml2
>=sys-fs/cryptsetup-1.1.0
sys-process/lsof"
src_prepare() {
epatch "${FILESDIR}/pam_mount-2.6-pmvarrun-bin.diff"
eautoreconf
}
src_configure() {
econf --with-slibdir="/$(get_libdir)" || die "econf failed"
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc doc/*.txt || die "dodoc failed"
}
|