summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Böck <hanno@gentoo.org>2007-09-26 14:35:51 +0000
committerHanno Böck <hanno@gentoo.org>2007-09-26 14:35:51 +0000
commit39caa8e386ae9ed5a30ee5118651d39ea4e5ac09 (patch)
tree39cb590cf3848cef1da5333d88fa48af9c9b168b /sys-auth
parentdrop myself as maintainer, remove old version (diff)
downloadgentoo-2-39caa8e386ae9ed5a30ee5118651d39ea4e5ac09.tar.gz
gentoo-2-39caa8e386ae9ed5a30ee5118651d39ea4e5ac09.tar.bz2
gentoo-2-39caa8e386ae9ed5a30ee5118651d39ea4e5ac09.zip
pam_mount bump
(Portage version: 2.1.3.9)
Diffstat (limited to 'sys-auth')
-rw-r--r--sys-auth/pam_mount/ChangeLog7
-rw-r--r--sys-auth/pam_mount/files/digest-pam_mount-0.273
-rw-r--r--sys-auth/pam_mount/pam_mount-0.27.ebuild34
3 files changed, 43 insertions, 1 deletions
diff --git a/sys-auth/pam_mount/ChangeLog b/sys-auth/pam_mount/ChangeLog
index 316c4339005b..14805555fa0c 100644
--- a/sys-auth/pam_mount/ChangeLog
+++ b/sys-auth/pam_mount/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-auth/pam_mount
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.5 2007/09/26 03:14:30 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.6 2007/09/26 14:35:51 hanno Exp $
+
+*pam_mount-0.27 (26 Sep 2007)
+
+ 26 Sep 2007; Hanno Boeck <hanno@gentoo.org> +pam_mount-0.27.ebuild:
+ Version bump.
*pam_mount-0.26 (26 Sep 2007)
diff --git a/sys-auth/pam_mount/files/digest-pam_mount-0.27 b/sys-auth/pam_mount/files/digest-pam_mount-0.27
new file mode 100644
index 000000000000..1e94a0bcdcb7
--- /dev/null
+++ b/sys-auth/pam_mount/files/digest-pam_mount-0.27
@@ -0,0 +1,3 @@
+MD5 bd420454d4dde8a01f7881f0631b536d pam_mount-0.27.tar.bz2 290849
+RMD160 b646ee9e55249365c5bfb1618c12bb45ce376dcf pam_mount-0.27.tar.bz2 290849
+SHA256 2f1b7104e15c40a0957bfe2a2a8dcc30bb2dce3794e33fd8d3747a0fc3103379 pam_mount-0.27.tar.bz2 290849
diff --git a/sys-auth/pam_mount/pam_mount-0.27.ebuild b/sys-auth/pam_mount/pam_mount-0.27.ebuild
new file mode 100644
index 000000000000..49e86eee4adc
--- /dev/null
+++ b/sys-auth/pam_mount/pam_mount-0.27.ebuild
@@ -0,0 +1,34 @@
+# 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.27.ebuild,v 1.1 2007/09/26 14:35:51 hanno Exp $
+
+inherit eutils multilib pam
+
+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
+ sys-libs/libhx
+ dev-libs/libxml2"
+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"
+ dopamsecurity . config/pam_mount.conf.xml || die "dopamsecurity failed"
+
+ dodoc doc/*.txt || die
+}