# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="A PAM module that can mount volumes for a user session" HOMEPAGE="http://pam-mount.souceforge.net" SRC_URI="mirror://sourceforge/pam-mount/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="crypt" DEPEND=">=sys-libs/pam-0.72 dev-libs/openssl >=dev-libs/glib-2.0.0" RDEPEND="$DEPEND crypt? ( sys-fs/cryptsetup-luks ) sys-process/lsof" src_unpack() { unpack "${A}" cd "${S}" epatch "${FILESDIR}"/pam_mount-cryptsetup-path.patch } src_install() { make DESTDIR="${D}" install || die "make install failed" insinto /etc/security doins ${S}/config/pam_mount.conf exeinto /sbin doexe scripts/mount.crypt scripts/umount.crypt dodoc README TODO AUTHORS ChangeLog FAQ NEWS || die }