diff options
author | Hanno Böck <hanno@gentoo.org> | 2007-09-26 03:14:30 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2007-09-26 03:14:30 +0000 |
commit | ec0f90fce1672e0c916a28660fc2bbf532abb84b (patch) | |
tree | e4122fe5d1647ca2404481a727e083b672845106 /sys-auth/pam_mount | |
parent | gimp-help version bump (diff) | |
download | gentoo-2-ec0f90fce1672e0c916a28660fc2bbf532abb84b.tar.gz gentoo-2-ec0f90fce1672e0c916a28660fc2bbf532abb84b.tar.bz2 gentoo-2-ec0f90fce1672e0c916a28660fc2bbf532abb84b.zip |
pam_mount bump
(Portage version: 2.1.3.9)
Diffstat (limited to 'sys-auth/pam_mount')
-rw-r--r-- | sys-auth/pam_mount/ChangeLog | 7 | ||||
-rw-r--r-- | sys-auth/pam_mount/files/digest-pam_mount-0.26 | 3 | ||||
-rw-r--r-- | sys-auth/pam_mount/pam_mount-0.26.ebuild | 35 |
3 files changed, 44 insertions, 1 deletions
diff --git a/sys-auth/pam_mount/ChangeLog b/sys-auth/pam_mount/ChangeLog index 614d38fab7e2..316c4339005b 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.4 2007/09/21 22:43:34 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.5 2007/09/26 03:14:30 hanno Exp $ + +*pam_mount-0.26 (26 Sep 2007) + + 26 Sep 2007; Hanno Boeck <hanno@gentoo.org> +pam_mount-0.26.ebuild: + Version bump. 21 Sep 2007; Hanno Boeck <hanno@gentoo.org> pam_mount-0.19.ebuild: Add dep to libxml2 and use pam eclass. diff --git a/sys-auth/pam_mount/files/digest-pam_mount-0.26 b/sys-auth/pam_mount/files/digest-pam_mount-0.26 new file mode 100644 index 000000000000..1c4032162288 --- /dev/null +++ b/sys-auth/pam_mount/files/digest-pam_mount-0.26 @@ -0,0 +1,3 @@ +MD5 083631e7b1a1b24e25b453f084abb05b pam_mount-0.26.tar.bz2 293149 +RMD160 f6b6fc81a354f1e2d36be183533bf6af80f36f0d pam_mount-0.26.tar.bz2 293149 +SHA256 f0454105d20c010a450816d4eb438a2b9224a313c47f92bf07e4105806193aae pam_mount-0.26.tar.bz2 293149 diff --git a/sys-auth/pam_mount/pam_mount-0.26.ebuild b/sys-auth/pam_mount/pam_mount-0.26.ebuild new file mode 100644 index 000000000000..1950932e2a6e --- /dev/null +++ b/sys-auth/pam_mount/pam_mount-0.26.ebuild @@ -0,0 +1,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.26.ebuild,v 1.1 2007/09/26 03:14:30 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 + >=dev-libs/glib-2.0.0 + 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 +} |