diff options
author | Hanno Böck <hanno@gentoo.org> | 2009-06-30 10:47:44 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2009-06-30 10:47:44 +0000 |
commit | 76722ef08d8c1ef8305df62b59b9a96ad78aef78 (patch) | |
tree | 71ac6bb7b640d0d644feeb8c2bdfe6d73a32e54d /sys-auth | |
parent | add missing latex deps for bug #272623 (diff) | |
download | gentoo-2-76722ef08d8c1ef8305df62b59b9a96ad78aef78.tar.gz gentoo-2-76722ef08d8c1ef8305df62b59b9a96ad78aef78.tar.bz2 gentoo-2-76722ef08d8c1ef8305df62b59b9a96ad78aef78.zip |
pam_mount bump
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sys-auth')
-rw-r--r-- | sys-auth/pam_mount/ChangeLog | 7 | ||||
-rw-r--r-- | sys-auth/pam_mount/pam_mount-1.26.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/sys-auth/pam_mount/ChangeLog b/sys-auth/pam_mount/ChangeLog index 887677137aa0..a4c7193879ca 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.33 2009/06/15 13:31:56 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mount/ChangeLog,v 1.34 2009/06/30 10:47:44 hanno Exp $ + +*pam_mount-1.26 (30 Jun 2009) + + 30 Jun 2009; Hanno Boeck <hanno@gentoo.org> +pam_mount-1.26.ebuild: + Version bump. *pam_mount-1.25-r1 (15 Jun 2009) diff --git a/sys-auth/pam_mount/pam_mount-1.26.ebuild b/sys-auth/pam_mount/pam_mount-1.26.ebuild new file mode 100644 index 000000000000..5260831cd68c --- /dev/null +++ b/sys-auth/pam_mount/pam_mount-1.26.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2009 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.26.ebuild,v 1.1 2009/06/30 10:47:44 hanno Exp $ + +inherit multilib eutils + +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-2.7 + dev-libs/libxml2 + dev-util/pkgconfig" +RDEPEND=">=sys-libs/pam-0.99 + dev-libs/openssl + >=sys-libs/libhx-2.7 + dev-libs/libxml2 + >=sys-fs/cryptsetup-1.0.5 + sys-process/lsof" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}"/${PN}-1.25-nullsetenv.patch +} + +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" +} |