diff options
author | Hanno Böck <hanno@gentoo.org> | 2007-09-28 14:39:03 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2007-09-28 14:39:03 +0000 |
commit | 8aafec9c13a652aab47492732819b07b0159a23d (patch) | |
tree | 51c3c43c2d5872ab7dc7d51b35439a074e3a249b /sys-auth/pam_mount | |
parent | Stable on amd64 wrt bug #182295 (diff) | |
download | gentoo-2-8aafec9c13a652aab47492732819b07b0159a23d.tar.gz gentoo-2-8aafec9c13a652aab47492732819b07b0159a23d.tar.bz2 gentoo-2-8aafec9c13a652aab47492732819b07b0159a23d.zip |
pam_mount version 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.29 | 3 | ||||
-rw-r--r-- | sys-auth/pam_mount/pam_mount-0.29.ebuild | 34 |
3 files changed, 43 insertions, 1 deletions
diff --git a/sys-auth/pam_mount/ChangeLog b/sys-auth/pam_mount/ChangeLog index 75f0c157333c..f6f1bc702bbf 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.7 2007/09/26 14:45:32 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.8 2007/09/28 14:39:03 hanno Exp $ + +*pam_mount-0.29 (28 Sep 2007) + + 28 Sep 2007; Hanno Boeck <hanno@gentoo.org> +pam_mount-0.29.ebuild: + Version bump. 26 Sep 2007; Hanno Boeck <hanno@gentoo.org> pam_mount-0.27.ebuild: QA: Add die message to dodoc. diff --git a/sys-auth/pam_mount/files/digest-pam_mount-0.29 b/sys-auth/pam_mount/files/digest-pam_mount-0.29 new file mode 100644 index 000000000000..c75a5278bcb6 --- /dev/null +++ b/sys-auth/pam_mount/files/digest-pam_mount-0.29 @@ -0,0 +1,3 @@ +MD5 70be864effaeec1b57b491e91ddb57b0 pam_mount-0.29.tar.bz2 292007 +RMD160 b00c17955d7fcc717cbb211790ec05c3589f0bcc pam_mount-0.29.tar.bz2 292007 +SHA256 a36f7493563cf2b4f9b801d830ae084d380af174e28efce9ee3cdda710fbe1fd pam_mount-0.29.tar.bz2 292007 diff --git a/sys-auth/pam_mount/pam_mount-0.29.ebuild b/sys-auth/pam_mount/pam_mount-0.29.ebuild new file mode 100644 index 000000000000..c392b40ec11e --- /dev/null +++ b/sys-auth/pam_mount/pam_mount-0.29.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.29.ebuild,v 1.1 2007/09/28 14:39:03 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 "dodoc failed" +} |