diff options
author | Hanno Böck <hanno@gentoo.org> | 2010-01-10 15:51:34 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2010-01-10 15:51:34 +0000 |
commit | 721bef513e888730ee06361942e192200d30b573 (patch) | |
tree | 12a6d5bee4ced1d9d10520576567df45852e4314 /sys-auth/pam_mount | |
parent | stable ppc64, bug 300113 (diff) | |
download | gentoo-2-721bef513e888730ee06361942e192200d30b573.tar.gz gentoo-2-721bef513e888730ee06361942e192200d30b573.tar.bz2 gentoo-2-721bef513e888730ee06361942e192200d30b573.zip |
pam_mount bump
(Portage version: 2.1.7.16/cvs/Linux x86_64)
Diffstat (limited to 'sys-auth/pam_mount')
-rw-r--r-- | sys-auth/pam_mount/ChangeLog | 9 | ||||
-rw-r--r-- | sys-auth/pam_mount/pam_mount-1.33.ebuild | 36 |
2 files changed, 43 insertions, 2 deletions
diff --git a/sys-auth/pam_mount/ChangeLog b/sys-auth/pam_mount/ChangeLog index 53b4294d65de..3a43ebedc45f 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-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.36 2009/09/24 10:11:44 hanno Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.37 2010/01/10 15:51:34 hanno Exp $ + +*pam_mount-1.33 (10 Jan 2010) + + 10 Jan 2010; Hanno Boeck <hanno@gentoo.org> +pam_mount-1.33.ebuild: + Version bump. *pam_mount-1.32 (24 Sep 2009) diff --git a/sys-auth/pam_mount/pam_mount-1.33.ebuild b/sys-auth/pam_mount/pam_mount-1.33.ebuild new file mode 100644 index 000000000000..79a0c2b12da1 --- /dev/null +++ b/sys-auth/pam_mount/pam_mount-1.33.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/pam_mount-1.33.ebuild,v 1.1 2010/01/10 15:51:34 hanno Exp $ + +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.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +IUSE="crypt" +DEPEND=">=sys-libs/pam-0.99 + dev-libs/openssl + >=sys-libs/libhx-3.2 + dev-libs/libxml2 + dev-util/pkgconfig" +RDEPEND=">=sys-libs/pam-0.99 + dev-libs/openssl + >=sys-libs/libhx-3.2 + dev-libs/libxml2 + >=sys-fs/cryptsetup-1.0.5 + 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" + dodoc doc/*.txt || die "dodoc failed" +} |