blob: e04ab878cc7ee385c2a9f057534d614a125e1d44 (
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
|
# Copyright 1999-2011 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.10.ebuild,v 1.1 2011/04/17 00:58:13 hanno Exp $
EAPI=3
inherit 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.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.10.1
dev-libs/libxml2
>=sys-fs/cryptsetup-1.1.0
dev-util/pkgconfig
app-arch/xz-utils"
RDEPEND=">=sys-libs/pam-0.99
dev-libs/openssl
>=sys-libs/libhx-3.10.1
dev-libs/libxml2
>=sys-fs/cryptsetup-1.1.0
sys-process/lsof"
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"
}
|