blob: a542e835c10d6d72f6bc5387c0e12eacf559e1a9 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/pam_mount-0.19.ebuild,v 1.3 2007/08/14 15:49:42 strerror Exp $
inherit eutils multilib
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.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="crypt"
DEPEND=">=sys-libs/pam-0.72
dev-libs/openssl
>=dev-libs/glib-2.0.0
sys-libs/libhx"
RDEPEND="$DEPEND
crypt? ( || ( >=sys-fs/cryptsetup-1.0.5 sys-fs/cryptsetup-luks ) )
sys-process/lsof"
src_compile() {
econf --with-slibdir="/$(get_libdir)" || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
insinto /etc/security
doins ${S}/config/pam_mount.conf.xml || die
dodoc README TODO AUTHORS FAQ || die
}
|